From fe2b3fb37a7a593a38bd68f61e00a4f09830f58a Mon Sep 17 00:00:00 2001 From: Kazumichi Yamamoto Date: Wed, 8 Jan 2025 09:47:27 +0900 Subject: [PATCH] Copyright 2025 (#218) --- Dockerfile | 2 +- Makefile | 4 ++-- README.md | 2 +- collector/auto_backup.go | 2 +- collector/auto_backup_test.go | 2 +- collector/bill.go | 2 +- collector/bill_test.go | 2 +- collector/collector_test.go | 2 +- collector/coupon.go | 2 +- collector/coupon_test.go | 2 +- collector/database.go | 2 +- collector/database_test.go | 2 +- collector/esme.go | 2 +- collector/esme_test.go | 2 +- collector/exporter.go | 2 +- collector/functions.go | 2 +- collector/internet.go | 2 +- collector/internet_test.go | 2 +- collector/loadbalancer.go | 2 +- collector/loadbalancer_test.go | 2 +- collector/local_router.go | 2 +- collector/local_router_test.go | 2 +- collector/mobile_gateway.go | 2 +- collector/mobile_gateway_test.go | 2 +- collector/nfs.go | 2 +- collector/nfs_test.go | 2 +- collector/proxy_lb.go | 2 +- collector/proxy_lb_test.go | 2 +- collector/server.go | 2 +- collector/server_test.go | 2 +- collector/sim.go | 2 +- collector/sim_test.go | 2 +- collector/vpc_router.go | 2 +- collector/vpc_router_test.go | 2 +- collector/webaccel.go | 2 +- collector/zone.go | 2 +- collector/zone_test.go | 2 +- config/config.go | 2 +- examples/fake/generate-fake-store-json/main.go | 2 +- main.go | 2 +- platform/auth_status.go | 2 +- platform/auto_backup.go | 2 +- platform/bill.go | 2 +- platform/cache.go | 14 ++++++++++++++ platform/cache_test.go | 14 ++++++++++++++ platform/client.go | 2 +- platform/coupon.go | 2 +- platform/database.go | 2 +- platform/esme.go | 2 +- platform/functions.go | 2 +- platform/functions_test.go | 2 +- platform/internet.go | 2 +- platform/loadbalancer.go | 2 +- platform/local_router.go | 2 +- platform/mobile_gateway.go | 2 +- platform/monitor.go | 2 +- platform/monitor_test.go | 2 +- platform/nfs.go | 2 +- platform/platform_test.go | 2 +- platform/proxy_lb.go | 2 +- platform/server.go | 2 +- platform/sim.go | 2 +- platform/vpc_router.go | 2 +- platform/web_accel.go | 2 +- platform/zone.go | 2 +- 65 files changed, 92 insertions(+), 64 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5187fc6..af3a44c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright 2019-2023 The sakuracloud_exporter Authors +# Copyright 2019-2025 The sakuracloud_exporter Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index fa79cee..a5abe43 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# Copyright 2019-2023 The sakuracloud_exporter Authors +# Copyright 2019-2025 The sakuracloud_exporter Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -15,7 +15,7 @@ # #==================== AUTHOR ?= The sacloud/sakuracloud_exporter Authors -COPYRIGHT_YEAR ?= 2019-2023 +COPYRIGHT_YEAR ?= 2019-2025 BIN ?= sakuracloud_exporter BUILD_LDFLAGS ?= "-s -w -X \"main.Revision=$(REVISION)\" -extldflags -static" diff --git a/README.md b/README.md index d5f852e..4243a87 100644 --- a/README.md +++ b/README.md @@ -332,7 +332,7 @@ The exporter returns the following metrics: ## License - `sakuracloud_exporter` Copyright (C) 2019-2023 sakuracloud_exporter authors. + `sakuracloud_exporter` Copyright (C) 2019-2025 sakuracloud_exporter authors. This project is published under [Apache 2.0 License](LICENSE). diff --git a/collector/auto_backup.go b/collector/auto_backup.go index f836578..a527c5a 100644 --- a/collector/auto_backup.go +++ b/collector/auto_backup.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/auto_backup_test.go b/collector/auto_backup_test.go index 921fccb..6598347 100644 --- a/collector/auto_backup_test.go +++ b/collector/auto_backup_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/bill.go b/collector/bill.go index a5c00fb..c5ee77e 100644 --- a/collector/bill.go +++ b/collector/bill.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/bill_test.go b/collector/bill_test.go index db88296..587f9ba 100644 --- a/collector/bill_test.go +++ b/collector/bill_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/collector_test.go b/collector/collector_test.go index 6b35c5e..8ccbe6d 100644 --- a/collector/collector_test.go +++ b/collector/collector_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/coupon.go b/collector/coupon.go index be7d0ca..76991e6 100644 --- a/collector/coupon.go +++ b/collector/coupon.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/coupon_test.go b/collector/coupon_test.go index 8e7712f..66f1152 100644 --- a/collector/coupon_test.go +++ b/collector/coupon_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/database.go b/collector/database.go index 560cd1a..3c0c115 100644 --- a/collector/database.go +++ b/collector/database.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/database_test.go b/collector/database_test.go index 03b25a1..7035649 100644 --- a/collector/database_test.go +++ b/collector/database_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/esme.go b/collector/esme.go index 438b160..d350a29 100644 --- a/collector/esme.go +++ b/collector/esme.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/esme_test.go b/collector/esme_test.go index 812cf32..dd1bef0 100644 --- a/collector/esme_test.go +++ b/collector/esme_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/exporter.go b/collector/exporter.go index a1ed281..0073a86 100644 --- a/collector/exporter.go +++ b/collector/exporter.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/functions.go b/collector/functions.go index 792e0ba..6b350b0 100644 --- a/collector/functions.go +++ b/collector/functions.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/internet.go b/collector/internet.go index 239d1a0..b8debca 100644 --- a/collector/internet.go +++ b/collector/internet.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/internet_test.go b/collector/internet_test.go index 29900ae..5588a4a 100644 --- a/collector/internet_test.go +++ b/collector/internet_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/loadbalancer.go b/collector/loadbalancer.go index fda2236..805350a 100644 --- a/collector/loadbalancer.go +++ b/collector/loadbalancer.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/loadbalancer_test.go b/collector/loadbalancer_test.go index b41e724..10f915a 100644 --- a/collector/loadbalancer_test.go +++ b/collector/loadbalancer_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/local_router.go b/collector/local_router.go index d422f31..b502555 100644 --- a/collector/local_router.go +++ b/collector/local_router.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/local_router_test.go b/collector/local_router_test.go index 9ab07b9..1c45e79 100644 --- a/collector/local_router_test.go +++ b/collector/local_router_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/mobile_gateway.go b/collector/mobile_gateway.go index b20471d..9888a04 100644 --- a/collector/mobile_gateway.go +++ b/collector/mobile_gateway.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/mobile_gateway_test.go b/collector/mobile_gateway_test.go index 8a17a90..be00960 100644 --- a/collector/mobile_gateway_test.go +++ b/collector/mobile_gateway_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/nfs.go b/collector/nfs.go index 24e16eb..b4925d5 100644 --- a/collector/nfs.go +++ b/collector/nfs.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/nfs_test.go b/collector/nfs_test.go index 8d62d34..5a505d8 100644 --- a/collector/nfs_test.go +++ b/collector/nfs_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/proxy_lb.go b/collector/proxy_lb.go index edc8cd7..2f1331e 100644 --- a/collector/proxy_lb.go +++ b/collector/proxy_lb.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/proxy_lb_test.go b/collector/proxy_lb_test.go index 3690ba3..2e18042 100644 --- a/collector/proxy_lb_test.go +++ b/collector/proxy_lb_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/server.go b/collector/server.go index 4463ae3..faa0789 100644 --- a/collector/server.go +++ b/collector/server.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/server_test.go b/collector/server_test.go index 7f36e58..a353ce3 100644 --- a/collector/server_test.go +++ b/collector/server_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/sim.go b/collector/sim.go index 35969f3..ed9efed 100644 --- a/collector/sim.go +++ b/collector/sim.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/sim_test.go b/collector/sim_test.go index 59035e7..09523b2 100644 --- a/collector/sim_test.go +++ b/collector/sim_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/vpc_router.go b/collector/vpc_router.go index 6e25a5a..441d108 100644 --- a/collector/vpc_router.go +++ b/collector/vpc_router.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/vpc_router_test.go b/collector/vpc_router_test.go index c1cd010..c988379 100644 --- a/collector/vpc_router_test.go +++ b/collector/vpc_router_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/webaccel.go b/collector/webaccel.go index 10e24d0..796d1b4 100644 --- a/collector/webaccel.go +++ b/collector/webaccel.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/zone.go b/collector/zone.go index 43679aa..fa570c2 100644 --- a/collector/zone.go +++ b/collector/zone.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/collector/zone_test.go b/collector/zone_test.go index a874251..8d251f9 100644 --- a/collector/zone_test.go +++ b/collector/zone_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/config.go b/config/config.go index 8f25c04..eb7b762 100644 --- a/config/config.go +++ b/config/config.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/examples/fake/generate-fake-store-json/main.go b/examples/fake/generate-fake-store-json/main.go index 115f010..1af8e9a 100644 --- a/examples/fake/generate-fake-store-json/main.go +++ b/examples/fake/generate-fake-store-json/main.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/main.go b/main.go index 6c4d851..ee27622 100644 --- a/main.go +++ b/main.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/auth_status.go b/platform/auth_status.go index d506e12..9067d2c 100644 --- a/platform/auth_status.go +++ b/platform/auth_status.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/auto_backup.go b/platform/auto_backup.go index 6cd62a0..6261bdf 100644 --- a/platform/auto_backup.go +++ b/platform/auto_backup.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/bill.go b/platform/bill.go index 1f2fe12..338e632 100644 --- a/platform/bill.go +++ b/platform/bill.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/cache.go b/platform/cache.go index 00c0dae..ce88202 100644 --- a/platform/cache.go +++ b/platform/cache.go @@ -1,3 +1,17 @@ +// Copyright 2019-2025 The sacloud/sakuracloud_exporter 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 platform import ( diff --git a/platform/cache_test.go b/platform/cache_test.go index c550b4b..3be5a1e 100644 --- a/platform/cache_test.go +++ b/platform/cache_test.go @@ -1,3 +1,17 @@ +// Copyright 2019-2025 The sacloud/sakuracloud_exporter 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 platform import ( diff --git a/platform/client.go b/platform/client.go index e380a8d..96487c4 100644 --- a/platform/client.go +++ b/platform/client.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/coupon.go b/platform/coupon.go index 62042b5..ace05a0 100644 --- a/platform/coupon.go +++ b/platform/coupon.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/database.go b/platform/database.go index 2bc44e6..1dffa5a 100644 --- a/platform/database.go +++ b/platform/database.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/esme.go b/platform/esme.go index e384f10..86e05ef 100644 --- a/platform/esme.go +++ b/platform/esme.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/functions.go b/platform/functions.go index 60d72c4..e5ef6e3 100644 --- a/platform/functions.go +++ b/platform/functions.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/functions_test.go b/platform/functions_test.go index 21b9b00..90c8ea9 100644 --- a/platform/functions_test.go +++ b/platform/functions_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/internet.go b/platform/internet.go index c308b1f..2723855 100644 --- a/platform/internet.go +++ b/platform/internet.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/loadbalancer.go b/platform/loadbalancer.go index 33bfb5d..3d4c3b2 100644 --- a/platform/loadbalancer.go +++ b/platform/loadbalancer.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/local_router.go b/platform/local_router.go index e40f64b..eceba22 100644 --- a/platform/local_router.go +++ b/platform/local_router.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/mobile_gateway.go b/platform/mobile_gateway.go index e807d48..4c6e37b 100644 --- a/platform/mobile_gateway.go +++ b/platform/mobile_gateway.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/monitor.go b/platform/monitor.go index facea73..412fb0f 100644 --- a/platform/monitor.go +++ b/platform/monitor.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/monitor_test.go b/platform/monitor_test.go index 53c2600..c3bc775 100644 --- a/platform/monitor_test.go +++ b/platform/monitor_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/nfs.go b/platform/nfs.go index 8973bca..e3d1fb1 100644 --- a/platform/nfs.go +++ b/platform/nfs.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/platform_test.go b/platform/platform_test.go index 536c63c..00d2947 100644 --- a/platform/platform_test.go +++ b/platform/platform_test.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/proxy_lb.go b/platform/proxy_lb.go index 8822f9f..402c6fc 100644 --- a/platform/proxy_lb.go +++ b/platform/proxy_lb.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/server.go b/platform/server.go index 283890a..a9f3a8d 100644 --- a/platform/server.go +++ b/platform/server.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/sim.go b/platform/sim.go index a3da9e8..5f2cb5e 100644 --- a/platform/sim.go +++ b/platform/sim.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/vpc_router.go b/platform/vpc_router.go index 0a6e395..2abcbd7 100644 --- a/platform/vpc_router.go +++ b/platform/vpc_router.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/web_accel.go b/platform/web_accel.go index f8f822d..6102eee 100644 --- a/platform/web_accel.go +++ b/platform/web_accel.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/platform/zone.go b/platform/zone.go index 82bc59d..0911a5a 100644 --- a/platform/zone.go +++ b/platform/zone.go @@ -1,4 +1,4 @@ -// Copyright 2019-2023 The sakuracloud_exporter Authors +// Copyright 2019-2025 The sakuracloud_exporter Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.