diff --git a/.github/actions/deb-delivery-legacy/action.yml b/.github/actions/deb-delivery-legacy/action.yml index 3bdb630f4..8a89c964a 100644 --- a/.github/actions/deb-delivery-legacy/action.yml +++ b/.github/actions/deb-delivery-legacy/action.yml @@ -24,7 +24,7 @@ runs: using: "composite" steps: - name: Use cache DEB files - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.deb key: ${{ inputs.cache_key }} diff --git a/.github/actions/deb-delivery/action.yml b/.github/actions/deb-delivery/action.yml index 5af1b4eeb..846772d5e 100644 --- a/.github/actions/deb-delivery/action.yml +++ b/.github/actions/deb-delivery/action.yml @@ -21,30 +21,40 @@ runs: using: "composite" steps: - name: Remove previously delivered DEBs + if: ${{ ! (inputs.distrib == 'jammy' && inputs.stability == 'stable') }} run: rm -f ./*.deb shell: bash - name: Use cache DEB files - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + if: ${{ ! (inputs.distrib == 'jammy' && inputs.stability == 'stable') }} + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.deb key: ${{ inputs.cache_key }} fail-on-cache-miss: true - - uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 + - if: ${{ ! (inputs.distrib == 'jammy' && inputs.stability == 'stable') }} + uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 env: JF_URL: https://centreon.jfrog.io JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} - name: Publish DEBs to artifactory + if: ${{ ! (inputs.distrib == 'jammy' && inputs.stability == 'stable') }} run: | FILES="*.deb" + if [[ "${{ inputs.distrib }}" == "jammy" ]]; then + REPO_PREFIX="ubuntu" + else + REPO_PREFIX="apt" + fi + for FILE in $FILES; do echo "[DEBUG] - File: $FILE" ARCH=$(echo $FILE | cut -d '_' -f3 | cut -d '.' -f1) - jf rt upload "$FILE" "apt-plugins-${{ inputs.stability }}/pool/${{ inputs.module_name }}/" --deb "${{ inputs.distrib }}/main/$ARCH" + jf rt upload "$FILE" "${REPO_PREFIX}-plugins-${{ inputs.stability }}/pool/${{ inputs.module_name }}/" --deb "${{ inputs.distrib }}/main/$ARCH" done shell: bash diff --git a/.github/actions/merge-artifacts/action.yml b/.github/actions/merge-artifacts/action.yml new file mode 100644 index 000000000..a213c8fa3 --- /dev/null +++ b/.github/actions/merge-artifacts/action.yml @@ -0,0 +1,65 @@ +name: 'Merge Artifacts' +description: 'Merge Artifacts' +inputs: + target_name: + description: 'The name of the result artifact' + required: true + source_paths: + description: 'The path to the files that will be uplaoded' + required: true + source_name_pattern: + description: "Artifact's pattern to be merged" + required: true + github_token: + description: 'The Github Token to use' + required: true + +runs: + using: 'composite' + steps: + - name: Download Artifacts + uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0 + with: + pattern: ${{ inputs.source_name_pattern }}* + path: ${{ inputs.target_name }} + merge-multiple: true + + - name: Upload the Regrouped Artifact + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + with: + name: ${{ inputs.target_name }} + path: | + ${{ inputs.source_paths }} + retention-days: 1 + + - name: Delete Artifacts + run: | + artifact_pattern="${{ inputs.source_name_pattern }}" + TOKEN="${{ inputs.github_token }}" + artifact_exists=true + while [ "$artifact_exists" = true ]; do + artifact_exists=false + artifacts_response=$(curl -L \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer $TOKEN" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + "https://api.github.com/repos/${{ github.repository }}/actions/artifacts?per_page=100") + artifacts=$(echo $artifacts_response | jq -c '.artifacts[]') + echo "Those are the artifacts : $artifacts" + while read row; do + artifact_name=$(echo "$row" | jq -r '.name') + if [[ "$artifact_name" =~ ^.*"$artifact_pattern".* ]]; then + artifact_exists=true + echo "Deleting : $artifact_name" + artifact_id=$(echo "$row" | jq -r '.id') + curl -L \ + -X DELETE \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer $TOKEN" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + "https://api.github.com/repos/${{ github.repository }}/actions/artifacts/${artifact_id}" + fi + done <<< "$artifacts" + done + echo "End of Deleting" + shell: bash diff --git a/.github/actions/package-nfpm/action.yml b/.github/actions/package-nfpm/action.yml index 50bc05e38..85f508669 100644 --- a/.github/actions/package-nfpm/action.yml +++ b/.github/actions/package-nfpm/action.yml @@ -10,6 +10,9 @@ inputs: distrib: description: The package distrib required: true + version: + description: The package version ([major_version].[minor_version]) + required: false major_version: description: The major version required: false @@ -18,7 +21,7 @@ inputs: required: false release: description: The package release number - required: false + required: true arch: description: The package architecture required: false @@ -37,6 +40,9 @@ inputs: rpm_gpg_signing_passphrase: description: The rpm gpg signing passphrase required: true + stability: + description: "Branch stability (stable, testing, unstable, canary)" + required: true runs: using: composite @@ -59,8 +65,15 @@ runs: RPM_GPG_SIGNING_KEY_ID: ${{ inputs.rpm_gpg_signing_key_id }} RPM_GPG_SIGNING_PASSPHRASE: ${{ inputs.rpm_gpg_signing_passphrase }} run: | - export MAJOR_VERSION="${{ inputs.major_version }}" - export VERSION="${{ inputs.major_version }}.${{ inputs.minor_version }}" + if [ -z ${{ inputs.version }} ]; then + export VERSION="${{ inputs.major_version }}.${{ inputs.minor_version }}" + export MAJOR_VERSION="${{ inputs.major_version }}" + export MINOR_VERSION="${{ inputs.minor_version }}" + elif [ -z ${{ inputs.major_version }} ]; then + export VERSION="${{ inputs.version }}" + export MAJOR_VERSION=$( echo $VERSION | cut -d "-" -f1 ) + export MINOR_VERSION=$( echo $VERSION | cut -d "-" -f2 ) + fi export RELEASE="${{ inputs.release }}" export ARCH="${{ inputs.arch }}" @@ -70,23 +83,28 @@ runs: export APACHE_GROUP="apache" else export DIST="" + if [ "${{ inputs.stability }}" == "unstable" ] || [ "${{ inputs.stability }}" == "canary" ]; then + export RELEASE="$RELEASE~${{ inputs.distrib }}" + elif [ "${{ inputs.stability }}" == "testing" ]; then + export RELEASE="1~${{ inputs.distrib }}" + fi export APACHE_USER="www-data" export APACHE_GROUP="www-data" fi - MAJOR_LEFT=$( echo $MAJOR_VERSION | cut -d "." -f1 ) - MAJOR_RIGHT=$( echo $MAJOR_VERSION | cut -d "-" -f1 | cut -d "." -f2 ) - BUMP_MAJOR_RIGHT=$(( MAJOR_RIGHT_PART + 1 )) - if [ "$MAJOR_RIGHT" = "04" ]; then - BUMP_MAJOR_LEFT="$MAJOR_LEFT" - BUMP_MAJOR_RIGHT="10" - else - BUMP_MAJOR_LEFT=$(( $MAJOR_LEFT + 1 )) - BUMP_MAJOR_RIGHT="04" + if [ -z "$MAJOR_VERSION" ]; then + MAJOR_LEFT=$( echo $VERSION | cut -d "." -f1 ) + MAJOR_RIGHT=$( echo $VERSION | cut -d "-" -f1 | cut -d "." -f2 ) + if [ "$MAJOR_RIGHT" == "04" ]; then + BUMP_MAJOR_LEFT="$MAJOR_LEFT" + BUMP_MAJOR_RIGHT="10" + else + BUMP_MAJOR_LEFT=$(( $MAJOR_LEFT + 1 )) + BUMP_MAJOR_RIGHT="04" + fi + export NEXT_MAJOR_VERSION="$BUMP_MAJOR_LEFT.$BUMP_MAJOR_RIGHT" fi - export NEXT_MAJOR_VERSION="$BUMP_MAJOR_LEFT.$BUMP_MAJOR_RIGHT" - export RPM_SIGNING_KEY_FILE="$(pwd)/key.gpg" export RPM_SIGNING_KEY_ID="$RPM_GPG_SIGNING_KEY_ID" export NFPM_RPM_PASSPHRASE="$RPM_GPG_SIGNING_PASSPHRASE" @@ -104,16 +122,22 @@ runs: done shell: bash - - name: Cache packages + - if: ${{ inputs.distrib == 'el7' }} uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: ./*.${{ inputs.package_extension }} key: ${{ inputs.cache_key }} + - if: ${{ inputs.distrib != 'el7' }} + uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + with: + path: ./*.${{ inputs.package_extension }} + key: ${{ inputs.cache_key }} + # Update if condition to true to get packages as artifacts - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ inputs.distrib }} path: ./*.${{ inputs.package_extension}} diff --git a/.github/actions/package/action.yml b/.github/actions/package/action.yml deleted file mode 100644 index f8e5d685f..000000000 --- a/.github/actions/package/action.yml +++ /dev/null @@ -1,85 +0,0 @@ -name: package -description: Package module using nfpm -inputs: - nfpm_file_pattern: - description: The pattern of the nfpm configuration file(s) - required: true - package_extension: - description: The package extension (deb or rpm) - required: true - distrib: - description: The package distrib - required: true - version: - description: The package version - required: false - release: - description: The package release number - required: false - commit_hash: - description: The commit hash - required: true - cache_key: - description: The package files cache key - required: true - rpm_gpg_key: - description: The rpm gpg key - required: true - rpm_gpg_signing_key_id: - description: The rpm gpg signing key identifier - required: true - rpm_gpg_signing_passphrase: - description: The rpm gpg signing passphrase - required: true - -runs: - using: composite - - steps: - - name: Import gpg key - env: - RPM_GPG_SIGNING_KEY: ${{ inputs.rpm_gpg_key }} - run: echo -n "$RPM_GPG_SIGNING_KEY" > key.gpg - shell: bash - - - name: Build ${{ inputs.package_extension }} files - env: - RPM_GPG_SIGNING_KEY_ID: ${{ inputs.rpm_gpg_signing_key_id }} - RPM_GPG_SIGNING_PASSPHRASE: ${{ inputs.rpm_gpg_signing_passphrase }} - run: | - export VERSION="${{ inputs.version }}" - export RELEASE="${{ inputs.release }}" - - if [ "${{ inputs.package_extension }}" = "rpm" ]; then - export DIST=".${{ inputs.distrib }}" - else - export DIST="" - fi - - export RPM_SIGNING_KEY_FILE="$(pwd)/key.gpg" - export RPM_SIGNING_KEY_ID="$RPM_GPG_SIGNING_KEY_ID" - export NFPM_RPM_PASSPHRASE="$RPM_GPG_SIGNING_PASSPHRASE" - - for FILE in ${{ inputs.nfpm_file_pattern }}; do - DIRNAME=$(dirname $FILE) - BASENAME=$(basename $FILE) - cd $DIRNAME - sed -i "s/@COMMIT_HASH@/${{ inputs.commit_hash }}/g" $BASENAME - nfpm package --config $BASENAME --packager ${{ inputs.package_extension }} - cd - - mv $DIRNAME/*.${{ inputs.package_extension }} ./ - done - shell: bash - - - name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 - with: - name: packages-${{ inputs.distrib }} - path: ./*.${{ inputs.package_extension }} - retention-days: 1 - - - name: Cache packages - uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 - with: - path: ./*.${{ inputs.package_extension }} - key: ${{ inputs.cache_key }} diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 1a26c7a7d..91f445adb 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -60,7 +60,7 @@ runs: shell: bash - name: Promote DEB package to stable - if: ${{ startsWith(inputs.distrib, 'bullseye') }} + if: ${{ startsWith(inputs.distrib, 'bullseye') || startsWith(inputs.distrib, 'bookworm' }} run: | echo "[DEBUG] - Distrib: ${{ inputs.distrib }}" diff --git a/.github/actions/rpm-delivery-legacy/action.yml b/.github/actions/rpm-delivery-legacy/action.yml index f5ab84809..042a38b39 100644 --- a/.github/actions/rpm-delivery-legacy/action.yml +++ b/.github/actions/rpm-delivery-legacy/action.yml @@ -24,7 +24,7 @@ runs: using: "composite" steps: - name: Use cache RPM files - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: ${{ inputs.cache_key }} diff --git a/.github/actions/rpm-delivery/action.yml b/.github/actions/rpm-delivery/action.yml index 45eabad40..b0ec29c49 100644 --- a/.github/actions/rpm-delivery/action.yml +++ b/.github/actions/rpm-delivery/action.yml @@ -25,7 +25,7 @@ runs: shell: bash - name: Use cache RPM files - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: ${{ inputs.cache_key }} diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff9fb1d34..6eeff4da1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,8 @@ updates: - package-ecosystem: github-actions directory: '/' schedule: - interval: weekly + interval: monthly open-pull-requests-limit: 10 labels: - - 'pr: dependencies' + - 'dependencies' + - 'gha' diff --git a/.github/docker/Dockerfile.packaging-plugins-bookworm b/.github/docker/Dockerfile.packaging-plugins-bookworm new file mode 100644 index 000000000..caf7d402a --- /dev/null +++ b/.github/docker/Dockerfile.packaging-plugins-bookworm @@ -0,0 +1,53 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/debian:bookworm + +ENV DEBIAN_FRONTEND noninteractive + +# fix locale +RUN bash -e <); +set_spell_cmd('hunspell -l'); +all_pod_files_spelling_ok($ARGV[0]); +close(FILE); \ No newline at end of file diff --git a/.github/scripts/stopwords.t b/.github/scripts/stopwords.t new file mode 100644 index 000000000..ef299c370 --- /dev/null +++ b/.github/scripts/stopwords.t @@ -0,0 +1,15 @@ +--filter-vdom +--force-counters32 +Centreon +Fortinet +Fortigate +license-instances-usage-prct +OID +oneaccess-sys-mib +perfdata +powershell +SNMP +space-usage-prct +SSH +SureBackup +Veeam diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 61c74f5ff..021d34926 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -61,6 +61,13 @@ jobs: spaces: 2 indent-sequences: true check-multi-line-strings: false + comments: + ignore-shebangs: true + min-spaces-from-content: 1 + comments-indentation: disable + new-lines: + type: unix + new-line-at-end-of-file: enable EOF - name: Lint YAML files diff --git a/.github/workflows/connector-vmware.yml b/.github/workflows/connector-vmware.yml index 0be147a0c..1fcfb7743 100644 --- a/.github/workflows/connector-vmware.yml +++ b/.github/workflows/connector-vmware.yml @@ -40,6 +40,12 @@ jobs: - package_extension: deb image: packaging-plugins-bullseye distrib: bullseye + - package_extension: deb + image: packaging-plugins-bookworm + distrib: bookworm + - package_extension: deb + image: packaging-plugins-jammy + distrib: jammy container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -54,7 +60,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Package - uses: ./.github/actions/package + uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: "connectors/vmware/packaging/centreon-plugin-virtualization-vmware-daemon.yaml" distrib: ${{ matrix.distrib }} @@ -66,6 +72,7 @@ jobs: rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} deliver-rpm: needs: @@ -100,7 +107,7 @@ jobs: strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources diff --git a/.github/workflows/docker-builder-packaging-plugins.yml b/.github/workflows/docker-builder-packaging-plugins.yml index dd95281c6..f55989d4b 100644 --- a/.github/workflows/docker-builder-packaging-plugins.yml +++ b/.github/workflows/docker-builder-packaging-plugins.yml @@ -37,6 +37,12 @@ jobs: - runner: ["self-hosted", "collect-arm64"] dockerfile: packaging-plugins-bullseye image: packaging-plugins-bullseye-arm64 + - runner: ubuntu-22.04 + dockerfile: packaging-plugins-bookworm + image: packaging-plugins-bookworm + - runner: ubuntu-22.04 + dockerfile: packaging-plugins-jammy + image: packaging-plugins-jammy runs-on: ${{ matrix.runner }} @@ -45,22 +51,22 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Login to Registry - uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0 + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 with: registry: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }} username: ${{ secrets.DOCKER_REGISTRY_ID }} password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} - name: Login to proxy registry - uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0 + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 with: registry: ${{ vars.DOCKER_PROXY_REGISTRY_URL }} username: ${{ secrets.DOCKER_REGISTRY_ID }} password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} - - uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0 + - uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 - - uses: docker/build-push-action@1104d471370f9806843c095c1db02b5a90c5f8b6 # v3.3.1 + - uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 with: file: .github/docker/Dockerfile.${{ matrix.dockerfile }} context: . diff --git a/.github/workflows/nrpe.yml b/.github/workflows/nrpe.yml index b76e986cc..c51017cdd 100644 --- a/.github/workflows/nrpe.yml +++ b/.github/workflows/nrpe.yml @@ -38,6 +38,12 @@ jobs: - package_extension: deb image: packaging-plugins-bullseye distrib: bullseye + - package_extension: deb + image: packaging-plugins-bookworm + distrib: bookworm + - package_extension: deb + image: packaging-plugins-jammy + distrib: jammy container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -94,7 +100,7 @@ jobs: shell: bash - name: Package - uses: ./.github/actions/package + uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: "nrpe/packaging/*.yaml" distrib: ${{ matrix.distrib }} @@ -106,6 +112,7 @@ jobs: rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} deliver-rpm: needs: [get-environment, package] @@ -136,7 +143,7 @@ jobs: strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index d2b9bbaff..9d988460b 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -22,7 +22,7 @@ jobs: get-environment: uses: ./.github/workflows/get-environment.yml - package: + package-rpm: needs: [get-environment] if: ${{ needs.get-environment.outputs.stability != 'stable' }} @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - distrib: [el8, el9, bullseye] + distrib: [el8, el9] name: [ "Authen::SASL::SASLprep", @@ -98,9 +98,8 @@ jobs: "ZMQ::LibZMQ4" ] include: - - build_distribs: "el8,el9,bullseye" + - build_distribs: "el8,el9" - rpm_dependencies: "" - - deb_dependencies: "" - rpm_provides: "" - version: "" - use_dh_make_perl: "true" @@ -111,30 +110,20 @@ jobs: - distrib: el9 package_extension: rpm image: packaging-plugins-alma9 - - distrib: bullseye - package_extension: deb - image: packaging-plugins-bullseye - name: "BSON" - build_distribs: "el8,el9" rpm_provides: "perl(BSON::Bytes) perl(BSON::Code) perl(BSON::DBRef) perl(BSON::OID) perl(BSON::Raw) perl(BSON::Regex) perl(BSON::Time) perl(BSON::Timestamp) perl(BSON::Types) perl(BSON)" - name: "BSON::XS" - build_distribs: "el8,el9" - name: "Convert::Binary::C" - build_distribs: "el8,el9" - name: "DateTime::Format::Duration::ISO8601" rpm_provides: "perl(DateTime-Format-Duration-ISO8601)" - name: "DBD::Sybase" - build_distribs: "el8,el9" - name: "Device::Modbus::RTU::Client" version: "0.022" - name: "Device::Modbus::TCP::Client" version: "0.026" - name: "EV" - build_distribs: "el8,el9" - name: "FFI::CheckLib" - build_distribs: "el8,el9" - name: "FFI::Platypus" - build_distribs: "el8,el9" rpm_provides: "perl(FFI::Platypus::Buffer) perl(FFI::Platypus::Memory)" - name: "Net::DHCP" rpm_provides: "perl(Net::DHCP::Constants) perl(Net::DHCP::Packet)" @@ -142,18 +131,15 @@ jobs: version: "0.53" - name: "UUID" use_dh_make_perl: "false" - build_distribs: "el8,el9" version: "0.31" - name: "ZMQ::Constants" - build_distribs: "el9,bullseye" + build_distribs: "el9" - name: "ZMQ::FFI" - build_distribs: "el8,el9" rpm_dependencies: "zeromq" - name: "ZMQ::LibZMQ4" use_dh_make_perl: "false" version: "0.01" rpm_dependencies: "zeromq" - deb_dependencies: "libzmq5" name: package ${{ matrix.distrib }} ${{ matrix.name }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }}:latest @@ -164,7 +150,7 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.package_extension == 'rpm' }} + - if: ${{ contains(matrix.build_distribs, matrix.distrib) }} run: | yum install -y yum-utils epel-release git yum config-manager --set-enabled crb || true # alma 9 @@ -172,7 +158,7 @@ jobs: yum install -y cpanminus rpm-build libcurl-devel libssh-devel expat-devel gcc ruby libuuid-devel zeromq-devel libxml2-devel libffi-devel perl-DBI perl-Net-Pcap freetds freetds-devel shell: bash - - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.package_extension == 'rpm' && matrix.spec_file == '' }} + - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.spec_file == '' }} run: | if [ -z "${{ matrix.version }}" ]; then PACKAGE_VERSION="" @@ -205,7 +191,7 @@ jobs: fpm -s cpan -t ${{ matrix.package_extension }} --rpm-dist ${{ matrix.distrib }} --verbose --cpan-verbose --no-cpan-test$PACKAGE_DEPENDENCIES$PACKAGE_PROVIDES$PACKAGE_VERSION ${{ matrix.name }} shell: bash - - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.package_extension == 'rpm' && matrix.spec_file != '' }} + - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.spec_file != '' }} run: | mkdir -p ~/rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS} @@ -214,17 +200,146 @@ jobs: cp -r ~/rpmbuild/RPMS/noarch/*.rpm . shell: bash - - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.package_extension == 'deb' && matrix.use_dh_make_perl == 'false' }} + - name: Replace '::' with - in the feature path + id: package-name run: | - apt update - apt install -y cpanminus ruby libcurl4-openssl-dev libssh-dev uuid-dev libczmq-dev + name="${{ matrix.name }}" + name_with_dash="${name//::/-}" + echo "Modified Name: $name_with_dash" + echo "name_with_dash=$name_with_dash" >> $GITHUB_OUTPUT + shell: bash + + - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + with: + name: packages-${{ matrix.package_extension }}-${{ matrix.distrib }}-${{ steps.package-name.outputs.name_with_dash }} + path: ./*.${{ matrix.package_extension }} + retention-days: 1 + + package-deb: + needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} + + runs-on: ubuntu-22.04 + strategy: + fail-fast: false + matrix: + distrib: [bullseye, bookworm, jammy] + name: + [ + "Authen::SASL::SASLprep", + "Authen::SCRAM::Client", + "boolean", + "Carp::Assert", + "Clone", + "Clone::Choose", + "common::sense", + "Convert::EBCDIC", + "Crypt::Blowfish_PP", + "DateTime::Format::Duration::ISO8601", + "Device::Modbus", + "Digest::MD5::File", + "Digest::SHA1", + "Email::Send::SMTP::Gmail", + "FFI::CheckLib", + "File::SearchPath", + "Hash::Merge", + "Hash::Ordered", + "HTTP::Daemon", + "HTTP::Daemon::SSL", + "HTTP::ProxyPAC", + "JMX::Jmx4Perl", + "JSON::Parse", + "JSON::WebToken", + "LV", + "MIME::Types", + "MongoDB", + "Net::FTPSSL", + "Net::HTTPTunnel", + "Net::NTP", + "Net::SMTPS", + "Net::SMTP_auth", + "Net::Subnet", + "Net::TFTP", + "PBKDF2::Tiny", + "Schedule::Cron", + "Statistics::Descriptive", + "Statistics::Regression", + "Sys::SigAction", + "Term::Clui", + "Term::ShellUI", + "Unicode::Stringprep", + "URI::Encode", + "URI::Template", + "URL::Encode", + "UUID::URandom", + "WWW::Selenium", + "XML::Filter::BufferText", + "XML::LibXML::Simple", + "XML::SAX::Writer", + "ZMQ::Constants", + "ZMQ::LibZMQ4" + ] + include: + - build_distribs: "bullseye,bookworm,jammy" + - deb_dependencies: "" + - rpm_provides: "" + - version: "" + - use_dh_make_perl: "true" + - spec_file: "" + - distrib: bullseye + package_extension: deb + image: packaging-plugins-bullseye + - distrib: bookworm + package_extension: deb + image: packaging-plugins-bookworm + - distrib: jammy + package_extension: deb + image: packaging-plugins-jammy + - name: "DateTime::Format::Duration::ISO8601" + - name: "Statistics::Regression" + version: "0.53" + - name: "ZMQ::Constants" + - name: "ZMQ::LibZMQ4" + use_dh_make_perl: "false" + version: "0.01" + deb_dependencies: "libzmq5" + name: package ${{ matrix.distrib }} ${{ matrix.name }} + container: + image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }}:latest + credentials: + username: ${{ secrets.DOCKER_REGISTRY_ID }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Get package version + id: package-version + run: | + apt-get update + apt-get install -y cpanminus + + if [ -z "${{ matrix.version }}" ]; then + CPAN_PACKAGE_VERSION=$(cpanm --info ${{ matrix.name }} | sed 's/\.tar\.gz$//' | sed 's/.*\-//' | sed 's/v//') + + if [[ ! $CPAN_PACKAGE_VERSION =~ ^[0-9]+\.[0-9]+ ]]; then + echo "::error::Invalid version number: ${CPAN_PACKAGE_VERSION}" + exit 1 + fi + + PACKAGE_VERSION="${CPAN_PACKAGE_VERSION}" + else + PACKAGE_VERSION="${{ matrix.version }}" + fi + + echo "package_version=$(echo $PACKAGE_VERSION)" >> $GITHUB_OUTPUT + shell: bash + + - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.use_dh_make_perl == 'false' }} + run: | + apt-get install -y ruby libcurl4-openssl-dev libssh-dev uuid-dev libczmq-dev PACKAGE_NAME=`echo ${{ matrix.name }} | sed -e 's/::/-/g' | tr '[A-Z]' '[a-z]' | sed -e 's/^/lib/g' | sed -e 's/$/-perl/g' | sed -e 's/liblib/lib/g'` - if [ -z "${{ matrix.version }}" ]; then - PACKAGE_VERSION="" - else - PACKAGE_VERSION=" -v ${{ matrix.version }}" - fi if [ -z "${{ matrix.deb_dependencies }}" ]; then PACKAGE_DEPENDENCIES="" @@ -238,31 +353,69 @@ jobs: cpanm Module::Install gem install fpm - fpm -s cpan -t ${{ matrix.package_extension }} --deb-dist ${{ matrix.distrib }} --verbose --cpan-verbose --no-cpan-test -n $PACKAGE_NAME$PACKAGE_DEPENDENCIES$PACKAGE_VERSION ${{ matrix.name }} + fpm -s cpan -t ${{ matrix.package_extension }} --deb-dist ${{ matrix.distrib }} --iteration ${{ matrix.distrib }} --verbose --cpan-verbose --no-cpan-test -n $PACKAGE_NAME$PACKAGE_DEPENDENCIES -v ${{ steps.package-version.outputs.package_version }} ${{ matrix.name }} shell: bash - - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.package_extension == 'deb' && matrix.use_dh_make_perl == 'true' }} + - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.use_dh_make_perl == 'true' }} run: | - apt update - apt install -y cpanminus libcurl4-openssl-dev dh-make-perl libssh-dev uuid-dev libczmq-dev libmodule-install-perl + apt-get install -y libcurl4-openssl-dev dh-make-perl libssh-dev uuid-dev libczmq-dev libmodule-install-perl - if [ -z "${{ matrix.version }}" ]; then - PACKAGE_VERSION="" - else - PACKAGE_VERSION="--version ${{ matrix.version }}-${{ matrix.distrib }}" - fi - - DEB_BUILD_OPTIONS="nocheck nodocs notest" dh-make-perl make --build $PACKAGE_VERSION --cpan ${{ matrix.name }} + DEB_BUILD_OPTIONS="nocheck nodocs notest" dh-make-perl make --dist ${{ matrix.distrib }} --build --version ${{ steps.package-version.outputs.package_version }}-${{ matrix.distrib }} --cpan ${{ matrix.name }} shell: bash - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - name: Replace '::' with - in the feature path + id: package-name + run: | + name="${{ matrix.name }}" + name_with_dash="${name//::/-}" + echo "Modified Name: $name_with_dash" + echo "name_with_dash=$name_with_dash" >> $GITHUB_OUTPUT + shell: bash + + - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: - name: packages-${{ matrix.package_extension }}-${{ matrix.distrib }} + name: packages-${{ matrix.package_extension }}-${{ matrix.distrib }}-${{ steps.package-name.outputs.name_with_dash}} path: ./*.${{ matrix.package_extension }} retention-days: 1 + merge-package-rpm-artifacts: + needs: [package-rpm] + runs-on: ubuntu-22.04 + strategy: + matrix: + distrib: [el8, el9] + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Merging Artifacts + uses: ./.github/actions/merge-artifacts + with: + target_name: packages-rpm-${{ matrix.distrib }} + source_paths: packages-rpm-${{ matrix.distrib }}/*.rpm + source_name_pattern: packages-rpm-${{ matrix.distrib }}- + github_token: ${{ secrets.GITHUB_TOKEN }} + + merge-package-deb-artifacts: + needs: [package-deb] + runs-on: ubuntu-22.04 + strategy: + matrix: + distrib: [bullseye, bookworm, jammy] + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Merging Artifacts + uses: ./.github/actions/merge-artifacts + with: + target_name: packages-deb-${{ matrix.distrib }} + source_paths: packages-deb-${{ matrix.distrib }}/*.deb + source_name_pattern: packages-deb-${{ matrix.distrib }}- + github_token: ${{ secrets.GITHUB_TOKEN }} + sign-rpm: - needs: [package] + needs: [merge-package-rpm-artifacts] runs-on: ubuntu-22.04 strategy: @@ -282,7 +435,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 with: name: packages-rpm-${{ matrix.distrib }} path: ./ @@ -293,24 +446,27 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} download-and-cache-deb: - needs: [package] + needs: [merge-package-deb-artifacts] runs-on: ubuntu-22.04 + strategy: + matrix: + distrib: [bullseye, bookworm, jammy] steps: - - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 with: - name: packages-deb-bullseye + name: packages-deb-${{ matrix.distrib }} path: ./ - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.deb - key: ${{ github.sha }}-${{ github.run_id }}-deb-bullseye + key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} deliver-rpm: needs: [get-environment, sign-rpm] @@ -341,7 +497,7 @@ jobs: strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources @@ -362,7 +518,7 @@ jobs: runs-on: [self-hosted, common] strategy: matrix: - distrib: [el8, el9, bullseye] + distrib: [el8, el9, bullseye, bookworm] steps: - name: Checkout sources diff --git a/.github/workflows/perl-crypt-argon2.yml b/.github/workflows/perl-crypt-argon2.yml index 2706c1b74..ae7c02b5e 100644 --- a/.github/workflows/perl-crypt-argon2.yml +++ b/.github/workflows/perl-crypt-argon2.yml @@ -46,6 +46,16 @@ jobs: package_extension: deb runner: ubuntu-22.04 arch: amd64 + - image: packaging-plugins-bookworm + distrib: bookworm + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 + - image: packaging-plugins-jammy + distrib: jammy + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 - image: packaging-plugins-bullseye-arm64 distrib: bullseye package_extension: deb @@ -68,7 +78,7 @@ jobs: - name: Install locally Crypt::Argon2 run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then apt-get update apt-get install -y cpanminus gcc else @@ -80,7 +90,7 @@ jobs: - name: Set package name and paths according to distrib run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libcrypt-argon2-perl" if [ "${{ matrix.arch }}" = "amd64" ]; then PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" @@ -109,16 +119,18 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} + release: 3 commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-perl-crypt-argon2-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-crypt-argon2-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} path: ./*.${{ matrix.package_extension}} @@ -158,6 +170,10 @@ jobs: include: - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 + - distrib: jammy + arch: amd64 - distrib: bullseye arch: arm64 @@ -189,6 +205,8 @@ jobs: arch: amd64 - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 - distrib: bullseye arch: arm64 diff --git a/.github/workflows/perl-filesys-smbclient.yml b/.github/workflows/perl-filesys-smbclient.yml index 9d92daf0c..d18acd2cf 100644 --- a/.github/workflows/perl-filesys-smbclient.yml +++ b/.github/workflows/perl-filesys-smbclient.yml @@ -61,7 +61,7 @@ jobs: cp -r ~/rpmbuild/RPMS/x86_64/*.rpm . shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -92,7 +92,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -103,7 +103,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -138,7 +138,7 @@ jobs: DEB_BUILD_OPTIONS="nocheck nodocs notest noautodbgsym" dh-make-perl make --verbose --build --version 4.0-${{ matrix.distrib }} perl-filesys-smbclient/ shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.deb key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} diff --git a/.github/workflows/perl-json-path.yml b/.github/workflows/perl-json-path.yml index 251be4850..0bb26794d 100644 --- a/.github/workflows/perl-json-path.yml +++ b/.github/workflows/perl-json-path.yml @@ -38,6 +38,12 @@ jobs: - image: packaging-plugins-bullseye distrib: bullseye package_extension: deb + - image: packaging-plugins-bookworm + distrib: bookworm + package_extension: deb + - image: packaging-plugins-jammy + distrib: jammy + package_extension: deb runs-on: ubuntu-22.04 @@ -55,7 +61,7 @@ jobs: - name: Install locally JSON::Path run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then apt-get update apt-get install -y cpanminus gcc else @@ -72,7 +78,7 @@ jobs: - name: Set package name and paths according to distrib run: | VERSION="1.0.3" - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libjson-path-perl" PERL_VENDORLIB="/usr/share/perl5" else @@ -98,17 +104,19 @@ jobs: nfpm_file_pattern: "dependencies/perl-json-path/perl-json-path.yaml" distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} + release: 3 arch: all commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-perl-json-path-${{ matrix.distrib }}-${{ github.head_ref || github.ref_name }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-json-path-${{ matrix.distrib }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }} path: ./*.${{ matrix.package_extension}} @@ -145,8 +153,7 @@ jobs: strategy: matrix: - distrib: [bullseye] - + distrib: [bullseye, bookworm] name: Deliver ${{ matrix.distrib }} @@ -169,7 +176,7 @@ jobs: runs-on: [self-hosted, common] strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm] steps: - name: Checkout sources diff --git a/.github/workflows/perl-keepass-reader.yml b/.github/workflows/perl-keepass-reader.yml index f0fb14c34..8e2bcc56e 100644 --- a/.github/workflows/perl-keepass-reader.yml +++ b/.github/workflows/perl-keepass-reader.yml @@ -57,7 +57,7 @@ jobs: cp -r ~/rpmbuild/RPMS/noarch/*.rpm . shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -88,7 +88,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -99,12 +99,12 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }} path: ./*.rpm @@ -120,6 +120,10 @@ jobs: include: - image: bullseye distrib: bullseye + - image: bookworm + distrib: bookworm + - image: jammy + distrib: jammy name: package ${{ matrix.distrib }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/packaging-plugins-${{ matrix.image }}:latest @@ -140,12 +144,12 @@ jobs: DEB_BUILD_OPTIONS="nocheck nodocs notest noautodbgsym" dh-make-perl make -p libkeepass-reader-perl --verbose --build --version 0.2-${{ matrix.distrib }} perl-keepass-reader/ shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.deb key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }} path: ./*.deb @@ -180,7 +184,7 @@ jobs: strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources @@ -201,7 +205,7 @@ jobs: runs-on: [self-hosted, common] strategy: matrix: - distrib: [el8, el9, bullseye] + distrib: [el8, el9, bullseye, bookworm] steps: - name: Checkout sources diff --git a/.github/workflows/perl-libssh-session.yml b/.github/workflows/perl-libssh-session.yml index b50b85779..63cc505ef 100644 --- a/.github/workflows/perl-libssh-session.yml +++ b/.github/workflows/perl-libssh-session.yml @@ -44,6 +44,16 @@ jobs: package_extension: deb runner: ubuntu-22.04 arch: amd64 + - image: packaging-plugins-bookworm + distrib: bookworm + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 + - image: packaging-plugins-jammy + distrib: jammy + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 - image: packaging-plugins-bullseye-arm64 distrib: bullseye package_extension: deb @@ -66,7 +76,7 @@ jobs: - name: Install locally Libssh::Session run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then apt-get update apt-get install -y cpanminus gcc libssh-dev else @@ -78,7 +88,7 @@ jobs: - name: Set package name and paths according to distrib run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libssh-session-perl" if [ "${{ matrix.arch }}" = "amd64" ]; then PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" @@ -107,16 +117,18 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} + release: 4 commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-perl-libssh-session-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-libssh-session-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} path: ./*.${{ matrix.package_extension}} @@ -158,6 +170,10 @@ jobs: arch: amd64 - distrib: bullseye arch: arm64 + - distrib: bookworm + arch: amd64 + - distrib: jammy + arch: amd64 name: Deliver ${{ matrix.distrib }} ${{ matrix.arch }} @@ -187,6 +203,8 @@ jobs: arch: amd64 - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 - distrib: bullseye arch: arm64 diff --git a/.github/workflows/perl-net-curl.yml b/.github/workflows/perl-net-curl.yml index ac184b3cd..3bf2fc9d7 100644 --- a/.github/workflows/perl-net-curl.yml +++ b/.github/workflows/perl-net-curl.yml @@ -44,6 +44,16 @@ jobs: package_extension: deb runner: ubuntu-22.04 arch: amd64 + - image: packaging-plugins-bookworm + distrib: bookworm + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 + - image: packaging-plugins-jammy + distrib: jammy + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 - image: packaging-plugins-bullseye-arm64 distrib: bullseye package_extension: deb @@ -66,7 +76,7 @@ jobs: - name: Install locally Net::Curl run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then apt-get update apt-get install -y libcurl4-openssl-dev cpanminus gcc else @@ -78,7 +88,7 @@ jobs: - name: Set package name and paths according to distrib run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libnet-curl-perl" if [ "${{ matrix.arch }}" = "amd64" ]; then PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" @@ -108,18 +118,20 @@ jobs: package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-perl-net-curl-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + release: 3 + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-net-curl-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} - path: ./*.${{ matrix.package_extension}} + path: ./*.${{ matrix.package_extension }} retention-days: 1 deliver-rpm: @@ -156,6 +168,10 @@ jobs: include: - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 + - distrib: jammy + arch: amd64 - distrib: bullseye arch: arm64 @@ -187,6 +203,8 @@ jobs: arch: amd64 - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 - distrib: bullseye arch: arm64 diff --git a/.github/workflows/perl-openwsman.yml b/.github/workflows/perl-openwsman.yml index 82ed23b6e..c64601535 100644 --- a/.github/workflows/perl-openwsman.yml +++ b/.github/workflows/perl-openwsman.yml @@ -45,6 +45,18 @@ jobs: runner: ubuntu-22.04 arch: amd64 version: 2.7.2 + - image: packaging-plugins-bookworm + distrib: bookworm + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 + version: 2.7.2 + - image: packaging-plugins-jammy + distrib: jammy + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 + version: 2.7.2 - image: packaging-plugins-bullseye-arm64 distrib: bullseye package_extension: deb @@ -68,7 +80,7 @@ jobs: - name: Install locally sblim-sfcc run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then apt-get update apt-get install -y libcurl4-openssl-dev cd /tmp @@ -91,7 +103,7 @@ jobs: - name: Build openwsman run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then apt-get install -y cmake libssl-dev libpam-dev swig libxml2-dev else dnf install -y wget cmake gcc-c++ libcurl-devel pam-devel swig libxml2-devel openssl-devel @@ -104,10 +116,11 @@ jobs: cd build cmake .. -DBUILD_PYTHON=No -DBUILD_PYTHON3=No -DBUILD_JAVA=No -DBUILD_RUBY=No -DBUILD_PERL=Yes make + shell: bash - name: Set package name and paths according to distrib run: | - if [ "${{ matrix.distrib }}" = "bullseye" ]; then + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME_PERL="libopenwsman-perl" USRLIB="/usr/lib/" if [ "${{ matrix.arch }}" = "amd64" ]; then @@ -138,18 +151,20 @@ jobs: shell: bash - name: Package sblim-sfcc - if: ${{ matrix.distrib == 'bullseye' }} + if: ${{ matrix.package_extension == 'deb' }} uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: "dependencies/perl-openwsman/sblim-sfcc.yaml" distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} + release: 2 commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-sblim-sfcc-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-sblim-sfcc-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} - name: Package libwsman uses: ./.github/actions/package-nfpm @@ -158,11 +173,13 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} + release: 4 commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-libwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-libwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} - name: Package perl-openwsman uses: ./.github/actions/package-nfpm @@ -171,16 +188,18 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} + release: 4 commit_hash: ${{ github.sha }} - cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-perl-openwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-openwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} path: ./*.${{ matrix.package_extension}} @@ -229,6 +248,10 @@ jobs: include: - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 + - distrib: jammy + arch: amd64 - distrib: bullseye arch: arm64 @@ -278,6 +301,8 @@ jobs: arch: amd64 - distrib: bullseye arch: amd64 + - distrib: bookworm + arch: amd64 - distrib: bullseye arch: arm64 @@ -286,7 +311,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Promote sblim-sfcc ${{ matrix.distrib }} ${{ matrix.arch }} to stable - if: ${{ matrix.distrib == 'bullseye' }} + if: ${{ contains(fromJSON('["bullseye", "bookworm", "jammy"]'), matrix.distrib) }} uses: ./.github/actions/promote-to-stable with: artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} diff --git a/.github/workflows/perl-vmware-vsphere.yml b/.github/workflows/perl-vmware-vsphere.yml index b1847e802..2d16d5ebc 100644 --- a/.github/workflows/perl-vmware-vsphere.yml +++ b/.github/workflows/perl-vmware-vsphere.yml @@ -39,7 +39,7 @@ jobs: shell: bash - name: Cache vsphere cli sources - uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: vmware-vsphere-cli-distrib key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere @@ -47,6 +47,7 @@ jobs: package: needs: - get-sources + - get-environment runs-on: ubuntu-22.04 strategy: matrix: @@ -60,6 +61,12 @@ jobs: - package_extension: deb image: packaging-plugins-bullseye distrib: bullseye + - package_extension: deb + image: packaging-plugins-bookworm + distrib: bookworm + - package_extension: deb + image: packaging-plugins-jammy + distrib: jammy container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -74,23 +81,25 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Import source files - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: vmware-vsphere-cli-distrib key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere fail-on-cache-miss: true - name: Package - uses: ./.github/actions/package + uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: "dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml" distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} commit_hash: ${{ github.sha }} + release: ${{ needs.get-environment.outputs.release }} cache_key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} deliver-rpm: needs: @@ -125,7 +134,7 @@ jobs: strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources diff --git a/.github/workflows/plink.yml b/.github/workflows/plink.yml index ff5429a78..e5b55e53e 100644 --- a/.github/workflows/plink.yml +++ b/.github/workflows/plink.yml @@ -55,7 +55,7 @@ jobs: cp -r ~/rpmbuild/RPMS/x86_64/*.rpm . shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -86,7 +86,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -97,12 +97,12 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 with: name: packages-${{ matrix.distrib }} path: ./*.rpm diff --git a/.github/workflows/plugin-delivery.yml b/.github/workflows/plugin-delivery.yml index e528995fd..6966f69b8 100644 --- a/.github/workflows/plugin-delivery.yml +++ b/.github/workflows/plugin-delivery.yml @@ -30,7 +30,7 @@ jobs: - name: Checkout sources uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} @@ -96,7 +96,7 @@ jobs: strategy: fail-fast: false matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources diff --git a/.github/workflows/plugins-selinux.yml b/.github/workflows/plugins-selinux.yml index 4a771a394..0236b5aa0 100644 --- a/.github/workflows/plugins-selinux.yml +++ b/.github/workflows/plugins-selinux.yml @@ -55,7 +55,7 @@ jobs: shell: bash - name: Package - uses: ./.github/actions/package + uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: "selinux/packaging/centreon-plugins-selinux.yaml" distrib: ${{ matrix.distrib }} @@ -67,6 +67,7 @@ jobs: rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} deliver-rpm: needs: [get-environment, package] diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 74d80778f..d2287bdf0 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -33,7 +33,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 + - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: '3.9' @@ -93,7 +93,7 @@ jobs: fetch-depth: 1 - name: Prepare FatPacker - uses: shogo82148/actions-setup-perl@v1 + uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 with: perl-version: '5.34' install-modules-with: cpm @@ -104,7 +104,7 @@ jobs: COMMIT=$(git log -1 HEAD --pretty=format:%h) perl .github/scripts/plugins-source.container.pl "${{ needs.get-plugins.outputs.plugins }}" "${{ needs.get-environment.outputs.version }} ($COMMIT)" - - uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} @@ -129,6 +129,12 @@ jobs: - package_extension: deb image: packaging-plugins-bullseye distrib: bullseye + - package_extension: deb + image: packaging-plugins-bookworm + distrib: bookworm + - package_extension: deb + image: packaging-plugins-jammy + distrib: jammy container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -141,13 +147,22 @@ jobs: steps: - name: Checkout sources if: ${{ matrix.distrib == 'el7' }} - uses: actions/checkout@v3 # el7 is not compatible with checkout v4 which uses node20 + # el7 is not compatible with checkout v4 which uses node20 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 - name: Checkout sources if: ${{ matrix.distrib != 'el7' }} uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + - if: ${{ matrix.distrib == 'el7' }} + uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + with: + path: ./build/ + key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} + fail-on-cache-miss: true + + - if: ${{ matrix.distrib != 'el7' }} + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} @@ -213,7 +228,7 @@ jobs: done shell: bash - - uses: ./.github/actions/package + - uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: ".github/packaging/*.yaml" distrib: ${{ matrix.distrib }} @@ -225,6 +240,7 @@ jobs: rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + stability: ${{ needs.get-environment.outputs.stability }} deliver: needs: [get-environment, package] diff --git a/.github/workflows/spellchecker.yml b/.github/workflows/spellchecker.yml new file mode 100644 index 000000000..4330058fa --- /dev/null +++ b/.github/workflows/spellchecker.yml @@ -0,0 +1,54 @@ +name: spell-checker + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +on: + workflow_dispatch: + pull_request: + paths: + - '.github/workflows/spellchecker.yml' + - 'src/**' + - '.github/scripts/pod_spell_check.t' + +jobs: + pod-spell-check: + if: ${{ !contains(github.event.pull_request.labels.*.name, 'do-not-spellcheck') }} + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 + id: filter + with: + base: ${{ github.ref }} + list-files: shell + filters: | + plugins: + - added|modified: src/** + + - name: Install CPAN Libraries + uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 + with: + perl-version: '5.34' + install-modules-with: cpm + install-modules: Test::More Test::Spelling + + - name: Install librairies + continue-on-error: true + run: | + sudo apt-get update + sudo apt-get install -y hunspell + shell: bash + + - name: Run spell check + id: run_check + run: | + set +e + for f in ${{ steps.filter.outputs.plugins_files }}; do + echo "perl .github/scripts/pod_spell_check.t $f" + output=$(perl .github/scripts/pod_spell_check.t $f) + done + shell: bash diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml index ae06e4ba3..88dc3ebc5 100644 --- a/.github/workflows/tests-functional.yml +++ b/.github/workflows/tests-functional.yml @@ -28,7 +28,7 @@ jobs: sudo apt-get install -qqy snmpsim - name: Install Node.js - uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 + uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 with: node-version: 16 @@ -36,7 +36,7 @@ jobs: run: npm install -g -D @mockoon/cli@3.1.0 - name: Install perl dependencies - uses: shogo82148/actions-setup-perl@v1 + uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 with: perl-version: '5.34' install-modules-with: cpm @@ -55,12 +55,14 @@ jobs: JSON::XS - name: Install Python - uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 + uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: python-version: '3.11' - name: Install Robot Framework - run: pip3.11 install robotframework + run: | + pip3.11 install robotframework + pip3.11 install RobotFramework-Examples shell: bash - name: Run Robot Framework API tests @@ -79,3 +81,6 @@ jobs: - name: Run Robot Framework Database tests run: robot tests/functional/database + + - name: Run Robot Framework Linux tests + run: robot tests/functional/linux diff --git a/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml b/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml index 57945b531..943d069dd 100644 --- a/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml +++ b/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "0.019" -release: "2${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/dependencies/perl-json-path/perl-json-path.yaml b/dependencies/perl-json-path/perl-json-path.yaml index d44ed290a..8d968c366 100644 --- a/dependencies/perl-json-path/perl-json-path.yaml +++ b/dependencies/perl-json-path/perl-json-path.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "@VERSION@" -release: "2${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/dependencies/perl-libssh-session/perl-libssh-session.yaml b/dependencies/perl-libssh-session/perl-libssh-session.yaml index b63ba2796..a1f9c7116 100644 --- a/dependencies/perl-libssh-session/perl-libssh-session.yaml +++ b/dependencies/perl-libssh-session/perl-libssh-session.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "0.8" -release: "3${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/dependencies/perl-net-curl/perl-net-curl.yaml b/dependencies/perl-net-curl/perl-net-curl.yaml index 7648ba9e2..61cdfccf6 100644 --- a/dependencies/perl-net-curl/perl-net-curl.yaml +++ b/dependencies/perl-net-curl/perl-net-curl.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "0.54" -release: "2${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/dependencies/perl-openwsman/libwsman.yaml b/dependencies/perl-openwsman/libwsman.yaml index 4af6428b4..637fe8395 100644 --- a/dependencies/perl-openwsman/libwsman.yaml +++ b/dependencies/perl-openwsman/libwsman.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "@VERSION@" -release: "1${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/dependencies/perl-openwsman/perl-openwsman.yaml b/dependencies/perl-openwsman/perl-openwsman.yaml index 08572463a..b30faae46 100644 --- a/dependencies/perl-openwsman/perl-openwsman.yaml +++ b/dependencies/perl-openwsman/perl-openwsman.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "@VERSION@" -release: "3${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/dependencies/perl-openwsman/sblim-sfcc.yaml b/dependencies/perl-openwsman/sblim-sfcc.yaml index a3be033e7..fe6cf25c8 100644 --- a/dependencies/perl-openwsman/sblim-sfcc.yaml +++ b/dependencies/perl-openwsman/sblim-sfcc.yaml @@ -3,7 +3,7 @@ arch: "${ARCH}" platform: "linux" version_schema: "none" version: "2.7.2" -release: "1${DIST}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " diff --git a/doc/en/developer/guide.md b/doc/en/developer/guide.md index 9328a795f..8fbcb08e7 100644 --- a/doc/en/developer/guide.md +++ b/doc/en/developer/guide.md @@ -1,2211 +1,10 @@ -# Description - -This document introduces the best practices in the development of "centreon-plugins". - -As all plugins are written in Perl, “there is more than one way to do it”. -But to avoid reinventing the wheel, you should first take a look at the “example” directory, you will get an overview of how to build your own plugin and associated modes. - -There are 3 chapters: - -* [Quick Start](#quick-start) : Howto create file structure. -* [Libraries Reference](#libraries-reference) : API description. -* [Code Style Guidelines](#code-style-guidelines) : Follow it. -* [Model Classes Usage](#model-classes-usage) : description of classes you should use for your plugin. - -The lastest version is available on following git repository: https://github.com/centreon/centreon-plugins.git - -# TOC -- [Description](#description) -- [TOC](#toc) - - [Quick Start](#quick-start) - - [Directory creation](#directory-creation) - - [Plugin creation](#plugin-creation) - - [Mode creation](#mode-creation) - - [Commit and push](#commit-and-push) - - [Libraries reference](#libraries-reference) - - [Output](#output) - - [output_add](#output_add) - - [perfdata_add](#perfdata_add) - - [Perfdata](#perfdata) - - [get_perfdata_for_output](#get_perfdata_for_output) - - [threshold_validate](#threshold_validate) - - [threshold_check](#threshold_check) - - [change_bytes](#change_bytes) - - [Snmp](#snmp) - - [get_leef](#get_leef) - - [load](#load) - - [get_table](#get_table) - - [get_multiple_table](#get_multiple_table) - - [get_hostname](#get_hostname) - - [get_port](#get_port) - - [oid_lex_sort](#oid_lex_sort) - - [Misc](#misc) - - [trim](#trim) - - [change_seconds](#change_seconds) - - [backtick](#backtick) - - [execute](#execute) - - [windows_execute](#windows_execute) - - [Statefile](#statefile) - - [read](#read) - - [get](#get) - - [write](#write) - - [HTTP](#http) - - [connect](#connect) - - [DBI](#dbi) - - [connect](#connect-1) - - [query](#query) - - [fetchrow_array](#fetchrow_array) - - [fetchall_arrayref](#fetchall_arrayref) - - [fetchrow_hashref](#fetchrow_hashref) - - [Complete examples](#complete-examples) - - [Simple SNMP request](#simple-snmp-request) - - [Plugin file](#plugin-file) - - [Mode file](#mode-file) - - [Command line](#command-line) - - [Code Style Guidelines](#code-style-guidelines) - - [Indentation](#indentation) - - [Comments](#comments) - - [Subroutine & Variable Names](#subroutine--variable-names) - - [Curly Brackets, Parenthesis](#curly-brackets-parenthesis) - - [If/Else Statements](#ifelse-statements) - - [Model Classes Usage](#model-classes-usage) - - [Class counter](#class-counter) - - [When to use it ?](#when-to-use-it-) - - [Class methods](#class-methods) - - [Examples](#examples) - - [Example 1](#example-1) - - [Example 2](#example-2) - - [Example 3](#example-3) - - [Class hardware](#class-hardware) - -## Quick Start - ---- - -### Directory creation - ---- - -First of all, you need to create a directory on the git to store the new plugin. - -Root directories are organized by section: - -* Application : apps -* Database : database -* Hardware : hardware -* network equipment : network -* Operating System : os -* Storage equipment : storage - -According to the monitored object, it exists an organization which can use: - -* Type -* Constructor -* Model -* Monitoring Protocol - -For example, if you want to add a plugin to monitor Linux by SNMP, you need to create this directory: - -```shell - - $ mkdir -p os/linux/snmp - -``` - -You also need to create a "mode" directory for futures modes: - -```shell - - $ mkdir os/linux/snmp/mode - -``` - -### Plugin creation - -Once the directory is created, create the plugin file inside it: - -```shell - - $ touch plugin.pm - -``` - -Then, edit plugin.pm to add **license terms** by copying it from an other plugin. Don't forget to put your name at the end of it: - -```perl - - # ... - # Authors : <> - -``` - -Next, describe your **package** name : it matches your plugin directory. - -```perl - - package path::to::plugin; - -``` - -Declare used libraries (**strict** and **warnings** are mandatory). Centreon libraries are described later: - -```perl - - use strict; - use warnings; - use base qw(**centreon_library**); - -``` - -The plugin need a **new** constructor to instantiate the object: - -```perl - - sub new { - my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); - bless $self, $class; - - ... - - return $self; - } - -``` - -Plugin version must be declared in the **new** constructor: - -```perl - - $self->{version} = '0.1'; - -``` - -Several modes can be declared in the **new** constructor: - -```perl - - $self->{modes} = { - 'mode1' => '::mode::mode1', - 'mode2' => '::mode::mode2', - ... - }; - -``` - -Then, declare the module: - -```perl - - 1; - -``` - -A description of the plugin is needed to generate the documentation: - -```perl - - __END__ - - =head1 PLUGIN DESCRIPTION - - . - - =cut - -``` - -> **TIP**: You can copy-paste an other plugin.pm and adapt some lines (package, arguments...). - -> **TIP**: The plugin has ".pm" extension because it's a Perl module. So don't forget to add **1;** at the end of the file. - -## Mode creation - ---- - -Once **plugin.pm** is created and modes are declared in it, create modes in the **mode** directory: - -```shell - - cd mode - touch mode1.pm - -``` - -Then, edit mode1.pm to add **license terms** by copying it from an other mode. Don't forget to put your name at the end of it: - -```perl - - # ... - # Authors : <> - -``` - -Next, describe your **package** name: it matches your mode directory. - -```perl - - package path::to::plugin::mode::mode1; - -``` - -Declare used libraries (always the same): - -```perl - - use strict; - use warnings; - use base qw(centreon::plugins::mode); - -``` - -The mode needs a **new** constructor to instantiate the object: - -```perl - - sub new { - my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); - bless $self, $class; - - ... - - return $self; - } - -``` - -Mode version must be declared in the **new** constructor: - -```perl - - $self->{version} = '1.0'; - -``` - -Several options can be declared in the **new** constructor: - -```perl - - $options{options}->add_options(arguments => { - "option1:s" => { name => 'option1' }, - "option2:s" => { name => 'option2', default => 'value1' }, - "option3" => { name => 'option3' }, - }); - -``` - -Here is the description of arguments used in this example: - -* option1 : String value -* option2 : String value with default value "value1" -* option3 : Boolean value - -> **TIP** : You can have more informations about options format here: http://perldoc.perl.org/Getopt/Long.html - -The mode need a **check_options** method to validate options: - -```perl - - sub check_options { - my ($self, %options) = @_; - $self->SUPER::init(%options); - ... - } - -``` - -For example, Warning and Critical thresholds must be validate in **check_options** method: - -```perl - - if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'."); - $self->{output}->option_exit(); - } - if (($self->{perfdata}->threshold_validate(label => 'critical', value => $self->{option_results}->{critical})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong critical threshold '" . $self->{option_results}->{critical} . "'."); - $self->{output}->option_exit(); - } - -``` - -In this example, help is printed if thresholds do not have a correct format. - -Then comes the **run** method, where you perform measurement, check thresholds, display output and format performance datas. - -This is an example to check a SNMP value: - -```perl - - sub run { - my ($self, %options) = @_; - $self->{snmp} = $options{snmp}; - $self->{hostname} = $self->{snmp}->get_hostname(); - - my $result = $self->{snmp}->get_leef(oids => [$self->{option_results}->{oid}], nothing_quit => 1); - my $value = $result->{$self->{option_results}->{oid}}; - - my $exit = $self->{perfdata}->threshold_check(value => $value, - threshold => [ { label => 'critical', 'exit_litteral' => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]); - $self->{output}->output_add(severity => $exit, - short_msg => sprintf("SNMP Value is %s.", $value)); - - $self->{output}->perfdata_add(label => 'value', unit => undef, - value => $value, - warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning'), - critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical'), - min => undef, max => undef); - - $self->{output}->display(); - $self->{output}->exit(); - } - -``` - -In this example, we check a SNMP OID that we compare to warning and critical thresholds. -There are the methods which we use: - -* get_leef : get a SNMP value from an OID -* threshold_check : compare SNMP value to warning and critical thresholds -* output_add : add output -* perfdata_add : add perfdata to output -* display : display output -* exit : exit - -Then, declare the module: - -```perl - - 1; - -``` - -A description of the mode and its arguments is needed to generate the documentation: - -```perl - - __END__ - - =head1 PLUGIN DESCRIPTION - - . - - =cut - -``` - -## Commit and push - ---- - -Before committing the plugin, you need to create an **enhancement ticket** on the centreon-plugins forge : http://forge.centreon.com/projects/centreon-plugins - -Once plugin and modes are developed, you can commit (commit messages in english) and push your work: - -```shell - - git add path/to/plugin - git commit -m "Add new plugin for XXXX refs #" - git push - -``` - -## Libraries reference - ---- - -This chapter describes Centreon libraries which you can use in your development. - -### Output - ---- - -This library allows you to build output of your plugin. - -#### output_add - - -**Description** - -Add string to output (print it with **display** method). -If status is different than 'ok', output associated with 'ok' status is not printed. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|-------------------------------------------- -severity | String | OK | Status of the output. -separator | String | \- | Separator between status and output string. -short_msg | String | | Short output (first line). -long_msg | String | | Long output (used with --verbose option). - -**Example** - -This is an example of how to manage output: - -```perl - - $self->{output}->output_add(severity => 'OK', - short_msg => 'All is ok'); - $self->{output}->output_add(severity => 'Critical', - short_msg => 'There is a critical problem'); - $self->{output}->output_add(long_msg => 'Port 1 is disconnected'); - - $self->{output}->display(); - -``` - -Output displays : - -``` - - CRITICAL - There is a critical problem - Port 1 is disconnected - -``` -#### perfdata_add - -**Description** - -Add performance data to output (print it with **display** method). -Performance data are displayed after '|'. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|--------------------------------------- -label | String | | Label of the performance data. -value | Int | | Value of the performance data. -unit | String | | Unit of the performance data. -warning | String | | Warning threshold. -critical | String | | Critical threshold. -min | Int | | Minimum value of the performance data. -max | Int | | Maximum value of the performance data. - -**Example** - -This is an example of how to add performance data: - -```perl - - $self->{output}->output_add(severity => 'OK', - short_msg => 'Memory is ok'); - $self->{output}->perfdata_add(label => 'memory_used', - value => 30000000, - unit => 'B', - warning => '80000000', - critical => '90000000', - min => 0, - max => 100000000); - - $self->{output}->display(); - -``` - -Output displays : - -``` - - OK - Memory is ok | 'memory_used'=30000000B;80000000;90000000;0;100000000 - -``` - -### Perfdata - ---- - -This library allows you to manage performance data. - -#### get_perfdata_for_output - -**Description** - -Manage thresholds of performance data for output. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------------|---------|---------------------------------------------------------- -**label** | String | | Threshold label. -total | Int | | Percent threshold to transform in global. -cast_int | Int (0 or 1) | | Cast absolute to int. -op | String | | Operator to apply to start/end value (uses with 'value'). -value | Int | | Value to apply with 'op' option. - -**Example** - -This is an example of how to manage performance data for output: - -```perl - - my $format_warning_perfdata = $self->{perfdata}->get_perfdata_for_output(label => 'warning', total => 1000000000, cast_int => 1); - my $format_critical_perfdata = $self->{perfdata}->get_perfdata_for_output(label => 'critical', total => 1000000000, cast_int => 1); - - $self->{output}->perfdata_add(label => 'memory_used', - value => 30000000, - unit => 'B', - warning => $format_warning_perfdata, - critical => $format_critical_perfdata, - min => 0, - max => 1000000000); - -``` - -> **TIP** : In this example, instead of print warning and critical thresholds in 'percent', the function calculates and prints these in 'bytes'. - -#### threshold_validate - -**Description** - -Validate and affect threshold to a label. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|----------------- -label | String | | Threshold label. -value | String | | Threshold value. - -**Example** - -This example checks if warning threshold is correct: - -```perl - - if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'."); - $self->{output}->option_exit(); - } - -``` - -> **TIP** : You can see the correct threshold format here: https://nagios-plugins.org/doc/guidelines.html#THRESHOLDFORMAT - -#### threshold_check - -**Description** - -Check performance data value with threshold to determine status. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------------|---------|------------------------------------------------------- -value | Int | | Performance data value to compare. -threshold | String array | | Threshold label to compare and exit status if reached. - -**Example** - -This example checks if performance data reached thresholds: - -```perl - - $self->{perfdata}->threshold_validate(label => 'warning', value => 80); - $self->{perfdata}->threshold_validate(label => 'critical', value => 90); - my $prct_used = 85; - - my $exit = $self->{perfdata}->threshold_check(value => $prct_used, threshold => [ { label => 'critical', 'exit_litteral' => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]); - - $self->{output}->output_add(severity => $exit, - short_msg => sprint("Used memory is %i%%", $prct_used)); - $self->{output}->display(); - -``` - -Output displays : - -``` - - WARNING - Used memory is 85% | - -``` - -#### change_bytes - -**Description** - -Convert bytes to human readable unit. -Return value and unit. - -**Parameters** - -Parameter | Type | Default | Description -----------|------|---------|----------------------------------- -value | Int | | Performance data value to convert. -network | | 1024 | Unit to divide (1000 if defined). - -**Example** - -This example change bytes to human readable unit: - -```perl - - my ($value, $unit) = $self->{perfdata}->change_bytes(value => 100000); - - print $value.' '.$unit."\n"; - -``` - -Output displays : - -``` - - 100 KB - -``` - -### Snmp - ---- - -This library allows you to use SNMP protocol in your plugin. -To use it, add the following line at the beginning of your **plugin.pm**: - -```perl - - use base qw(centreon::plugins::script_snmp); - -``` - -#### get_leef - -**Description** - -Return hash table table of SNMP values for multiple OIDs (do not work with SNMP table). - -**Parameters** - -Parameter | Type | Default | Description --------------|--------------|---------|------------------------------------------------------ -**oids** | String array | | Array of OIDs to check (Can be set by 'load' method). -dont_quit | Int (0 or 1) | 0 | Don't quit even if an snmp error occured. -nothing_quit | Int (0 or 1) | 0 | Quit if no value is returned. - -**Example** - -This is an example of how to get 2 SNMP values: - -```perl - - my $oid_hrSystemUptime = '.1.3.6.1.2.1.25.1.1.0'; - my $oid_sysUpTime = '.1.3.6.1.2.1.1.3.0'; - - my $result = $self->{snmp}->get_leef(oids => [ $oid_hrSystemUptime, $oid_sysUpTime ], nothing_quit => 1); - - print $result->{$oid_hrSystemUptime}."\n"; - print $result->{$oid_sysUpTime}."\n"; - -``` -#### load - -**Description** - -Load a range of OIDs to use with **get_leef** method. - -**Parameters** - -Parameter | Type | Default | Description -----------------|--------------|---------|--------------------------------------------------------------- -**oids** | String array | | Array of OIDs to check. -instances | Int array | | Array of OID instances to check. -instance_regexp | String | | Regular expression to get instances from **instances** option. -begin | Int | | Instance to begin -end | Int | | Instance to end - -**Example** - -This is an example of how to get 4 instances of a SNMP table by using **load** method: - -```perl - - my $oid_dskPath = '.1.3.6.1.4.1.2021.9.1.2'; - - $self->{snmp}->load(oids => [$oid_dskPercentNode], instances => [1,2,3,4]); - - my $result = $self->{snmp}->get_leef(nothing_quit => 1); - - use Data::Dumper; - print Dumper($result); - -``` - -This is an example of how to get multiple instances dynamically (memory modules of Dell hardware) by using **load** method: - -```perl - - my $oid_memoryDeviceStatus = '.1.3.6.1.4.1.674.10892.1.1100.50.1.5'; - my $oid_memoryDeviceLocationName = '.1.3.6.1.4.1.674.10892.1.1100.50.1.8'; - my $oid_memoryDeviceSize = '.1.3.6.1.4.1.674.10892.1.1100.50.1.14'; - my $oid_memoryDeviceFailureModes = '.1.3.6.1.4.1.674.10892.1.1100.50.1.20'; - - my $result = $self->{snmp}->get_table(oid => $oid_memoryDeviceStatus); - $self->{snmp}->load(oids => [$oid_memoryDeviceLocationName, $oid_memoryDeviceSize, $oid_memoryDeviceFailureModes], - instances => [keys %$result], - instance_regexp => '(\d+\.\d+)$'); - - my $result2 = $self->{snmp}->get_leef(); - - use Data::Dumper; - print Dumper($result2); - -``` -#### get_table - -**Description** - -Return hash table of SNMP values for SNMP table. - -**Parameters** - -Parameter | Type | Default | Description --------------|--------------|---------|-------------------------------------------------------- -**oid** | String | | OID of the snmp table to check. -start | Int | | First OID to check. -end | Int | | Last OID to check. -dont_quit | Int (0 or 1) | 0 | Don't quit even if an SNMP error occured. -nothing_quit | Int (0 or 1) | 0 | Quit if no value is returned. -return_type | Int (0 or 1) | 0 | Return a hash table with one level instead of multiple. - -**Example** - -This is an example of how to get a SNMP table: - -```perl - - my $oid_rcDeviceError = '.1.3.6.1.4.1.15004.4.2.1'; - my $oid_rcDeviceErrWatchdogReset = '.1.3.6.1.4.1.15004.4.2.1.2.0'; - - my $results = $self->{snmp}->get_table(oid => $oid_rcDeviceError, start => $oid_rcDeviceErrWatchdogReset); - - use Data::Dumper; - print Dumper($results); - -``` - -#### get_multiple_table - -**Description** - - -Return hash table of SNMP values for multiple SNMP tables. - -**Parameters** - -Parameter | Type | Default | Description --------------|--------------|---------|----------------------------------------------------------- -**oids** | Hash table | | Hash table of OIDs to check (Can be set by 'load' method). - | | | Keys can be: "oid", "start", "end". -dont_quit | Int (0 or 1) | 0 | Don't quit even if an SNMP error occured. -nothing_quit | Int (0 or 1) | 0 | Quit if no value is returned. -return_type | Int (0 or 1) | 0 | Return a hash table with one level instead of multiple. - -**Example** - -This is an example of how to get 2 SNMP tables: - -```perl - - my $oid_sysDescr = ".1.3.6.1.2.1.1.1"; - my $aix_swap_pool = ".1.3.6.1.4.1.2.6.191.2.4.2.1"; - - my $results = $self->{snmp}->get_multiple_table(oids => [ - { oid => $aix_swap_pool, start => 1 }, - { oid => $oid_sysDescr }, - ]); - - use Data::Dumper; - print Dumper($results); - -``` - -#### get_hostname - -**Description** - -Get hostname parameter (useful to get hostname in mode). - -**Parameters** - -None. - -**Example** - -This is an example of how to get hostname parameter: - -```perl - - my $hostname = $self->{snmp}->get_hostname(); - -``` - -#### get_port - -**Description** - -Get port parameter (useful to get port in mode). - -**Parameters** - -None. - -**Example** - -This is an example of how to get port parameter: - -```perl - - my $port = $self->{snmp}->get_port(); - -``` - -#### oid_lex_sort - -**Description** - -Return sorted OIDs. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------------|---------|----------------------- -**-** | String array | | Array of OIDs to sort. - -**Example** - -This example prints sorted OIDs: - -```perl - - foreach my $oid ($self->{snmp}->oid_lex_sort(keys %{$self->{results}->{$my_oid}})) { - print $oid; - } - -``` - -### Misc - ---- - -This library provides a set of miscellaneous methods. -To use it, you can directly use the path of the method: - -```perl - - centreon::plugins::misc::; - -``` - -#### trim - -**Description** - -Strip whitespace from the beginning and end of a string. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|----------------- -**-** | String | | String to strip. - -**Example** - -This is an example of how to use **trim** method: - -```perl - - my $word = ' Hello world ! '; - my $trim_word = centreon::plugins::misc::trim($word); - - print $word."\n"; - print $trim_word."\n"; - -``` - -Output displays : -``` - - Hello world ! - -``` - -#### change_seconds - -**Description** - -Convert seconds to human readable text. - -**Parameters** - -Parameter | Type | Default | Description -----------|------|---------|------------------------------ -**-** | Int | | Number of seconds to convert. - -**Example** - -This is an example of how to use **change_seconds** method: - -```perl - - my $seconds = 3750; - my $human_readable_time = centreon::plugins::misc::change_seconds($seconds); - - print 'Human readable time : '.$human_readable_time."\n"; - -``` - -Output displays : -``` - - Human readable time : 1h 2m 30s - -``` - -#### backtick - -**Description** - -Execute system command. - -**Parameters** - -Parameter | Type | Default | Description -----------------|--------------|---------|---------------------------------------- -**command** | String | | Command to execute. -arguments | String array | | Command arguments. -timeout | Int | 30 | Command timeout. -wait_exit | Int (0 or 1) | 0 | Command process ignore SIGCHLD signals. -redirect_stderr | Int (0 or 1) | 0 | Print errors in output. - -**Example** - -This is an example of how to use **backtick** method: - -```perl - - my ($error, $stdout, $exit_code) = centreon::plugins::misc::backtick( - command => 'ls /home', - timeout => 5, - wait_exit => 1 - ); - - print $stdout."\n"; - -``` - -Output displays files in '/home' directory. - -#### execute - -**Description** - -Execute command remotely. - -**Parameters** - -Parameter | Type | Default | Description -----------------|--------|---------|---------------------------------------------------------------- -**output** | Object | | Plugin output ($self->{output}). -**options** | Object | | Plugin options ($self->{option_results}) to get remote options. -sudo | String | | Use sudo command. -**command** | String | | Command to execute. -command_path | String | | Command path. -command_options | String | | Command arguments. - -**Example** - -This is an example of how to use **execute** method. -We suppose ``--remote`` option is enabled: - -```perl - - my $stdout = centreon::plugins::misc::execute(output => $self->{output}, - options => $self->{option_results}, - sudo => 1, - command => 'ls /home', - command_path => '/bin/', - command_options => '-l'); - -``` -Output displays files in /home using ssh on a remote host. - -#### windows_execute - -**Description** - -Execute command on Windows. - -**Parameters** - -Parameter | Type | Default | Description -----------------|--------|---------|------------------------------------- -**output** | Object | | Plugin output ($self->{output}). -**command** | String | | Command to execute. -command_path | String | | Command path. -command_options | String | | Command arguments. -timeout | Int | | Command timeout. -no_quit | Int | | Don't quit even if an error occured. - -**Example** - -This is an example of how to use **windows_execute** method. - -```perl - - my $stdout = centreon::plugins::misc::windows_execute(output => $self->{output}, - timeout => 10, - command => 'ipconfig', - command_path => '', - command_options => '/all'); - -``` - -Output displays IP configuration on a Windows host. - -### Statefile - ---- - -This library provides a set of methods to use a cache file. -To use it, add the following line at the beginning of your **mode**: - -```perl - - use centreon::plugins::statefile; - -``` - -#### read - -**Description** - -Read cache file. - -**Parameters** - -Parameter | Type | Default | Description -------------------|--------|---------|----------------------------- -**statefile** | String | | Name of the cache file. -**statefile_dir** | String | | Directory of the cache file. -memcached | String | | Memcached server to use. - -**Example** - -This is an example of how to use **read** method: - -```perl - - $self->{statefile_value} = centreon::plugins::statefile->new(%options); - $self->{statefile_value}->check_options(%options); - $self->{statefile_value}->read(statefile => 'my_cache_file', - statefile_dir => '/var/lib/centreon/centplugins' - ); - - use Data::Dumper; - print Dumper($self->{statefile_value}); - -``` - -Output displays cache file and its parameters. - -#### get - -**Description** - -Get data from cache file. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|----------------------------- -name | String | | Get a value from cache file. - -**Example** - -This is an example of how to use **get** method: - -```perl - - $self->{statefile_value} = centreon::plugins::statefile->new(%options); - $self->{statefile_value}->check_options(%options); - $self->{statefile_value}->read(statefile => 'my_cache_file', - statefile_dir => '/var/lib/centreon/centplugins' - ); - - my $value = $self->{statefile_value}->get(name => 'property1'); - print $value."\n"; - -``` - -Output displays value for 'property1' of the cache file. - -#### write - -**Description** - -Write data to cache file. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|----------------------------- -data | String | | Data to write in cache file. - -**Example** - -This is an example of how to use **write** method: - -```perl - - $self->{statefile_value} = centreon::plugins::statefile->new(%options); - $self->{statefile_value}->check_options(%options); - $self->{statefile_value}->read(statefile => 'my_cache_file', - statefile_dir => '/var/lib/centreon/centplugins' - ); - - my $new_datas = {}; - $new_datas->{last_timestamp} = time(); - $self->{statefile_value}->write(data => $new_datas); - -``` - -Then, you can read the result in '/var/lib/centreon/centplugins/my_cache_file', timestamp is written in it. - -### HTTP - ---- - -This library provides a set of methodss to use HTTP protocol. -To use it, add the following line at the beginning of your **mode**: - -```perl - - use centreon::plugins::http; - -``` - -Some options must be set in **plugin.pm**: - - Option | Type | Description --------------|--------|-------------------------------------------------------- -**hostname** | String | IP Addr/FQDN of the webserver host. -**port** | String | HTTP port. -**proto** | String | Used protocol ('http' or 'https'). -credentials | | Use credentials. -ntlm | | Use NTLM authentication (if ``--credentials`` is used). -username | String | Username (if ``--credentials`` is used). -password | String | User password (if ``--credentials`` is used). -proxyurl | String | Proxy to use. -url_path | String | URL to connect (start to '/'). - -#### connect - -**Description** - -Test a connection to an HTTP url. -Return content of the webpage. - -**Parameters** - -This method use plugin options previously defined. - -**Example** - -This is an example of how to use **connect** method. - -We suppose these options are defined : -* --hostname = 'google.com' -* --urlpath = '/' -* --proto = 'http' -* --port = 80 - -```perl - - $self->{http} = centreon::plugins::http->new(output => $self->{output}, options => $self->{options}); - $self->{http}->set_options(%{$self->{option_results}}); - my $webcontent = $self->{http}->request(); - print $webcontent; - -``` - -Output displays content of the webpage '\http://google.com/'. - -### DBI - ---- - -This library allows you to connect to databases. -To use it, add the following line at the beginning of your **plugin.pm**: - -```perl - - use base qw(centreon::plugins::script_sql); - -``` - -#### connect - -**Description** - -Connect to databases. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------------|---------|----------------------------------- -dontquit | Int (0 or 1) | 0 | Don't quit even if errors occured. - -**Example** - - -This is an example of how to use **connect** method. - -The format of the connection string can have the following forms: - -``` - DriverName:database_name - DriverName:database_name@hostname:port - DriverName:database=database_name;host=hostname;port=port -``` - -In plugin.pm: - -```perl - - $self->{sqldefault}->{dbi} = (); - $self->{sqldefault}->{dbi} = { data_source => 'mysql:host=127.0.0.1;port=3306' }; - -``` - -In your mode: - -```perl - - $self->{sql} = $options{sql}; - my ($exit, $msg_error) = $self->{sql}->connect(dontquit => 1); - -``` - -Then, you are connected to the MySQL database. - -#### query - -**Description** - -Send query to database. - -**Parameters** - -Parameter | Type | Default | Description -----------|--------|---------|------------------- -query | String | | SQL query to send. - -**Example** - -This is an example of how to use **query** method: - -```perl - - $self->{sql}->query(query => q{SHOW /*!50000 global */ STATUS LIKE 'Slow_queries'}); - my ($name, $result) = $self->{sql}->fetchrow_array(); - - print 'Name : '.$name."\n"; - print 'Value : '.$value."\n"; - -``` - -Output displays count of MySQL slow queries. - -#### fetchrow_array - -**Description** - -Return Array from sql query. - -**Parameters** - -None. - -**Example** - -This is an example of how to use **fetchrow_array** method: - -```perl - - $self->{sql}->query(query => q{SHOW /*!50000 global */ STATUS LIKE 'Uptime'}); - my ($dummy, $result) = $self->{sql}->fetchrow_array(); - - print 'Uptime : '.$result."\n"; - -``` - -Output displays MySQL uptime. - -#### fetchall_arrayref - -**Description** - -Return Array from SQL query. - -**Parameters** - -None. - -**Example** - -This is an example of how to use **fetchrow_array** method: - -```perl - - $self->{sql}->query(query => q{ - SELECT SUM(DECODE(name, 'physical reads', value, 0)), - SUM(DECODE(name, 'physical reads direct', value, 0)), - SUM(DECODE(name, 'physical reads direct (lob)', value, 0)), - SUM(DECODE(name, 'session logical reads', value, 0)) - FROM sys.v_$sysstat - }); - my $result = $self->{sql}->fetchall_arrayref(); - - my $physical_reads = @$result[0]->[0]; - my $physical_reads_direct = @$result[0]->[1]; - my $physical_reads_direct_lob = @$result[0]->[2]; - my $session_logical_reads = @$result[0]->[3]; - - print $physical_reads."\n"; - -``` - -Output displays physical reads on Oracle database. - -#### fetchrow_hashref - -**Description** - -Return Hash table from SQL query. - -**Parameters** - -None. - -**Example** - -This is an example of how to use **fetchrow_hashref** method: - -```perl - - $self->{sql}->query(query => q{ - SELECT datname FROM pg_database - }); - - while ((my $row = $self->{sql}->fetchrow_hashref())) { - print $row->{datname}."\n"; - } - -``` - -Output displays Postgres databases. - -## Complete examples - ---- - -### Simple SNMP request - ---- - -**Description** - - -This example explains how to check a single SNMP value on a PfSense firewall (memory dropped packets). -We use cache file because it's a SNMP counter. So we need to get the value between 2 checks. -We get the value and compare it to warning and critical thresholds. - -#### Plugin file - - -First, create the plugin directory and the plugin file: - -``` - - $ mkdir -p apps/pfsense/snmp - $ touch apps/pfsense/snmp/plugin.pm - -``` - -> **TIP** : PfSense is a firewall application and we check it using SNMP protocol - -Then, edit **plugin.pm** and add the following lines: - -```perl - - # - # Copyright 2018 Centreon (http://www.centreon.com/) - # - # Centreon is a full-fledged industry-strength solution that meets - # the needs in IT infrastructure and application monitoring for - # service performance. - # - # 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. - # - - # Path to the plugin - package apps::pfsense::snmp::plugin; - - # Needed libraries - use strict; - use warnings; - # Use this library to check using SNMP protocol - use base qw(centreon::plugins::script_snmp); - -``` - -> **TIP** : Don't forget to edit 'Authors' line. - -Add **new** method to instantiate the plugin: - -```perl - - sub new { - my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); - bless $self, $class; - # $options->{options} = options object - - # Plugin version - $self->{version} = '0.1'; - - # Modes association - %{$self->{modes}} = ( - # Mode name => path to the mode - 'memory-dropped-packets' => 'apps::pfsense::snmp::mode::memorydroppedpackets', - ); - - return $self; - } - -``` - -Declare this plugin as a perl module: - -```perl - - 1; - -``` - -Add a description to the plugin: - -```perl - - __END__ - - =head1 PLUGIN DESCRIPTION - - Check pfSense in SNMP. - - =cut - -``` - -> **TIP** : This description is printed with '--help' option. - - -#### Mode file - -Then, create the mode directory and the mode file: - -```shell - - $ mkdir apps/pfsense/snmp/mode - $ touch apps/pfsense/snmp/mode/memorydroppedpackets.pm - -``` - -Edit **memorydroppedpackets.pm** and add the following lines: - -```perl - - # - # Copyright 2018 Centreon (http://www.centreon.com/) - # - # Centreon is a full-fledged industry-strength solution that meets - # the needs in IT infrastructure and application monitoring for - # service performance. - # - # 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. - # - - # Path to the plugin - package apps::pfsense::snmp::mode::memorydroppedpackets; - - # Needed library for modes - use base qw(centreon::plugins::mode); - - # Needed libraries - use strict; - use warnings; - - # Custom library - use POSIX; - - # Needed library to use cache file - use centreon::plugins::statefile; - -``` - -Add **new** method to instantiate the mode: - -```perl - - sub new { - my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); - bless $self, $class; - - # Mode version - $self->{version} = '1.0'; - - # Declare options - $options{options}->add_options(arguments => - { - # option name => variable name - "warning:s" => { name => 'warning', }, - "critical:s" => { name => 'critical', }, - }); - - # Instantiate cache file - $self->{statefile_value} = centreon::plugins::statefile->new(%options); - return $self; - } - -``` - -> **TIP** : A default value can be added to options. - Example : "warning:s" => { name => 'warning', default => '80'}, - -Add **check_options** method to validate options: - -```perl - - sub check_options { - my ($self, %options) = @_; - $self->SUPER::init(%options); - - # Validate threshold options with threshold_validate method - if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'."); - $self->{output}->option_exit(); - } - if (($self->{perfdata}->threshold_validate(label => 'critical', value => $self->{option_results}->{critical})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong critical threshold '" . $self->{option_results}->{critical} . "'."); - $self->{output}->option_exit(); - } - - # Validate cache file options using check_options method of statefile library - $self->{statefile_value}->check_options(%options); - } - -``` - -Add **run** method to execute mode: - -```perl - - sub run { - my ($self, %options) = @_; - # $options{snmp} = snmp object - - # Get SNMP options - $self->{snmp} = $options{snmp}; - $self->{hostname} = $self->{snmp}->get_hostname(); - $self->{snmp_port} = $self->{snmp}->get_port(); - - # SNMP oid to request - my $oid_pfsenseMemDropPackets = '.1.3.6.1.4.1.12325.1.200.1.2.6.0'; - my ($result, $value); - - # Get SNMP value for oid previsouly defined - $result = $self->{snmp}->get_leef(oids => [ $oid_pfsenseMemDropPackets ], nothing_quit => 1); - # $result is a hash table where keys are oids - $value = $result->{$oid_pfsenseMemDropPackets}; - - # Read the cache file - $self->{statefile_value}->read(statefile => 'pfsense_' . $self->{hostname} . '_' . $self->{snmp_port} . '_' . $self->{mode}); - # Get cache file values - my $old_timestamp = $self->{statefile_value}->get(name => 'last_timestamp'); - my $old_memDropPackets = $self->{statefile_value}->get(name => 'memDropPackets'); - - # Create a hash table with new values that will be write to cache file - my $new_datas = {}; - $new_datas->{last_timestamp} = time(); - $new_datas->{memDropPackets} = $value; - - # Write new values to cache file - $self->{statefile_value}->write(data => $new_datas); - - # If cache file didn't have any values, create it and wait another check to calculate value - if (!defined($old_timestamp) || !defined($old_memDropPackets)) { - $self->{output}->output_add(severity => 'OK', - short_msg => "Buffer creation..."); - $self->{output}->display(); - $self->{output}->exit(); - } - - # Fix when PfSense reboot (snmp counters initialize to 0) - $old_memDropPackets = 0 if ($old_memDropPackets > $new_datas->{memDropPackets}); - - # Calculate time between 2 checks - my $delta_time = $new_datas->{last_timestamp} - $old_timestamp; - $delta_time = 1 if ($delta_time == 0); - - # Calculate value per second - my $memDropPacketsPerSec = ($new_datas->{memDropPackets} - $old_memDropPackets) / $delta_time; - - # Calculate exit code by comparing value to thresholds - # Exit code can be : 'OK', 'WARNING', 'CRITICAL', 'UNKNOWN' - my $exit_code = $self->{perfdata}->threshold_check(value => $memDropPacketsPerSec, - threshold => [ { label => 'critical', 'exit_litteral' => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]); - - # Add a performance data - $self->{output}->perfdata_add(label => 'dropped_packets_Per_Sec', - value => sprintf("%.2f", $memDropPacketsPerSec), - warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning'), - critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical'), - min => 0); - - # Add output - $self->{output}->output_add(severity => $exit_code, - short_msg => sprintf("Dropped packets due to memory limitations : %.2f /s", - $memDropPacketsPerSec)); - - # Display output - $self->{output}->display(); - $self->{output}->exit(); - } - -``` - -Declare this plugin as a perl module: - -```perl - - 1; - -``` - -Add a description of the mode options: - -```perl - - __END__ - - =head1 MODE - - Check number of packets per second dropped due to memory limitations. - - =over 8 - - =item B<--warning> - - Warning threshold for dropped packets in packets per second. - - =item B<--critical> - - Critical threshold for dropped packets in packets per second. - - =back - - =cut - -``` - -#### Command line - -This is an example of command line: - -``` - - $ perl centreon_plugins.pl --plugin apps::pfsense::snmp::plugin --mode memory-dropped-packets --hostname 192.168.0.1 --snmp-community 'public' --snmp-version '2c' --warning '1' --critical '2' - -``` - -Output may display: - -``` - - OK: Dropped packets due to memory limitations : 0.00 /s | dropped_packets_Per_Sec=0.00;0;;1;2 - -``` - -## Code Style Guidelines - ---- - -**Introduction** - -Perl code from Pull-request must conform to the following style guidelines. If you find any code which doesn't conform, please fix it. - -### Indentation - - -Space should be used to indent all code blocks. Tabs should never be used to indent code blocks. Mixing tabs and spaces results in misaligned code blocks for other developers who prefer different indentation settings. -Please use 4 for indentation space width. - -```perl - - if ($1 > 1) { - ....return 1; - } else { - if ($i == -1) { - ....return 0; - } - return -1 - } - -``` - -### Comments - -There should always be at least 1 space between the # character and the beginning of the comment. This makes it a little easier to read multi-line comments: - -```perl - - # Good comment - #Wrong comment - -``` - -### Subroutine & Variable Names - -Whenever possible, use underscore to seperator words and don't use uppercase characters: - -```perl - - sub get_logs {} - my $start_time; - -``` - -Keys of hash table should be used alphanumeric and underscore characters only (and no quote!): - -```perl - - $dogs->{meapolitan_mastiff} = 10; - -``` - -### Curly Brackets, Parenthesis - -There should be a space between every control/loop keyword and the opening parenthesis: - -```perl - - if ($i == 1) { - ... - } - while ($i == 2) { - ... - } - -``` - -### If/Else Statements - -'else', 'elsif' should be on the same line after the previous closing curly brace: - -```perl - - if ($i == 1) { - ... - } else { - ... - } - -``` - -You can use single line if conditional: - -```perl - - next if ($i == 1); - -``` - -## Model Classes Usage - ---- -**Introduction** - -With the experience of plugin development, we have created two classes: - -* centreon::plugins::templates::counter -* centreon::plugins::templates::hardware - -It was developed to have a more consistent code and less redundant code. According to context, you should use one of two classes for modes. -Following classes can be used for whatever plugin type (SNMP, Custom, DBI,...). - -### Class counter - -#### When to use it ? - -If you have some counters (CPU Usage, Memory, Session...), you should use that class. -If you have only one global counter to check, it's maybe not useful to use it (but only for these case). - -#### Class methods - -List of methods: - -* **new**: class constructor. Overload if you need to add some specific options or to use a statefile. -* **check_options**: overload if you need to check your specific options. -* **manage_selection**: overload if *mandatory*. Method to get informations for the equipment. -* **set_counters**: overload if **mandatory**. Method to configure counters. - -## Examples - ---- - -### Example 1 - - -We want to develop the following SNMP plugin: - -* measure the current sessions and current SSL sessions usages. - -```perl - - package my::module::name; - - use base qw(centreon::plugins::templates::counter); - - use strict; - use warnings; - - sub set_counters { - my ($self, %options) = @_; - - $self->{maps_counters_type} = [ - { name => 'global', type => 0, message_separator => ' - ' }, - ]; - $self->{maps_counters}->{global} = [ - { label => 'sessions', set => { - key_values => [ { name => 'sessions' } ], - output_template => 'Current sessions : %s', - perfdatas => [ - { label => 'sessions', template => '%s', min => 0 }, - ], - } - }, - { label => 'sessions-ssl', set => { - key_values => [ { name => 'sessions_ssl' } ], - output_template => 'Current ssl sessions : %s', - perfdatas => [ - { label => 'sessions_ssl', template => '%s', min => 0 }, - ], - } - }, - ]; - } - - sub manage_selection { - my ($self, %options) = @_; - - # OIDs are fake. Only for the example. - my ($oid_sessions, $oid_sessions_ssl) = ('.1.2.3.4.0', '.1.2.3.5.0'); - - my $result = $options{snmp}->get_leef( - oids => [ $oid_sessions, $oid_sessions_ssl ], - nothing_quit => 1 - ); - $self->{global} = { - sessions => $result->{$oid_sessions}, - sessions_ssl => $result->{$oid_sessions_ssl} - }; - } - -``` - -Output may display: - -``` - - OK: Current sessions : 24 - Current ssl sessions : 150 | sessions=24;;;0; sessions_ssl=150;;;0; - -``` - -As you can see, we create two arrays of hash tables in **set_counters** method. We use arrays to order the output. - -* **maps_counters_type**: global configuration. Attributes list: - - * *name*: the name is really important. It will be used in hash **map_counters** and also in **manage_selection** as you can see. - * *type*: 0 or 1. With 0 value, the output will be written in the short output. With the value 1, it depends if we have one or multiple instances. - * *message_multiple*: only useful with *type* 1 value. The message will be displayed in short ouput if we have multiple instances selected. - * *message_separator*: the string displayed between counters (Default: ', '). - * *cb_prefix_output*, *cb_suffix_output*: name of a method (in a string) to callback. Methods will return a string to be displayed before or after **all** counters. - * *cb_init*: name of a method (in a string) to callback. Method will return 0 or 1. With 1 value, counters are not checked. - -* **maps_counters**: complex structure to configure counters. Attributes list: - - * *label*: name used for threshold options. - * *threshold*: if we set the value to 0. There is no threshold check options (can be used if you want to set and check option yourself). - * *set*: hash table: - - * *keys_values*: array of hashes. Set values used for the counter. Order is important (by default, the first value is used to check). - - * *name*: attribute name. Need to match with attributes in **manage_selection** method! - * *diff*: if we set the value to 1, we'll have the difference between two checks (need a statefile!). - * *per_second*: if we set the value to 1, the *diff* values will be calculated per seconds (need a statefile!). No need to add diff attribute. - - * *output_template*: string to display. '%s' will be replaced by the first value of *keys_values*. - * *output_use*: which value to be used in *output_template* (If not set, we use the first value of *keys_values*). - * *output_change_bytes*: if we set the value to 1 or 2, we can use a second '%s' in *output_template* to display the unit. 1 = divide by 1024 (Bytes), 2 = divide by 1000 (bits). - * *perfdata*: array of hashes. To configure perfdatas - - * *label*: name displayed. - * *value*: value to used. It's the name from *keys_values*. - * *template*: value format (could be for example: '%.3f'). - * *unit*: unit displayed. - * *min*, *max*: min and max displayed. You can use a value from *keys_values*. - * *label_extra_instance*: if we set the value to 1, perhaps we'll have a suffix concat with *label*. - * *instance_use*: which value from *keys_values* to be used. To be used if *label_extra_instance* is 1. - -### Example 2 - -We want to add the current number of sessions by virtual servers. - -```perl - - package my::module::name; - - use base qw(centreon::plugins::templates::counter); - - use strict; - use warnings; - - sub set_counters { - my ($self, %options) = @_; - - $self->{maps_counters_type} = [ - { name => 'global', type => 0, cb_prefix_output => 'prefix_global_output' }, - { name => 'vs', type => 1, cb_prefix_output => 'prefix_vs_output', message_multiple => 'All Virtual servers are ok' } - ]; - $self->{maps_counters}->{global} = [ - { label => 'total-sessions', set => { - key_values => [ { name => 'sessions' } ], - output_template => 'current sessions : %s', - perfdatas => [ - { label => 'total_sessions', template => '%s', min => 0 }, - ], - } - }, - { label => 'total-sessions-ssl', set => { - key_values => [ { name => 'sessions_ssl' } ], - output_template => 'current ssl sessions : %s', - perfdatas => [ - { label => 'total_sessions_ssl', template => '%s', min => 0 }, - ], - } - }, - ]; - - $self->{maps_counters}->{vs} = [ - { label => 'sessions', set => { - key_values => [ { name => 'sessions' }, { name => 'display' } ], - output_template => 'current sessions : %s', - perfdatas => [ - { label => 'sessions', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' }, - ], - } - }, - { label => 'sessions-ssl', set => { - key_values => [ { name => 'sessions_ssl' }, { name => 'display' } ], - output_template => 'current ssl sessions : %s', - perfdatas => [ - { label => 'sessions_ssl', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' }, - ], - } - }, - ]; - } - - sub prefix_vs_output { - my ($self, %options) = @_; - - return "Virtual server '" . $options{instance_value}->{display} . "' "; - } - - sub prefix_global_output { - my ($self, %options) = @_; - - return "Total "; - } - - sub manage_selection { - my ($self, %options) = @_; - - # OIDs are fake. Only for the example. - my ($oid_sessions, $oid_sessions_ssl) = ('.1.2.3.4.0', '.1.2.3.5.0'); - - my $result = $options{snmp}->get_leef(oids => [ $oid_sessions, $oid_sessions_ssl ], - nothing_quit => 1); - $self->{global} = { sessions => $result->{$oid_sessions}, - sessions_ssl => $result->{$oid_sessions_ssl} - }; - my $oid_table_vs = '.1.2.3.10'; - my $mapping = { - vsName => { oid => '.1.2.3.10.1' }, - vsSessions => { oid => '.1.2.3.10.2' }, - vsSessionsSsl => { oid => '.1.2.3.10.3' }, - }; - - $self->{vs} = {}; - $result = $options{snmp}->get_table(oid => $oid_table_vs, - nothing_quit => 1); - foreach my $oid (keys %{$result->{ $oid_table_vs }}) { - next if ($oid !~ /^$mapping->{vsName}->{oid}\.(.*)$/; - my $instance = $1; - my $data = $options{snmp}->map_instance(mapping => $mapping, results => $result->{$oid_table_vs}, instance => $instance); - - $self->{vs}->{$instance} = { display => $data->{vsName}, - sessions => $data->{vsSessions}, sessions_ssl => $data->{vsSessionsSsl}}; - } - } - -``` - -If we have at least 2 virtual servers: - -``` - - OK: Total current sessions : 24, current ssl sessions : 150 - All Virtual servers are ok | total_sessions=24;;;0; total_sessions_ssl=150;;;0; sessions_foo1=11;;;0; sessions_ssl_foo1=70;;;0; sessions_foo2=13;;;0; sessions_ssl_foo2=80;;;0; - Virtual server 'foo1' current sessions : 11, current ssl sessions : 70 - Virtual server 'foo2' current sessions : 13, current ssl sessions : 80 - -``` - -### Example 3 - -The model can also be used to check strings (not only counters). So we want to check the status of a virtualserver. - -```perl - - package my::module::name; - - use base qw(centreon::plugins::templates::counter); - - use strict; - use warnings; - - sub set_counters { - my ($self, %options) = @_; - - $self->{maps_counters_type} = [ - { name => 'vs', type => 1, cb_prefix_output => 'prefix_vs_output', message_multiple => 'All Virtual server status are ok' } - ]; - $self->{maps_counters}->{vs} = [ - { label => 'status', threshold => 0, set => { - key_values => [ { name => 'status' }, { name => 'display' } ], - closure_custom_calc => $self->can('custom_status_calc'), - closure_custom_output => $self->can('custom_status_output'), - closure_custom_perfdata => sub { return 0; }, - closure_custom_threshold_check => $self->can('custom_threshold_output') - } - } - ]; - } - - sub custom_threshold_output { - my ($self, %options) = @_; - my $status = 'ok'; - - if ($self->{result_values}->{status} =~ /problem/) { - $status = 'critical'; - } - return $status; - } - - sub custom_status_output { - my ($self, %options) = @_; - - my $msg = sprintf("status is '%s'", $self->{result_values}->{status}); - return $msg; - } - - sub custom_status_calc { - my ($self, %options) = @_; - - $self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_status'}; - $self->{result_values}->{display} = $options{new_datas}->{$self->{instance} . '_display'}; - return 0; - } - - sub prefix_vs_output { - my ($self, %options) = @_; - - return "Virtual server '" . $options{instance_value}->{display} . "' "; - } - - sub check_options { - my ($self, %options) = @_; - $self->SUPER::check_options(%options); - - } - - sub manage_selection { - my ($self, %options) = @_; - - my $oid_table_vs = '.1.2.3.10'; - my $mapping = { - vsName => { oid => '.1.2.3.10.1' }, - vsStatus => { oid => '.1.2.3.10.4' }, - }; - - $self->{vs} = {}; - my $result = $options{snmp}->get_table(oid => $oid_table_vs, - nothing_quit => 1); - foreach my $oid (keys %{$result->{ $oid_table_vs }}) { - next if ($oid !~ /^$mapping->{vsName}->{oid}\.(.*)$/; - my $instance = $1; - my $data = $options{snmp}->map_instance(mapping => $mapping, results => $result->{$oid_table_vs}, instance => $instance); - - $self->{vs}->{$instance} = { display => $data->{vsName}, - status => $data->{vsStatus} }; - } - } - -``` - -The following example show 4 new attributes: - -* *closure_custom_calc*: should be used to do more complex calculation. -* *closure_custom_output*: should be used to have a more complex output (An example: want to display the total, free and used value at the same time). -* *closure_custom_perfdata*: should be used to manage yourself the perfdata. -* *closure_custom_threshold_check*: should be used to manage yourself the threshold check. - - -## Class hardware - ---- - -TODO +# Plugins / Connectors global documentation + +******* +Table of contents +1. [Basics & main guidelines](plugins_global.md) +2. [Advanced plugins development concepts](plugins_advanced.md) +3. [How to develop a plugin to monitor a REST API](tutorial-api.md) +4. [How to develop a plugin to monitor a device supporting SNMP](tutorial-snmp.md) +5. \[Coming soon\][How to develop a Service Discovery mode](tutorial-service_discovery.md) +******* \ No newline at end of file diff --git a/doc/en/developer/plugins_advanced.md b/doc/en/developer/plugins_advanced.md new file mode 100644 index 000000000..f4dda783e --- /dev/null +++ b/doc/en/developer/plugins_advanced.md @@ -0,0 +1,1277 @@ +# Plugins / Connectors advenced documentation + +## IV. List of shared libraries in centreon directory + +This chapter describes Centreon libraries which you can use in your development. + +
+ +******* +Table of contents +1. [Output](#lib_output) +2. [Perfdata](#lib_perfdata) +3. [SNMP](#lib_snmp) +4. [Misc](#lib_misc) +5. [Statefile](#lib_statefile) +6. [HTTP](#lib_http) +7. [DBI](#lib_dbi) +8. [Model Classes Usage](#model_class_usage) +******* + +
+ +### 1. Output + +This library allows you to build output of your plugin. + +#### 1.1 output_add + +**Description** + +This function adds a string to the output (it is printed when the `display()` method is called). If the status is different from 'ok', the output associated with 'ok' status is not printed. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|---------------------------------------------| +| severity | String | OK | Status of the output. Accepted values: OK, WARNING, CRITICAL, UNKNOWN. | +| separator | String | \- | Separator between status and output string. | +| short_msg | String | | Short output (first line). | +| long_msg | String | | Long output (used with --verbose option). | +| debug | Int | | If set to 1, the message is displayed only when --debug option is passed | + +**Example** + +This is an example of how to manage output: + +```perl +$self->{output}->output_add(severity => 'OK', + short_msg => 'All is ok'); +$self->{output}->output_add(severity => 'Critical', + short_msg => 'There is a critical problem'); +$self->{output}->output_add(long_msg => 'Port 1 is disconnected'); + +$self->{output}->display(); +``` + +The displayed output is: + +``` +CRITICAL - There is a critical problem +Port 1 is disconnected +``` + +#### 1.2 perfdata_add + +**Description** + +Add performance data to output (print it with **display** method). +Performance data are displayed after '|'. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|----------------------------------------| +| label | String | | [legacy] Label of the performance data. | +| nlabel | String | | Label of the performance data in a more standard and explicit fashion. | +| value | Int | | Value of the performance data. | +| unit | String | | Unit of the performance data. | +| warning | String | | Warning threshold. | +| critical | String | | Critical threshold. | +| min | Int | | Minimum value of the performance data. | +| max | Int | | Maximum value of the performance data. | + +**Example** + +This is an example of how to add performance data: + +```perl + +$self->{output}->output_add(severity => 'OK', + short_msg => 'Memory is ok'); +$self->{output}->perfdata_add(label => 'memory_used', + value => 30000000, + unit => 'B', + warning => '80000000', + critical => '90000000', + min => 0, + max => 100000000); + +$self->{output}->display(); +``` +Output displays : + +``` +OK - Memory is ok | 'memory_used'=30000000B;80000000;90000000;0;100000000 +``` + +
+ +### 2. Perfdata + +This library allows you to manage performance data. + +#### 2.1 get_perfdata_for_output + +**Description** +Manage thresholds of performance data for output. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------------|---------|-----------------------------------------------------------| +| **label** | String | | Threshold label. | +| total | Int | | Percent threshold to transform in global. | +| cast_int | Int (0 or 1) | | Cast absolute to int. | +| op | String | | Operator to apply to start/end value (uses with 'value'). | +| value | Int | | Value to apply with 'op' option. | + +**Example** + +This is an example of how to manage performance data for output: + +```perl +my $format_warning_perfdata = $self->{perfdata}->get_perfdata_for_output(label => 'warning', total => 1000000000, cast_int => 1); +my $format_critical_perfdata = $self->{perfdata}->get_perfdata_for_output(label => 'critical', total => 1000000000, cast_int => 1); + +$self->{output}->perfdata_add(label => 'memory_used', + value => 30000000, + unit => 'B', + warning => $format_warning_perfdata, + critical => $format_critical_perfdata, + min => 0, + max => 1000000000); + +``` + +**tip** +In this example, instead of print warning and critical thresholds in 'percent', the function calculates and prints these in 'bytes'. + +#### 2.2 threshold_validate + +**Description** + +Validate and affect threshold to a label. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|------------------| +| label | String | | Threshold label. | +| value | String | | Threshold value. | + +**Example** + +This example checks if warning threshold is correct: + +```perl + +if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) { + $self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'."); + $self->{output}->option_exit(); +} +``` + +**tip** +You can see the correct threshold format here: https://nagios-plugins.org/doc/guidelines.html#THRESHOLDFORMAT + +#### 2.3 threshold_check + +**Description** + +Compare performance data value with threshold to determine status. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------------|---------|--------------------------------------------------------| +| value | Int | | Performance data value to compare. | +| threshold | String array | | Threshold label to compare and exit status if reached. | + +**Example** + +This example checks if performance data reached thresholds: + +```perl +$self->{perfdata}->threshold_validate(label => 'warning', value => 80); +$self->{perfdata}->threshold_validate(label => 'critical', value => 90); +my $prct_used = 85; + +my $exit = $self->{perfdata}->threshold_check(value => $prct_used, threshold => [ { label => 'critical', 'exit_litteral' => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]); + +$self->{output}->output_add(severity => $exit, + short_msg => sprint("Used memory is %i%%", $prct_used)); +$self->{output}->display(); +``` +Output displays : + +``` + WARNING - Used memory is 85% | +``` + +#### 2.4 change_bytes + +**Description** + +Convert bytes to human readable unit. +Return value and unit. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|------|---------|------------------------------------| +| value | Int | | Performance data value to convert. | +| network | | 1024 | Unit to divide (1000 if defined). | + +**Example** + +This example change bytes to human readable unit: + +```perl + +my ($value, $unit) = $self->{perfdata}->change_bytes(value => 100000); + +print $value.' '.$unit."\n"; +``` +Output displays : + +``` + 100 KB +``` + +
+ +### 3. SNMP + +This library allows you to use SNMP protocol in your plugin. +To use it, add the following line at the beginning of your **plugin.pm**: + +```perl +use base qw(centreon::plugins::script_snmp); +``` + +#### 3.1 get_leef + +**Description** + +Return hash table of SNMP values for multiple OIDs (do not work with SNMP table). + +**Parameters** + +**Example** + +This is an example of how to get 2 SNMP values: + +```perl + +my $oid_hrSystemUptime = '.1.3.6.1.2.1.25.1.1.0'; +my $oid_sysUpTime = '.1.3.6.1.2.1.1.3.0'; + +my $result = $self->{snmp}->get_leef(oids => [ $oid_hrSystemUptime, $oid_sysUpTime ], nothing_quit => 1); + +print $result->{$oid_hrSystemUptime}."\n"; +print $result->{$oid_sysUpTime}."\n"; +``` + +#### 3.2 load + +**Description** + +Load a range of OIDs to use with **get_leef** method. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------------|--------------|---------|----------------------------------------------------------------| +| **oids** | String array | | Array of OIDs to check. | +| instances | Int array | | Array of OID instances to check. | +| instance_regexp | String | | Regular expression to get instances from **instances** option. | +| begin | Int | | Instance to begin | +| end | Int | | Instance to end | + +**Example** + +This is an example of how to get 4 instances of a SNMP table by using **load** method: + +```perl +my $oid_dskPath = '.1.3.6.1.4.1.2021.9.1.2'; + +$self->{snmp}->load(oids => [$oid_dskPercentNode], instances => [1,2,3,4]); + +my $result = $self->{snmp}->get_leef(nothing_quit => 1); + +use Data::Dumper; +print Dumper($result); +``` +This is an example of how to get multiple instances dynamically (memory modules of Dell hardware) by using **load** method: + +```perl +my $oid_memoryDeviceStatus = '.1.3.6.1.4.1.674.10892.1.1100.50.1.5'; +my $oid_memoryDeviceLocationName = '.1.3.6.1.4.1.674.10892.1.1100.50.1.8'; +my $oid_memoryDeviceSize = '.1.3.6.1.4.1.674.10892.1.1100.50.1.14'; +my $oid_memoryDeviceFailureModes = '.1.3.6.1.4.1.674.10892.1.1100.50.1.20'; + +my $result = $self->{snmp}->get_table(oid => $oid_memoryDeviceStatus); +$self->{snmp}->load(oids => [$oid_memoryDeviceLocationName, $oid_memoryDeviceSize, $oid_memoryDeviceFailureModes], + instances => [keys %$result], + instance_regexp => '(\d+\.\d+)$'); + +my $result2 = $self->{snmp}->get_leef(); + +use Data::Dumper; +print Dumper($result2); +``` + +#### 3.3 get_table + +**Description** + +Return hash table of SNMP values for SNMP table. + +**Parameters** + +| Parameter | Type | Default | Description | +|--------------|--------------|---------|---------------------------------------------------------| +| **oid** | String | | OID of the snmp table to check. | +| start | Int | | First OID to check. | +| end | Int | | Last OID to check. | +| dont_quit | Int (0 or 1) | 0 | Don't quit even if an SNMP error occured. | +| nothing_quit | Int (0 or 1) | 0 | Quit if no value is returned. | +| return_type | Int (0 or 1) | 0 | Return a hash table with one level instead of multiple. | + +**Example** + +This is an example of how to get a SNMP table: + +```perl +my $oid_rcDeviceError = '.1.3.6.1.4.1.15004.4.2.1'; +my $oid_rcDeviceErrWatchdogReset = '.1.3.6.1.4.1.15004.4.2.1.2.0'; + +my $results = $self->{snmp}->get_table(oid => $oid_rcDeviceError, start => $oid_rcDeviceErrWatchdogReset); + +use Data::Dumper; +print Dumper($results); +``` + +#### 3.4 get_multiple_table + +**Description** + +Return hash table of SNMP values for multiple SNMP tables. + +**Parameters** + +| Parameter | Type | Default | Description | +|--------------|--------------|---------|------------------------------------------------------------| +| oids | Hash table | - | Hash table of OIDs to check (Can be set by 'load' method). | +| - | - | - | Keys can be: "oid", "start", "end". | +| dont_quit | Int (0 or 1) | 0 | Don't quit even if an SNMP error occured. | +| nothing_quit | Int (0 or 1) | 0 | Quit if no value is returned. | +| return_type | Int (0 or 1) | 0 | Return a hash table with one level instead of multiple. | + +**Example** + +This is an example of how to get 2 SNMP tables: + +```perl +my $oid_sysDescr = ".1.3.6.1.2.1.1.1"; +my $aix_swap_pool = ".1.3.6.1.4.1.2.6.191.2.4.2.1"; + +my $results = $self->{snmp}->get_multiple_table(oids => [ + { oid => $aix_swap_pool}, + { oid => $oid_sysDescr }, + ]); + +use Data::Dumper; +print Dumper($results); +``` + +#### 3.5 get_hostname + +**Description** + +Get hostname parameter (useful to get hostname in mode). + +**Parameters** + +None. + +**Example** + +This is an example of how to get hostname parameter: + +```perl +my $hostname = $self->{snmp}->get_hostname(); +``` + +#### 3.6 get_port + +**Description** + + +Get port parameter (useful to get port in mode). + +**Parameters** + +None. + +**Example** + +This is an example of how to get port parameter: + +```perl +my $port = $self->{snmp}->get_port(); +``` + +#### 3.7 oid_lex_sort + +**Description** + +Return sorted OIDs. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------------|---------|------------------------| +| **-** | String array | | Array of OIDs to sort. | + +**Example** + +This example prints sorted OIDs: + +```perl +foreach my $oid ($self->{snmp}->oid_lex_sort(keys %{$self->{results}->{$my_oid}})) { + print $oid; +} +``` + +
+ +### 4. Misc + +This library provides a set of miscellaneous methods. +To use it, you can directly use the path of the method: + +```perl +centreon::plugins::misc::; +``` +-------------- +#### 4.1 trim + +**Description** + +Strip whitespace from the beginning and end of a string. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|------------------| +| **-** | String | | String to strip. | + +**Example** + +This is an example of how to use **trim** method: + +```perl +my $word = ' Hello world ! '; +my $trim_word = centreon::plugins::misc::trim($word); + +print $word."\n"; +print $trim_word."\n"; +``` +Output displays : + +``` +Hello world ! +``` + +#### 4.2 change_seconds + +**Description** + +Convert seconds to human readable text. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|------|---------|-------------------------------| +| **-** | Int | | Number of seconds to convert. | + +**Example** + +This is an example of how to use **change_seconds** method: + +```perl +my $seconds = 3750; +my $human_readable_time = centreon::plugins::misc::change_seconds($seconds); + +print 'Human readable time : '.$human_readable_time."\n"; +``` +Output displays : + +``` +Human readable time : 1h 2m 30s +``` + +#### 4.3 backtick + +**Description** + +Execute system command. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------------|--------------|---------|-----------------------------------------| +| **command** | String | | Command to execute. | +| arguments | String array | | Command arguments. | +| timeout | Int | 30 | Command timeout. | +| wait_exit | Int (0 or 1) | 0 | Command process ignore SIGCHLD signals. | +| redirect_stderr | Int (0 or 1) | 0 | Print errors in output. | + +**Example** + +This is an example of how to use **backtick** method: + +```perl +my ($error, $stdout, $exit_code) = centreon::plugins::misc::backtick( + command => 'ls /home', + timeout => 5, + wait_exit => 1 + ); + +print $stdout."\n"; +``` +Output displays files in '/home' directory. + + +#### 4.4 execute + +**Description** + +Execute command remotely. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------------|--------|---------|-----------------------------------------------------------------| +| **output** | Object | | Plugin output ($self->{output}). | +| **options** | Object | | Plugin options ($self->{option_results}) to get remote options. | +| sudo | String | | Use sudo command. | +| **command** | String | | Command to execute. | +| command_path | String | | Command path. | +| command_options | String | | Command arguments. | + +**Example** + +This is an example of how to use **execute** method. +We suppose ``--remote`` option is enabled: + +```perl +my $stdout = centreon::plugins::misc::execute(output => $self->{output}, + options => $self->{option_results}, + sudo => 1, + command => 'ls /home', + command_path => '/bin/', + command_options => '-l'); +``` +Output displays files in /home using ssh on a remote host. + +#### 4.5 windows_execute + +**Description** + +Execute command on Windows. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------------|--------|---------|--------------------------------------| +| **output** | Object | | Plugin output ($self->{output}). | +| **command** | String | | Command to execute. | +| command_path | String | | Command path. | +| command_options | String | | Command arguments. | +| timeout | Int | | Command timeout. | +| no_quit | Int | | Don't quit even if an error occured. | + +**Example** + +This is an example of how to use **windows_execute** method. + +```perl +my $stdout = centreon::plugins::misc::windows_execute(output => $self->{output}, + timeout => 10, + command => 'ipconfig', + command_path => '', + command_options => '/all'); +``` +Output displays IP configuration on a Windows host. + +
+ +### 5.Statefile + +This library provides a set of methods to use a cache file. +To use it, add the following line at the beginning of your **mode**: + +```perl +use centreon::plugins::statefile; +``` + +#### 5.1 read + +**Description** + +Read cache file. + +**Parameters** + +| Parameter | Type | Default | Description | +|-------------------|--------|---------|------------------------------| +| **statefile** | String | | Name of the cache file. | +| **statefile_dir** | String | | Directory of the cache file. | +| memcached | String | | Memcached server to use. | + +**Example** + +This is an example of how to use **read** method: + +```perl +$self->{statefile_value} = centreon::plugins::statefile->new(%options); +$self->{statefile_value}->check_options(%options); +$self->{statefile_value}->read(statefile => 'my_cache_file', + statefile_dir => '/var/lib/centreon/centplugins' + ); + +use Data::Dumper; +print Dumper($self->{statefile_value}); +``` +Output displays cache file and its parameters. + +#### 5.2 get + +**Description** + +Get data from cache file. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|------------------------------| +| name | String | | Get a value from cache file. | + +**Example** + +This is an example of how to use **get** method: + +```perl +$self->{statefile_value} = centreon::plugins::statefile->new(%options); +$self->{statefile_value}->check_options(%options); +$self->{statefile_value}->read(statefile => 'my_cache_file', + statefile_dir => '/var/lib/centreon/centplugins' + ); + +my $value = $self->{statefile_value}->get(name => 'property1'); +print $value."\n"; +``` +Output displays value for 'property1' of the cache file. + +#### 5.3 write + +**Description** + +Write data to cache file. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|------------------------------| +| data | String | | Data to write in cache file. | + +**Example** + +This is an example of how to use **write** method: + +```perl +$self->{statefile_value} = centreon::plugins::statefile->new(%options); +$self->{statefile_value}->check_options(%options); +$self->{statefile_value}->read(statefile => 'my_cache_file', + statefile_dir => '/var/lib/centreon/centplugins' + ); + +my $new_datas = {}; +$new_datas->{last_timestamp} = time(); +$self->{statefile_value}->write(data => $new_datas); +``` +Then, you can read the result in '/var/lib/centreon/centplugins/my_cache_file', timestamp is written in it. + +
+ +### 6. HTTP + +This library provides a set of methodss to use HTTP protocol. +To use it, add the following line at the beginning of your **mode**: + +```perl +use centreon::plugins::http; +``` + +Some options must be set in **plugin.pm**: + +| Option | Type | Description | +|--------------|--------|---------------------------------------------------------| +| **hostname** | String | IP Addr/FQDN of the webserver host. | +| **port** | String | HTTP port. | +| **proto** | String | Used protocol ('http' or 'https'). | +| credentials | | Use credentials. | +| ntlm | | Use NTLM authentication (if ``--credentials`` is used). | +| username | String | Username (if ``--credentials`` is used). | +| password | String | User password (if ``--credentials`` is used). | +| proxyurl | String | Proxy to use. | +| url_path | String | URL to connect (start to '/'). | + +#### 6.1 connect + +**Description** + +Test a connection to an HTTP url. +Return content of the webpage. + +**Parameters** + +This method use plugin options previously defined. + +**Example** + +This is an example of how to use **connect** method. + +We suppose these options are defined : +* --hostname = 'google.com' +* --urlpath = '/' +* --proto = 'http' +* --port = 80 + +```perl +$self->{http} = centreon::plugins::http->new(output => $self->{output}, options => $self->{options}); +$self->{http}->set_options(%{$self->{option_results}}); +my $webcontent = $self->{http}->request(); +print $webcontent; +``` +Output displays content of the webpage '\http://google.com/'. + +
+ +### 7. DBI + +This library allows you to connect to databases. +To use it, add the following line at the beginning of your **plugin.pm**: + +```perl +use base qw(centreon::plugins::script_sql); +``` + +#### 7.1 connect + +**Description** + +Connect to databases. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------------|---------|------------------------------------| +| dontquit | Int (0 or 1) | 0 | Don't quit even if errors occured. | + +**Example** + +This is an example of how to use **connect** method. + +The format of the connection string can have the following forms: + +``` + DriverName:database_name + DriverName:database_name@hostname:port + DriverName:database=database_name;host=hostname;port=port +``` +In plugin.pm: + +```perl +$self->{sqldefault}->{dbi} = (); +$self->{sqldefault}->{dbi} = { data_source => 'mysql:host=127.0.0.1;port=3306' }; +``` +In your mode: + +```perl +$self->{sql} = $options{sql}; +my ($exit, $msg_error) = $self->{sql}->connect(dontquit => 1); +``` +Then, you are connected to the MySQL database. + +#### 7.2 query + +**Description** + +Send query to database. + +**Parameters** + +| Parameter | Type | Default | Description | +|-----------|--------|---------|--------------------| +| query | String | | SQL query to send. | + +**Example** + +This is an example of how to use **query** method: + +```perl +$self->{sql}->query(query => q{SHOW /*!50000 global */ STATUS LIKE 'Slow_queries'}); +my ($name, $result) = $self->{sql}->fetchrow_array(); + +print 'Name : '.$name."\n"; +print 'Value : '.$value."\n"; +``` +Output displays count of MySQL slow queries. + +#### 7.3 fetchrow_array + +**Description** + +Return Array from sql query. + +**Parameters** + +None. + +**Example** + +This is an example of how to use **fetchrow_array** method: + +```perl +$self->{sql}->query(query => q{SHOW /*!50000 global */ STATUS LIKE 'Uptime'}); +my ($dummy, $result) = $self->{sql}->fetchrow_array(); + +print 'Uptime : '.$result."\n"; +``` +Output displays MySQL uptime. + +#### 7.4 fetchall_arrayref + +**Description** + +Return Array from SQL query. + +**Parameters** + +None. + +**Example** + +This is an example of how to use **fetchrow_array** method: + +```perl +$self->{sql}->query(query => q{ + SELECT SUM(DECODE(name, 'physical reads', value, 0)), + SUM(DECODE(name, 'physical reads direct', value, 0)), + SUM(DECODE(name, 'physical reads direct (lob)', value, 0)), + SUM(DECODE(name, 'session logical reads', value, 0)) + FROM sys.v_$sysstat +}); +my $result = $self->{sql}->fetchall_arrayref(); + +my $physical_reads = @$result[0]->[0]; +my $physical_reads_direct = @$result[0]->[1]; +my $physical_reads_direct_lob = @$result[0]->[2]; +my $session_logical_reads = @$result[0]->[3]; + +print $physical_reads."\n"; +``` +Output displays physical reads on Oracle database. + +#### 7.5 fetchrow_hashref + +**Description** + +Return Hash table from SQL query. + +**Parameters** + +None. + +**Example** + +This is an example of how to use **fetchrow_hashref** method: + +```perl +$self->{sql}->query(query => q{ + SELECT datname FROM pg_database +}); + +while ((my $row = $self->{sql}->fetchrow_hashref())) { + print $row->{datname}."\n"; +} +``` +Output displays Postgres databases. + +
+ +### 8. Model Classes Usage + +**Introduction** + +With the experience of plugin development, we have created two classes: + +* centreon::plugins::templates::counter +* centreon::plugins::templates::hardware + +It was developed to have a more consistent code and less redundant code. +According to context, you should use one of two classes for modes. +Following classes can be used for whatever plugin type (SNMP, Custom, DBI,...). + +**Class counter** + +*When to use it ?* + +If you have some counters (CPU Usage, Memory, Session...), you should use that +class. +If you have only one global counter to check, it's maybe not useful to use it +(but only for these case). + +*Class methods* + +List of methods: + +* **new**: class constructor. Overload if you need to add some specific options +or to use a statefile. +* **check_options**: overload if you need to check your specific options. +* **manage_selection**: overload if *mandatory*. Method to get informations for +the equipment. +* **set_counters**: overload if **mandatory**. Method to configure counters. + +**Class hardware** + + + + + + +TODO + + + + + +[Table of content (1)](#table_of_contents) + + + + +#### 8.1. Example 1 + +We want to develop the following SNMP plugin: + +* measure the current sessions and current SSL sessions usages. + +```perl + package my::module::name; + + use base qw(centreon::plugins::templates::counter); + + use strict; + use warnings; + + sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, message_separator => ' - ' }, + ]; + $self->{maps_counters}->{global} = [ + { label => 'sessions', set => { + key_values => [ { name => 'sessions' } ], + output_template => 'Current sessions : %s', + perfdatas => [ + { label => 'sessions', template => '%s', min => 0 }, + ], + } + }, + { label => 'sessions-ssl', set => { + key_values => [ { name => 'sessions_ssl' } ], + output_template => 'Current ssl sessions : %s', + perfdatas => [ + { label => 'sessions_ssl', template => '%s', min => 0 }, + ], + } + }, + ]; + } + + sub manage_selection { + my ($self, %options) = @_; + + # OIDs are fake. Only for the example. + my ($oid_sessions, $oid_sessions_ssl) = ('.1.2.3.4.0', '.1.2.3.5.0'); + + my $result = $options{snmp}->get_leef( + oids => [ $oid_sessions, $oid_sessions_ssl ], + nothing_quit => 1 + ); + $self->{global} = { + sessions => $result->{$oid_sessions}, + sessions_ssl => $result->{$oid_sessions_ssl} + }; + } +``` +Output may display: + +``` + OK: Current sessions : 24 - Current ssl sessions : 150 | sessions=24;;;0; sessions_ssl=150;;;0; +``` +As you can see, we create two arrays of hash tables in **set_counters** method. We use arrays to order the output. + +* **maps_counters_type**: global configuration. Attributes list: + + * *name*: the name is really important. It will be used in hash **map_counters** and also in **manage_selection** as you can see. + * *type*: 0 or 1. With 0 value, the output will be written in the short output. With the value 1, it depends if we have one or multiple instances. + * *message_multiple*: only useful with *type* 1 value. The message will be displayed in short ouput if we have multiple instances selected. + * *message_separator*: the string displayed between counters (Default: ', '). + * *cb_prefix_output*, *cb_suffix_output*: name of a method (in a string) to callback. Methods will return a string to be displayed before or after **all** counters. + * *cb_init*: name of a method (in a string) to callback. Method will return 0 or 1. With 1 value, counters are not checked. + +* **maps_counters**: complex structure to configure counters. Attributes list: + + * *label*: name used for threshold options. + * *type*: depend of data dimensions + * 0 : global + * 1 : instance + * 2 : group + * 3 : multiple + * *threshold*: if we set the value to 0. There is no threshold check options (can be used if you want to set and check option yourself). + * *set*: hash table: + + * *keys_values*: array of hashes. Set values used for the counter. Order is important (by default, the first value is used to check). + + * *name*: attribute name. Need to match with attributes in **manage_selection** method! + * *diff*: if we set the value to 1, we'll have the difference between two checks (need a statefile!). + * *per_second*: if we set the value to 1, the *diff* values will be calculated per seconds (need a statefile!). No need to add diff attribute. + + * *output_template*: string to display. '%s' will be replaced by the first value of *keys_values*. + * *output_use*: which value to be used in *output_template* (If not set, we use the first value of *keys_values*). + * *output_change_bytes*: if we set the value to 1 or 2, we can use a second '%s' in *output_template* to display the unit. 1 = divide by 1024 (Bytes), 2 = divide by 1000 (bits). + * *perfdata*: array of hashes. To configure perfdatas + + * *label*: name displayed. + * *value*: value to used. It's the name from *keys_values*. + * *template*: value format (could be for example: '%.3f'). + * *unit*: unit displayed. + * *min*, *max*: min and max displayed. You can use a value from *keys_values*. + * *label_extra_instance*: if we set the value to 1, perhaps we'll have a suffix concat with *label*. + * *instance_use*: which value from *keys_values* to be used. To be used if *label_extra_instance* is 1. + +#### 8.2. Example 2 + +We want to add the current number of sessions by virtual servers. + +```perl + package my::module::name; + + use base qw(centreon::plugins::templates::counter); + + use strict; + use warnings; + + sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, cb_prefix_output => 'prefix_global_output' }, + { name => 'vs', type => 1, cb_prefix_output => 'prefix_vs_output', message_multiple => 'All Virtual servers are ok' } + ]; + $self->{maps_counters}->{global} = [ + { label => 'total-sessions', set => { + key_values => [ { name => 'sessions' } ], + output_template => 'current sessions : %s', + perfdatas => [ + { label => 'total_sessions', template => '%s', min => 0 }, + ], + } + }, + { label => 'total-sessions-ssl', set => { + key_values => [ { name => 'sessions_ssl' } ], + output_template => 'current ssl sessions : %s', + perfdatas => [ + { label => 'total_sessions_ssl', template => '%s', min => 0 }, + ], + } + }, + ]; + + $self->{maps_counters}->{vs} = [ + { label => 'sessions', set => { + key_values => [ { name => 'sessions' }, { name => 'display' } ], + output_template => 'current sessions : %s', + perfdatas => [ + { label => 'sessions', template => '%s', + min => 0, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'sessions-ssl', set => { + key_values => [ { name => 'sessions_ssl' }, { name => 'display' } ], + output_template => 'current ssl sessions : %s', + perfdatas => [ + { label => 'sessions_ssl', template => '%s', + min => 0, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + ]; + } + + sub prefix_vs_output { + my ($self, %options) = @_; + + return "Virtual server '" . $options{instance_value}->{display} . "' "; + } + + sub prefix_global_output { + my ($self, %options) = @_; + + return "Total "; + } + + sub manage_selection { + my ($self, %options) = @_; + + # OIDs are fake. Only for the example. + my ($oid_sessions, $oid_sessions_ssl) = ('.1.2.3.4.0', '.1.2.3.5.0'); + + my $result = $options{snmp}->get_leef(oids => [ $oid_sessions, $oid_sessions_ssl ], + nothing_quit => 1); + $self->{global} = { sessions => $result->{$oid_sessions}, + sessions_ssl => $result->{$oid_sessions_ssl} + }; + my $oid_table_vs = '.1.2.3.10'; + my $mapping = { + vsName => { oid => '.1.2.3.10.1' }, + vsSessions => { oid => '.1.2.3.10.2' }, + vsSessionsSsl => { oid => '.1.2.3.10.3' }, + }; + + $self->{vs} = {}; + $result = $options{snmp}->get_table(oid => $oid_table_vs, + nothing_quit => 1); + foreach my $oid (keys %{$result->{ $oid_table_vs }}) { + next if ($oid !~ /^$mapping->{vsName}->{oid}\.(.*)$/; + my $instance = $1; + my $data = $options{snmp}->map_instance(mapping => $mapping, results => $result->{$oid_table_vs}, instance => $instance); + + $self->{vs}->{$instance} = { display => $data->{vsName}, + sessions => $data->{vsSessions}, sessions_ssl => $data->{vsSessionsSsl}}; + } + } +``` +If we have at least 2 virtual servers: + +``` + OK: Total current sessions : 24, current ssl sessions : 150 - All Virtual servers are ok | total_sessions=24;;;0; total_sessions_ssl=150;;;0; sessions_foo1=11;;;0; sessions_ssl_foo1=70;;;0; sessions_foo2=13;;;0; sessions_ssl_foo2=80;;;0; + Virtual server 'foo1' current sessions : 11, current ssl sessions : 70 + Virtual server 'foo2' current sessions : 13, current ssl sessions : 80 +``` + +#### 8.3. Example 3 + +The model can also be used to check strings (not only counters). So we want to check the status of a virtualserver. + +```perl + package my::module::name; + + use base qw(centreon::plugins::templates::counter); + + use strict; + use warnings; + + sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'vs', type => 1, cb_prefix_output => 'prefix_vs_output', message_multiple => 'All Virtual server status are ok' } + ]; + $self->{maps_counters}->{vs} = [ + { label => 'status', threshold => 0, set => { + key_values => [ { name => 'status' }, { name => 'display' } ], + closure_custom_calc => $self->can('custom_status_calc'), + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => $self->can('custom_threshold_output') + } + } + ]; + } + + sub custom_threshold_output { + my ($self, %options) = @_; + my $status = 'ok'; + + if ($self->{result_values}->{status} =~ /problem/) { + $status = 'critical'; + } + return $status; + } + + sub custom_status_output { + my ($self, %options) = @_; + + my $msg = sprintf("status is '%s'", $self->{result_values}->{status}); + return $msg; + } + + sub custom_status_calc { + my ($self, %options) = @_; + + $self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_status'}; + $self->{result_values}->{display} = $options{new_datas}->{$self->{instance} . '_display'}; + return 0; + } + + sub prefix_vs_output { + my ($self, %options) = @_; + + return "Virtual server '" . $options{instance_value}->{display} . "' "; + } + + sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + } + + sub manage_selection { + my ($self, %options) = @_; + + my $oid_table_vs = '.1.2.3.10'; + my $mapping = { + vsName => { oid => '.1.2.3.10.1' }, + vsStatus => { oid => '.1.2.3.10.4' }, + }; + + $self->{vs} = {}; + my $result = $options{snmp}->get_table(oid => $oid_table_vs, + nothing_quit => 1); + foreach my $oid (keys %{$result->{ $oid_table_vs }}) { + next if ($oid !~ /^$mapping->{vsName}->{oid}\.(.*)$/; + my $instance = $1; + my $data = $options{snmp}->map_instance(mapping => $mapping, results => $result->{$oid_table_vs}, instance => $instance); + + $self->{vs}->{$instance} = { display => $data->{vsName}, + status => $data->{vsStatus} }; + } + } +``` +The following example show 4 new attributes: + +* *closure_custom_calc*: should be used to do more complex calculation. +* *closure_custom_output*: should be used to have a more complex output (An example: want to display the total, free and used value at the same time). +* *closure_custom_perfdata*: should be used to manage yourself the perfdata. +* *closure_custom_threshold_check*: should be used to manage yourself the threshold check. + +[Table of content (1)](#table_of_contents) \ No newline at end of file diff --git a/doc/en/developer/plugins_global.md b/doc/en/developer/plugins_global.md new file mode 100644 index 000000000..384cbb453 --- /dev/null +++ b/doc/en/developer/plugins_global.md @@ -0,0 +1,1075 @@ +# Plugins / Connectors global documentation + +
+ +******* +Table of contents +1. [Overview](#overview) +2. [Understand the data](#understand_data) +3. [Directories layout](#architecture_layout) +4. [Set up your environment](#set_up) +5. [Code Style Guidelines](#code-style-guidelines) +6. [plugin.pm](#create_plugin) +7. [mode.pm](#create_mode) +8. [Tutorials](#tutorials) +9. [Commit and Fatpack generation](#fatpack) +10. [Plugin outputs](#outputs) +11. [Plugins options](#options) +12. [Discovery](#discovery) +13. [Performances](#performances) +14. [Security](#security) +15. [Help and documentation](#help_doc) +******* + +
+ +## 1. Overview + +Centreon plugins are a free and open source way to monitor systems. The project +can be used with Centreon and all monitoring softwares compatible with Nagios +plugins. You can monitor many systems: + +* **application**: Apache, Asterisk, Elasticsearch, Github, Jenkins, Kafka, + Nginx, +Pfsense, Redis, Tomcat, Varnish,... +* **cloud**: AWS, Azure, Docker, Office365, Nutanix, Prometheus,... +* **database**: Firebird, Informix, MS SQL, MySQL, Oracle, Postgres, Cassandra +* **hardware**: printers (rfc3805), UPS (Powerware, Mge, Standard), Sun + Hardware, +Cisco UCS, SensorIP, HP Proliant, HP Bladechassis, Dell Openmanage, Dell CMC, +Raritan,... +* **network**: Aruba, Brocade, Bluecoat, Brocade, Checkpoint, Cisco + AP/IronPort/ASA/ +Standard, Extreme, Fortigate, H3C, Hirschmann, HP Procurve, F5 BIG-IP, Juniper, +PaloAlto, Redback, Riverbed, Ruggedcom, Stonesoft,... +* **os**: Linux (SNMP, NRPE), Freebsd (SNMP), AIX (SNMP), Solaris (SNMP)... +* **storage**: EMC Clariion, Netapp, Nimble, HP MSA p2000, Dell EqualLogic, + Qnap, +Panzura, Synology... + +This document introduces the best practices in the development of +"centreon-plugins". + +As all plugins are written in Perl, “there is more than one way to do it”. +But to avoid reinventing the wheel, you should first take a look at the +“example” directory, you will get an overview of how to build your own plugin +and associated modes. + +The lastest version is available on following git repository: +https://github.com/centreon/centreon-plugins.git + +[Table of contents](#table_of_contents) + +
+ +## 2.Understand the data + +First of any development, understanding the data is very important as it will drive the way you will design +the **mode** internals. This is the **first thing to do**, no matter what protocol you +are using. + +There are several important properties for a piece of data: + +- Type of the data to process: string, int... There is no limitation in the kind of data you can process +- Dimensions of the data, is it **global** or linked to an **instance**? +- Data layout, in other words anticipate the kind of **data structure** to manipulate. + +Coming soon : A mindmap of what type of plugins is adequate + +[Table of contents](#table_of_contents) + +
+ +## 3. Directories layout + +### 3.1 Plugins directories layout + +The project content is made of a main binary (`centreon_plugins.pl`), and a +logical directory structure allowing to separate plugins and modes files across +the domain they are referring to. + +You can display it using the command `tree -L 1`. + +```shell +. +├── apps +├── blockchain +├── centreon +├── centreon_plugins.pl +├── changelog +├── cloud +├── contrib +├── database +├── doc +├── example +├── hardware +├── Jenkinsfile +├── LICENSE.txt +├── network +├── notification +├── os +├── README.md +├── snmp_standard +├── sonar-project.properties +└── storage +``` +Root directories are organized by section: + +* Application : apps +* Database : database +* Hardware : hardware +* Network equipment : network +* Operating System : os +* Storage equipment : storage + +### 3.2 Single plugin directory layout + +According to the monitored object, it exists an organization which can use: + +* Type +* Constructor +* Model +* Monitoring Protocol + +Let's take a deeper look at the layout of the directory containing modes to +monitor Linux systems through the command-line (`tree os/linux/local/ -L 1`). + +```shell +os/linux/local/ +├── custom # Type: Directory. Contains code that can be used by several modes (e.g authentication, token management, ...). +│ └── cli.pm # Type: File. *Custom mode* defining common methods +├── mode # Type: Directory. Contains all **modes**. +[...] +│ └── cpu.pm # Type: File. **Mode** containing the code to monitor the CPU +[...] +└── plugin.pm # Type: File. **Plugin** definition. +``` +Note the os/linux/local. The project offers other ways to monitor Linux, SNMP +for example. To avoid mixing modes using different protocols in the same +directory and face some naming collisions, we split them across several +directories making it clear what protocol they rely on. + +Now, let's see how these concepts combine to build a command line: +```shell +# --plugin= --mode= +perl centreon_plugins.pl --plugin=os::linux::local::plugin --mode=cpu +``` + +### 3.3 Shared directories + +Some specific directories are not related to a domain (os, cloud...) and are +used across all plugins. + +#### 3.3.1 The centreon directory + +The centreon directory is specific, it contains: + +* **Project libraries/packages**. This is all the code that will help you to +develop faster by avoiding coding protocol-related things (SNMP, HTTPx, SSH...) +or common things like options or cache management from scratch. You can read the +perl modules if you're an experienced developer but there is very little +chance that you would have to modify anything in it. +* **Common files shared by multiple plugins**. This is to avoid duplicating +code across the directory tree and ease the maintenance of the project. + +An more detailed description of this libraries is available [here](plugins_advanced.md) + +#### 3.3.2 The snmp_standard/mode directory + +The snmp_standard/mode exists since the beginning when SNMP monitoring was much +more used than it is today. All the modes it contains use standard OIDs, which +means that many plugins are relying on these when the manufacturer supports +standard MIBs on their devices. + +[Table of contents](#table_of_contents) + +
+ +## 4.Set up your environment + +[Table of contents](#table_of_contents) + +To use the centreon-plugins framework, you'll need the following: + +- A Linux operating system, ideally Debian 11 or RHEL/RHEL-like >= 8 +- The [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) command line utility +- A [GitHub](https://github.com/) account. + +### Enable our standard repositories + +#### Debian + +If you have not already install lsb-release, first you need to follow this steps : + +If needed go to sudo mode +```shell +sudo -i +``` +Install lib-release +```shell +apt install lsb-release +``` +Create access to centreon repository (note you may need to change the version in example it's 22.04 but you can select one most up to date) +```shell +echo "deb https://apt.centreon.com/repository/22.04/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon.list +wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /etc/apt/trusted.gpg.d/centreon.gpg > /dev/null 2>&1 +``` +Install the following dependencies: +```shell +apt-get install 'libpod-parser-perl' 'libnet-curl-perl' 'liburi-encode-perl' 'libwww-perl' \ + 'liblwp-protocol-https-perl' 'libhttp-cookies-perl' 'libio-socket-ssl-perl' 'liburi-perl' \ + 'libhttp-proxypac-perl' 'libcryptx-perl' 'libjson-xs-perl' 'libjson-path-perl' \ + 'libcrypt-argon2-perl' 'libkeepass-reader-perl' +``` +#### RHEL 8 and alike +Create access to centreon repository (note you may need to change the version in example it's 22.04 but you can select one most up to date) +```shell +dnf install -y https://yum.centreon.com/standard/22.04/el8/stable/noarch/RPMS/centreon-release-22.04-3.el8.noarch.rpm +``` +Install the following dependencies: +```shell +dnf install 'perl(Digest::MD5)' 'perl(Pod::Find)' 'perl-Net-Curl' 'perl(URI::Encode)' \ + 'perl(LWP::UserAgent)' 'perl(LWP::Protocol::https)' 'perl(IO::Socket::SSL)' 'perl(URI)' \ + 'perl(HTTP::ProxyPAC)' 'perl-CryptX' 'perl(MIME::Base64)' 'perl(JSON::XS)' 'perl-JSON-Path' \ + 'perl-KeePass-Reader' 'perl(Storable)' 'perl(POSIX)' 'perl(Encode)' +``` + +#### Fork and clone the centreon-plugins repository + +Within GitHub UI, on the top left, click on the **Fork** button. + +Use the git utility to fetch your repository fork: + +```shell +git clone https://@github.com//centreon-plugins +``` + +Create a branch: + +```shell +cd centreon-plugins +git checkout -b 'my-first-plugin' +``` + +[Table of contents](#table_of_contents) + +
+ +## 5. Code Style Guidelines + +**Introduction** + +Perl code from Pull-request must conform to the following style guidelines. If you find any code which doesn't conform, please fix it. + +### 5.1 Indentation + +Space should be used to indent all code blocks. Tabs should never be used to indent code blocks. Mixing tabs and spaces results in misaligned code blocks for other developers who prefer different indentation settings. +Please use 4 for indentation space width. + +```perl + if ($1 > 1) { + ....return 1; + } else { + if ($i == -1) { + ....return 0; + } + return -1 + } +``` + +### 5.2 Comments + +There should always be at least 1 space between the # character and the beginning of the comment. This makes it a little easier to read multi-line comments: + +```perl + # Good comment + #Wrong comment +``` + +### 5.3 Subroutine & Variable Names + +Whenever possible, use underscore to seperate words and don't use uppercase characters: + +```perl + sub get_logs {} + my $start_time; +``` +Keys of hash table should use alphanumeric and underscore characters only (and no quote!): + +```perl + $dogs->{meapolitan_mastiff} = 10; +``` + +### 5.4 Curly Brackets, Parenthesis + +There should be a space between every control/loop keyword and the opening parenthesis: + +```perl + if ($i == 1) { + ... + } + while ($i == 2) { + ... + } +``` + +### 5.5 If/Else Statements + +'else', 'elsif' should be on the same line after the previous closing curly brace: + +```perl + if ($i == 1) { + ... + } else { + ... + } +``` +You can use single line if conditional: + +```perl + next if ($i == 1); +``` + +[Table of contents](#table_of_contents) + +
+ +## 6.plugin.pm + +The `plugin.pm` is the first thing to create, it contains: + +- A set of instructions to load required libraries and compilation options +- A list of all **mode(s)** and path(s) to their associated files/perl packages +- A description that will display when you list all plugins or display this plugin's help. + +In this file you can always find : +* **license / copyright** + +First this file contains the Copyright section. At the end of it, you can add +your author informations like this : +``` +# ... +# Authors : <> +``` + +* **package name** + +Path to your package. '::' instead of '/', and no .pm +at the end. + +```perl +package path::to::plugin; +``` + +* **libraries** + +Strict and warnings are mandatory + +```perl +use strict; +use warnings; +``` + +One of the centreon libraries : + +```perl +use base qw(**centreon_library**); +``` +There are five kinds of centreon libraries access here : +* centreon::plugins::script_simple : Previously the general use case if no custom is needed, more explainations [here](tutorial-api.md) in this section. +* centreon::plugins::script_custom : Need custom directory - More explainations [here](tutorial-api.md) in this section. +* centreon::plugins::script_snmp : If SNMP protocol is needed for this plugin +* centreon::plugins::script_sql : If DB acess is needed for this plugin +* centreon::plugins::script_wsman : Concern Windows specific protocols + + +* **new constructor** + +The plugin need a new constructor to instantiate the object: +```perl +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + # Plugin version declaration is in the new constructor: + $self->{version} = '0.1'; + + # Several modes can be declared in the new constructor: + %{$self->{modes}} = ( + 'mode1' => '::mode::mode1', + 'mode2' => '::mode::mode2', + ... + ); + + return $self; +} +``` + +* **documentation section** + +A description of the plugin is needed to generate the documentation: + +```perl +__END__ + +=head1 PLUGIN DESCRIPTION + +. + +=cut +``` +> **TIP** : You can copy-paste an other plugin.pm and adapt some lines (package, arguments...). + The plugin has ".pm" extension because it's a Perl module. So don't forget to add 1; at the end of the file. + +[Table of contents](#table_of_contents) + +
+ +## 7.mode.pm + +Mode.pm as plugin.pm has also : +* license / copyright +* package name +* libraries +* new constructor + +But mode.pm also usually contains: +* options in the new constructor +* check_options method +* manage_selection method (called run in old contain) + +```perl + + # ... + # Authors : <> + + package path::to::plugin::mode::mode1; + + use strict; + use warnings; + use base qw(centreon::plugins::mode); + + sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + ... + + return $self; + } +``` +Mode version must be declared in the **new** constructor: + +```perl + + $self->{version} = '1.0'; + +``` +Several options can be declared in the **new** constructor: + +```perl + + $options{options}->add_options(arguments => { + "option1:s" => { name => 'option1' }, + "option2:s" => { name => 'option2', default => 'value1' }, + "option3" => { name => 'option3' }, + }); + +``` +Here is the description of arguments used in this example: + +* option1 : String value +* option2 : String value with default value "value1" +* option3 : Boolean value + +> **TIP 1** : Options are boolean as default and string if set ":s", no other type are allowed in this argument descriptions. +The actual type of the argument, if it is other than a string, can be checked and interpreted in ```check_option()``` function defined below. + +> **TIP 2** : You can have more informations about options format here: http://perldoc.perl.org/Getopt/Long.html + +The mode can have a **check_options** method to validate options: + +```perl + + sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); + ... + } + +``` +For example, Warning and Critical thresholds can be validated in +**check_options** method: + +```perl + + if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) { + $self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'."); + $self->{output}->option_exit(); + } + if (($self->{perfdata}->threshold_validate(label => 'critical', value => $self->{option_results}->{critical})) == 0) { + $self->{output}->add_option_msg(short_msg => "Wrong critical threshold '" . $self->{option_results}->{critical} . "'."); + $self->{output}->option_exit(); + } + +``` +In this example, help is printed if thresholds do not have a correct format. + +Previously went the *run* method, where were performed measurement, check +thresholds, display output and format performance datas. + +Since this method had been split in at least two methods : +* **set_counters** : describe data structure and their properties + (like thresholds and how they will be displayed to the users). This + method is split in two functions + +```perl + + sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'radios', type => 1, cb_prefix_output => 'prefix_radio_output', message_multiple => 'All raadio interfaces are ok' } + ]; + +``` + +* **manage_selection** : method use as main sub in the mode +* Various output custom methods. + +Examples are available in the Tutorial section. + +Then, declare the module: + +```perl + + 1; + +``` +A description of the mode and its arguments is needed to generate the documentation: + +```perl + + __END__ + + =head1 PLUGIN DESCRIPTION + + . + + =cut + +``` + +[Table of contents](#table_of_contents) + +
+ +## 8. Tutorials + +To help users to understand the most popular plugins you can find several tutorials to help you to develop your first plugin. + +* [API plugin tutorial](tutorial-api.md) +* [SNMP plugin tutorial](tutorial-snmp.md) +* [Service discovery tutorial](tutorial-service_discovery.md) + +[Table of contents](#table_of_contents) + +
+ +## 9. Commit and Fatpack generation + +### 9.1. Commit and push + +When you have finished your plugin development, before committing a plugin, you need to create an **enhancement ticket** on the +centreon-plugins forge : http://forge.centreon.com/projects/centreon-plugins + +Once plugin and modes are developed, you can commit (commit messages in english) +and push your work: + +```shell + git add path/to/plugin + git commit -m "Add new plugin for XXXX refs #" + git push +``` + +### 9.2 FatPack generation + +Centreon plugin-pack use plugins through FatPack format. +To convert your plugin into Fatpack format follow this steps : + +Install libapp-fatpacker-perl +```shell +sudo apt install libapp-fatpacker-perl +``` + +Create a shell script ```plugin_generator.sh``` + +```shell +#!/bin/bash + +BuildDir=/home//fatpack_generator #Directory path where build the fatpack +GitPluginBranch=my-first-plugin #Branch you have create in "Set up your environment" section +PluginPath=cloud/docker/local #Path from src to your plugin directory +PluginPathMode=cloud/docker/local/mode #Path from src to your plugin mode directory +ScriptName=centreon_docker_ssh #Set the name of your Fatpack.pl / This name is the one used in plugin-pack + +if [ ! -d "$BuildDir" ]; then + echo 'Create BuildDir' + mkdir $BuildDir +fi +cd $BuildDir + +if [ -d "centreon-plugins" ]; then + echo 'Update centreon-plugins' + cd centreon-plugins + git checkout develop -f + git fetch + git checkout $GitPluginBranch -f + git pull + cd .. +else + echo 'Clone centreon-plugins' + git clone --branch $GitPluginBranch https://github.com/centreon/centreon-plugins.git +fi + +if [ -d "plugin" ]; then + echo 'Remove plugin' + rm -R plugin +fi +echo 'Create plugin/lib' +mkdir -p plugin/lib +cd $BuildDir/centreon-plugins/src +echo $PWD +echo 'Find pm' +find . -name "*.pm" -exec sed -i ' /__END__/d' {} \; + +echo 'Copy common plugins files' +cp -R --parent centreon/plugins/{http,misc,mode,options,output,perfdata,script,statefile,values}.pm centreon/plugins/backend/ centreon/plugins/templates/ centreon/plugins/alternative/ ../../plugin/lib/ +echo 'Copy centreon_plugins.pl' +cp centreon_plugins.pl ../../plugin +echo 'Prepare fatpacker' +cp -R --parent $PluginPathMode ../../plugin/lib/ +sed -i 's/alternative_fatpacker = 0/alternative_fatpacker = 1/' ../../plugin/lib/centreon/plugins/script.pm + +echo 'Copy plugin files' +cp -R --parent centreon/plugins/{script_snmp,snmp}.pm $PluginPath snmp_standard/mode/{cpu,cpudetailed,diskio,diskusage,inodes,interfaces,loadaverage,listdiskspath,listinterfaces,liststorages,memory,processcount,storage,swap,ntp,tcpcon,uptime}.pm snmp_standard/mode/resources/ ../../plugin/lib/ + +cd ../../plugin +echo 'Generate fatpack' +fatpack file centreon_plugins.pl > $ScriptName.pl +``` + +Execute plugin_generator.sh +```shell +sudo ./plugin_generator.sh +``` + +You can find your FatPack plugin in the folder plugin in ```BuildDir/plugin``` + +[Table of contents](#table_of_contents) + +
+ +## 10. Plugin outputs + +### 10.1 Formatting + +The output of a monitoring probe must always be: + +```bash +STATUS: Information text | metric1=[UOM];;;; metric2=value[OEM];;;; \n +Line 1 containing additional details \n +Line 2 containing additional details \n +Line 3 containing additional details \n +``` + +Let’s identify and name its three main parts: + +* Short output: everything before the pipe (`|`) +* Performance data and Metrics: everything after the pipe (`|`) +* Extended output: Everything after the first carriage return (`\n`), splitting each detail line is the best practice. + +### 10.2 Short output + +This part is the one users will more likely see in their monitoring tool or obtain as part of a push/alert message. The information should be straightforward and help identify what is going on quickly. + +A plugin must always propose at least such output: + +```bash +STATUS: Information text +``` + +`STATUS`must stick with return codes: + +* 0: OK +* 1: WARNING +* 2: CRITICAL +* 3: UNKNOWN + +`Information text` should display only relevant information. That implies: + +* showing only the bits of information that led to the NOT-OK state when an alarm is active +* keeping it short. When checking a large number of a single component (e.g. all partitions on a filer), try to construct a global message, then switch to the format above when an alarm arises. + +#### Centreon Plugin example + +The output when checking several storage partitions on a server, when everything is OK: + +`OK: All storages are ok |` + +The output of the same plugin, when one of the storage partition space usages triggers a WARNING threshold: + +`WARNING: Storage '/var/lib' Usage Total: 9.30 GB Used: 956.44 MB (10.04%) Free: 8.37 GB (89.96%) |` + +### 10.3 Performance data and metrics + +This part is not mandatory. However, if you want to benefit from Centreon or Nagios©-like tools with built-in metrology features, you will need to adopt this format: + +`metric1=[UOM];;;;` + +After the equals sign, split each piece of information about the metric using a semi-colon. + +* `metric1=`: The metric’s name is everything before the equals (=) sign. The more detailed it is, the easier it will be to understand a graph or to extend the usability of the metric in a third-party analytics/observability platform. De facto, a metric name must not contain an equals sign. Try to make it self-explanatory even without the Host/Service context. +* ``: The measurement result, must be a number (int, float) +* `[UOM]`: Optional Unit Of Measurement. You can also include the unit in the metric’s name as we do in the Centreon metric naming philosophy. It is one of the following: + * none (no unit specified), when dealing with a number of things (e.g. users, licences, viruses…) + * 's' when dealing with seconds. ‘us’ and ‘ms’ are also valid for microseconds or milliseconds (e.g. response or connection time) + * '%' when dealing with percentage (e.g. memory, CPU, storage space…) + * 'B' (Bytes), when dealing with storage, memory… The Byte must be the default as it ensures compatibility with all Centreon extensions + * When dealing with a network metric or any throughput, ‘b' (Bits). When computing a rate per second, you can use ‘b/s’ +* ``: Optional. Fill it with the user’s value as a WARNING threshold for the metric. +* ``: Optional. Fill it with the user-supplied value as a CRITICAL threshold for the metric. +* ``: Optional. Fill it with the lowest value the metric can take. +* ``: Optional. Fill it with the highest value the metric can take. + +Frequently, you have to manage the case where you have to display the same metric for several instances of things. The best practice is to choose a character to separate the metric name from its instance with a given character. At Centreon, we use the `#` sign, and we strongly recommend you do the same (it is recognised and processed by Centreon-Broker). + +Less frequently, you may want to add even more context; that’s why we created a sub-instance concept following the same principles. Append it to the instance of your metric and use a splitting character to clarify that it is another dimension and not confuse it with the primary instance. We use the `~` sign; once again, we strongly advise you to stick with it whenever it is possible. + +#### Centreon Plugin Performance Data / Metrics examples + +A **system boot partition** + +`'/boot#storage.space.usage.bytes'=255832064B;;0:99579084;0;995790848` + +`/boot` is the instance + +`storage.space.usage.bytes` is the metric name (note the .bytes at the end specifying the unit) + +`B` is the legacy metric’s unit for Bytes. + +Pay attention to the critical threshold (0:99579084), always use the same unit. + +A **network interface** + +`'eth0#interface.traffic.in.bitspersecond'=0.00b/s;;;0;` + +`eth0` is the instance + +`interface.traffic.in.bitspersecond` is the metric name (note the `.persecond` at the end specifying the unit) + +`b/s` is the legacy metric’s unit for bits per second + +A **cloud metric** + +`'azure-central~/var/lib/mysql#azure.insights.logicaldisk.free.percentage'=94.82%;;;0;100` + +`azure-central` is the instance + +`/var/lib/mysql` is the sub-instance + +`azure.insights.logicaldisk.free.percentage` is the metric name (note the `free` instead of `usage`, and `.percentage` at the end to specify the unit) + +`%` is the legacy metric’s unit + +### 10.4 Extended output + +The extended output's primary purpose is to display each bit of collected information separately on a single line. It will only print if the user adds a `--verbose` flag to its command. + +Overall, you should use it to: + +* add extra context (numbered instance, serial number) about a checked component +* print items the check excludes because plugin options have filtered them out +* organize how the information is displayed using groups that follow the logic of the check. + +#### Centreon Plugin example + +Here is an example of a Cisco device environment check: + +```bash +: | +Environment type: other +Checking fans + fan 'Switch X - FAN - T1 1, Normal' status is normal [instance: 1014]. + fan 'Switch X - FAN - T1 2, Normal' status is normal [instance: 1015]. + fan 'Switch X - FAN 1' status is up [instance: 1014] + fan 'Switch X - FAN 2' status is up [instance: 1015] +Checking power supplies + power supply 'Switch X - Power Supply B, Normal' status is normal [instance: 1013] [source: ac] + Power supply 'Switch X - Power Supply B' status is on [instance: 1013] +Checking temperatures + temperature 'Switch X - Inlet Temp Sensor, GREEN ' status is normal [instance: 1010] [value: 23 C] + temperature 'Switch X - Outlet Temp Sensor, GREEN ' status is normal [instance: 1011] [value: 30 C] + temperature 'Switch X - HotSpot Temp Sensor, GREEN ' status is normal [instance: 1012] [value: 41 C] +Checking voltages +Checking modules + module 'C9200L-48P-4G' status is ok [instance: 1000] +Checking physicals +Checking sensors + sensor 'Switch X - Temp Inlet Sensor 0' status is 'ok' [instance: 1010] [value: 23 celsius] + sensor 'Switch X - Temp Outlet Sensor 1' status is 'ok' [instance: 1011] [value: 30 celsius] + sensor 'Switch X - Temp Hotspot Sensor 2' status is 'ok' [instance: 1012] [value: 41 celsius] + sensor 'GigabitEthernet1/1/1 Module Temperature Sensor' status is 'ok' [instance: 1115] [value: 29.2 celsius] + sensor 'GigabitEthernet1/1/1 Supply Voltage Sensor' status is 'ok' [instance: 1116] [value: 3.3 voltsDC] + sensor 'GigabitEthernet1/1/1 Bias Current Sensor' status is 'ok' [instance: 1117] [value: 0.0202 amperes] + sensor 'GigabitEthernet1/1/1 Transmit Power Sensor' status is 'ok' [instance: 1118] [value: -4.5 dBm] + sensor 'GigabitEthernet1/1/1 Receive Power Sensor' status is 'ok' [instance: 1119] [value: -1.2 dBm] +``` + +[Table of contents](#table_of_contents) + +
+ +## 11. Plugins Options + +Option management is a central piece of a successful plugin. You should: + +* Carefully name your options to make them **self-explanatory** +* For a given option, there are two possible behaviours (but only one can apply to a given option): flag (boolean) to enable an option and value, where an additional argument must be provided to set the option's value. +* Always **check** the values supplied by the user and print a **clear message** when they do not fit with plugin requirements +* Set the option to a default value when relevant + +[Table of contents](#table_of_contents) + +
+ +## 12. Discovery + +This section describes how you should format your data to comply with the requirements of Centreon Discovery UI modules. + +In a nutshell: + +* [host discovery](/docs/monitoring/discovery/hosts-discovery) allows you to return a JSON list the autodiscovery module will understand so the user can choose to automatically or manually add to its monitoring configuration. Optionally, it can use one of the discovered items properties to make some decisions (filter in or out, create or assign a specific host group, etc.) +* [service discovery](/docs/monitoring/discovery/services-discovery) allows you to return XML data to help users configure unitary checks and link them to a given host (e.g. each VPN definition in AWS VPN, each network interface on a router...). + +There's no choice here; you should stick with the guidelines described here after if you want your code to be fully compliant with our modules. + +### 12.1 Hosts + +The discovery plugin can be a specific script or a particular execution mode enabled with an option. In centreon-plugins, we do it through dedicated `discovery*.pm` modes. + +This execution mode is limited to a query toward a cloud provider, an application, or whatever contains a list of assets. The expected output must hold some keys: + +* `end_time`: the unix timestamp when the execution stops +* `start_time`: the unix timestamp when the execution starts +* `duration`: the duration in seconds (`end_time - start_time`) +* `discovered_items`: the number of discovered items +* `results`: an array of hashes, each hash being a collection of key/values describing the discovered assets. + +```json title='Sample host discovery output' +{ + "end_time" : 1649431535, + "start_time" : 1649431534, + "duration" : 1, + "discovered_items" : 2, + "results" : [ + { + "public_dns_name" : "ec2-name.eu-west-1.compute.amazonaws.com", + "name" : "prod-ec2", + "key_name" : "prd-aws-ec2", + "tags" : [ + { + "value" : "Licences Management", + "key" : "Desc" + }, + { + "value" : "CI", + "key" : "Billing" + } + ], + "state" : "running", + "private_dns_name" : "ip-W-X-Y-Z.eu-west-1.compute.internal", + "vpc_id" : "vpc-xxxveafea", + "type" : "ec2", + "id" : "i-3feafea", + "private_ip" : "W.X.Y.Z", + "instance_type" : "t2.medium" + }, + { + "public_dns_name" : "other-ec2-name.eu-west-1.compute.amazonaws.com", + "name" : "prod-other-ec2", + "key_name" : "prd-aws-ec2", + "tags" : [ + { + "value" : "Licences Management", + "key" : "Desc" + }, + { + "value" : "CI", + "key" : "Billing" + } + ], + "state" : "running", + "private_dns_name" : "ip-A-B-C-D.eu-west-1.compute.internal", + "vpc_id" : "vpc-xxxveafea", + "type" : "ec2", + "id" : "i-3gfbgfb", + "private_ip" : "A.B.C.D", + "instance_type" : "t2.medium" + } + ] +} +``` + +You can use more advanced structures for values in the result sets, it can be: + +* an array of hashes: + +```json title='Nmap discovery - Tags' +"services" : [ + { + "name" : "ssh", + "port" : "22/tcp" + }, + { + "port" : "80/tcp", + "name" : "http" + } +] +``` + +* a flat array: + +```json title='VMWare discovery - IP vMotion' +"ip_vmotion" : [ + "10.10.5.21", + "10.30.5.21" +], +``` + +Using these structures is convenient when you need to group object properties behind a single key. + +On the users' side, it allows using these values to filter in or out some of the results or make a better choice +about the host template for a given discovered host. + +### 12.2 Services + +Service discovery relies on XML to return information that will be parsed and used by the UI module to +create new services efficiently. + +As for hosts, it can be an option at runtime, or an execution mode. In centreon-plugins, we choose to have dedicated +`list.pm` modes. + +All `list.pm` modes contain two options that will return properties and results that will be used in the +discovery rules definitions. + +The first service discovery option is `--disco-format`, it enables the plugin to return the supported keys in the rule: + +```bash title='Linux Network int --disco-format output' +-bash-4.2$ /usr/lib/centreon/plugins/centreon_linux_snmp.pl --plugin=os::linux::snmp::plugin --mode=list-interfaces --hostname=127.0.0.1 --disco-format + + + name + total + status + interfaceid + type + +``` + +The output above shows that the discovery of network interfaces on Linux will return those properties: + +- `name`: the name of the interface +- `total`: the maximum bandwidth supported +- `status`: the configuration status of the interface (convenient to exclude administratively down interfaces) +- `interfaceid`: the id +- `type`: interface type (like ethernet, fiber, loopback, etc.) + +Executing exactly the same command, substituting `--disco-format` with `--disco-show` will output the discovered interfaces: + +```bash title='Linux Network int --disco-show output' +/usr/lib/centreon/plugins/centreon_linux_snmp.pl --plugin=os::linux::snmp::plugin --mode=list-interfaces --hostname=127.0.0.1 --disco-show + + + +``` + +The result contains one line per interface and each line contains each set of properties as a `key="value"` pair. Note that even if +no data is obtained for a given key, it still has to be displayed (e.g `total=""`). + +[Table of contents](#table_of_contents) + +
+ +## 13. Performances + +A monitoring plugin has to do one thing and do it right - it's important to code your plugin with the idea to make +it as efficient as possible. Keep in mind that your Plugin might run every minute, against a large +number of devices, so a minor optimization can result in important benefits at scale. + +Also think about the 'thing' you're monitoring, it's important to always try to reduce the overhead of a check +from the monitored object point of view. + +### 13.1 Execution time + +The most basic way to bench a plugin performance is its execution time. Use the +`time` command utility to run your check and measure over several runs how it behaves. + +### 13.2 Cache + +In some cases, it can be interesting to cache some information. + +Caching in a local file might save some calls against an API, for example do not authenticate at every check. +When possible, use the token obtained at the first check and stored in the cache file to only call the +authentication endpoint when it's absolutely necessary. + +More generally, when an identifier, name or anything that would never change across different executions requires a +request against the third-party system, cache it to optimize single-check processing time. + +### 13.3 Algorithm + +Optimizing the number of requests against a third-party system can also lie in the check algorithm. Prefer scraping +the maximum of data in one check and then filter the results programmatically instead of issuing multiple very specific +requests that would result in longer execution time and greater load on the target system. + +### 13.4 Timeout + +A Plugin must always include a timeout to avoid never ending checks that might overload your monitoring +system when something is broken and that, for any reason, the plugin cannot obtain the information. + +[Table of contents](#table_of_contents) + +
+ +## 14. Security + +### 14.1 System commands + +If the plugin requires to execute a command at the operating system level, and users can modify the command name or +its parameters, make sure that nobody can leverage your plugin's capabilities to break the underlying +system or access sensitive information. + +#### 14.2 Dependencies + +There is no need to re-invent the wheel: standard centreon-plugins dependencies provide you with the most common +external libraries that might be required to write a new plugin. + +Don't overuse large libraries that might end being unsupported or where some governance modification might lead to +security problems. + +[Table of contents](#table_of_contents) + +
+ +## 15. Help and documentation + +For each plugin, the minimum documentation is the help, you have to explain to users what the plugin +is doing and how they can use the built-in options to achieve their own alerting scenario. + +You can look at how we handle help at mode level with the centreon-plugins framework [here](develop-with-centreon-plugins.md). + +[Table of contents](#table_of_contents) diff --git a/doc/en/developer/tutorial-api.md b/doc/en/developer/tutorial-api.md new file mode 100644 index 000000000..ebb618ee7 --- /dev/null +++ b/doc/en/developer/tutorial-api.md @@ -0,0 +1,1101 @@ +# API plugin tutorial + +All files showed in this section can be found on the centreon-plugins GitHub in +the [tutorial](https://github.com/centreon/centreon-plugins/tree/develop/src/contrib/tutorial) **contrib** +section. + +> You have to move the contents of `contrib/tutorial/apps/` to `apps/` if you want to run it for testing purposes. +> +> `cp -R src/contrib/tutorial/apps/* src/apps/` + +**Context: simple JSON health API** + +In this tutorial, we will create a very simple probe checking an application's health +displayed in JSON through a simple API. + +You can mockup an API with the free [mocky](https://designer.mocky.io/) tool. +We created one for this tutorial, test it with `curl https://run.mocky.io/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656` + +It returns the following output: + +```json title="my-awesome-app health JSON" +{ + "health": "yellow", + "db_queries":{ + "select": 1230, + "update": 640, + "delete": 44 + }, + "connections":[ + { + "component": "my-awesome-frontend", + "value": 122 + }, + { + "component": "my-awesome-db", + "value": 92 + } + ], + "errors":[ + { + "component": "my-awesome-frontend", + "value": 32 + }, + { + "component": "my-awesome-db", + "value": 27 + } + ] +} +``` + +## 1. Understand the data + +Understanding the data is very important as it will drive the way you will design +the **mode** internals. This is the **first thing to do**, no matter what protocol you +are using. + +There are several important properties for a piece of data: + +- Type of the data to process: string, int... There is no limitation in the kind of data you can process +- Dimensions of the data, is it **global** or linked to an **instance**? +- Data layout, in other words anticipate the kind of **data structure** to manipulate. + +In our example, the most common things are present. We can summarize it like that: + +- the `health` node is **global** data and is a string. Structure is a simple *key/value* pair +- the `db_queries` node is a collection of **global** integer values about the database. Structure is a hash containing multiple key/value pairs +- the `connections` node contains integer values (`122`, `92`) referring to specific **instances** (`my-awesome-frontend`, `my-awesome-db`). The structure is an array of hashes +- `errors` is the same as `connections` except the data itself tracks errors instead of connections. + +Understanding this will be important to code it correctly. + +## 2. Create directories for a new plugin + +Create directories and files required for your **plugin** and **modes**. + +Go to your centreon-plugins local git and create the appropriate directories and files: + +```shell +# path to the main directory and the subdirectory containing modes +mkdir -p src/apps/myawesomeapp/api/mode/ +# path to the main plugin file +touch src/apps/myawesomeapp/api/plugin.pm +# path to the specific mode(s) file(s) => for example appsmetrics.pm +touch src/apps/myawesomeapp/api/mode/appsmetrics.pm +``` + +## 3. Create the plugin file : plugin.pm + +Here is the commented version of the plugin.pm file: + +```perl title="my-awesome-app plugin.pm file" +[.. license and copyright things ..] + +# Name of your perl package +package apps::myawesomeapp::api::plugin; + +# Always use strict and warnings, will guarantee that your code is clean and help debugging it +use strict; +use warnings; +# Load the base for your plugin, here we don't do SNMP, SQL or have a custom directory, so we use the _simple base +use base qw(centreon::plugins::script_simple); + +# Global sub to create and return the perl object. Don't bother understand what each instruction is doing. +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + # A version, we don't really use it but could help if your want to version your code + $self->{version} = '0.1'; + # Important part! + # On the left, the name of the mode as users will use it in their command line + # On the right, the path to the file (note that .pm is not present at the end) + $self->{modes} = { + 'app-metrics' => 'apps::myawesomeapp::api::mode::appmetrics' + }; + + return $self; +} + +# Declare this file as a perl module/package +1; + +# Beginning of the documenation/help. `__END__` Specify to the interpreter that instructions below don't need to be compiled +# =head1 [..] Specify the section level and the label when using the plugin with --help +# Check my-awesome [..] Quick overview of wath the plugin is doing +# =cut Close the head1 section + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check my-awesome-app health and metrics through its custom API + +=cut +``` + +Your first dummy plugin is working, congrats! + +Run this command: + +`perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --list-mode` + +It already outputs a lot of things. Ellipsized lines are basically all standard capabilities +inherited from the **script_custom** base. + +You probably already recognized things you've previsously defined in your **plugin.pm** module. + +```perl + +Plugin Description: + Check my-awesome-app health and metrics through its custom API + +Global Options: + --mode Choose a mode. +[..] + --version + Display plugin version. +[..] + +Modes Available: + app-metrics +``` + +## 4. Create the mode file : appmetrics.pm + +The `appmetrics.pm` file will contain your code, in other words, all the instructions to: + +- Declare options for the mode +- Connect to **run.mocky.io** over HTTPS +- Get the JSON from the **/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656** endpoint +- Extract information and format it to be compliant with Centreon. + +Let's build it iteratively. + +> Important note: function (sub) names must not be modified. For example, you cannot +> choose to rename `check_options` to `option_check`. + +### 4.1 Common declarations and subs + +```perl +# Path to your package. '::' instead of '/', and no .pm at the end. +package apps::myawesomeapp::api::mode::appmetrics; + +# Don't forget these ;) +use strict; +use warnings; +# We want to connect to an HTTP server, let's use the common module +use centreon::plugins::http; +# Use the counter module. It will save you a lot of work and will manage a lot of things for you. +# Consider this as mandatory when writing a new mode. +use base qw(centreon::plugins::templates::counter); +# Import some functions that will make your life easier +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +# We will have to process some JSON, no need to reinvent the wheel, load the lib you installed in a previous section +use JSON::XS; +``` + +Add a `new` function (sub) to initialize the mode: + +```perl +sub new { + my ($class, %options) = @_; + # All options/properties of this mode, always add the force_new_perfdata => 1 to enable new metric/performance data naming. + # It also where you can specify that the plugin uses a cache file for example + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + # This is where you can specify options/arguments your plugin supports. + # All options here stick to what the centreon::plugins::http module needs to establish a connection + # You don't have to specify all options from the http module, only the one that the user may want to tweak for its needs + $options{options}->add_options(arguments => { + # On the left it's the option name that will be used in the command line. The ':s' at the end is to + # define that this options takes a value. + # On the right, it's the code name for this option, optionally you can define a default value so the user + # doesn't have to set it + 'hostname:s' => { name => 'hostname' }, + 'proto:s' => { name => 'proto', default => 'https' }, + 'port:s' => { name => 'port', default => 443 }, + 'timeout:s' => { name => 'timeout' }, + # These options are here to defined conditions about which status the plugin will return regarding HTTP response code + 'unknown-status:s' => { name => 'unknown_status', default => '%{http_code} < 200 or %{http_code} >= 300' }, + 'warning-status:s' => { name => 'warning_status' }, + 'critical-status:s' => { name => 'critical_status', default => '' } + }); + + # This is to create a local copy of a centreon::plugins::http that we will manipulate + # %options basically overwrite default http value with key/value pairs from options above to instantiate the http module + # Ref https://github.com/centreon/centreon-plugins/blob/520a1f8c10cd434c6dedd1e342285eecff8b9d1b/centreon/plugins/http.pm#L59 + $self->{http} = centreon::plugins::http->new(%options); + return $self; +} +``` + +Add a `check_options` function. This sub will execute right after `new` and allow you to check that the user passed + mandatory parameter(s) and in some case check that the format is correct. + +```perl +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + # Check if the user provided a value for --hostname option. If not, display a message and exit + if (!defined($self->{option_results}->{hostname}) || $self->{option_results}->{hostname} eq '') { + $self->{output}->add_option_msg(short_msg => 'Please set hostname option'); + $self->{output}->option_exit(); + } + # Set parameters for http module, note that the $self->{option_results} is a hash containing + # all your options key/value pairs. + $self->{http}->set_options(%{$self->{option_results}}); +} + +1; +``` + +Nice work, you now have a mode that can be executed without errors! + +Run this command `perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics`, which +outputs this message: + +`UNKNOWN: Please set hostname option` + +Now let's do some monitoring thanks to centreon-plugins. + +### 4.2 Declare your counters + +This part essentially maps the data you want to get from the API with the internal +counter mode structure. + +Remember how we categorized the data in the previous section understand-the-data. + +The `$self->{maps_counters_type}` data structure describes these data while the `$self->{maps_counters}->{global}` one defines +their properties like thresholds and how they will be displayed to the users. + +```perl +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + # health and queries are global metric, they don't refer to a specific instance. + # In other words, you cannot get several values for health or queries + # That's why the type is 0. + { name => 'health', type => 0, cb_prefix_output => 'prefix_health_output' }, + { name => 'queries', type => 0, cb_prefix_output => 'prefix_queries_output' }, + # app_metrics groups connections and errors and each will receive value for both instances (my-awesome-frontend and my-awesome-db) + # the type => 1 explicits that + # as above, you can define a callback (cb) function to manage the output prefix. This function is called + # each time a value is passed to the counter and can be shared across multiple counters. + { name => 'app_metrics', type => 1, cb_prefix_output => 'prefix_app_output' } + ]; + + $self->{maps_counters}->{health} = [ + # This counter is specific because it deals with a string value + { + label => 'health', + # All properties below (before et) are related to the catalog_status_ng catalog function imported at the top of our mode + type => 2, + # These properties allow you to define default thresholds for each status but not mandatory. + warning_default => '%{health} =~ /yellow/', + critical_default => '%{health} =~ /red/', + # To simplify, manage things related to how get value in the counter, what to display and specific threshold + # check because of the type of the data (string) + set => { + key_values => [ { name => 'health' } ], + output_template => 'status: %s', + # Force ignoring perfdata as the collected data is a string + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; + $self->{maps_counters}->{queries} = [ + # The label defines options name, a --warning-select and --critical-select will be added to the mode + # The nlabel is the name of your performance data / metric that will show up in your graph + { + label => 'select', + nlabel => 'myawesomeapp.db.queries.select.count', + set => { + # Key value name is the name we will use to pass the data to this counter. You can have several ones. + key_values => [ { name => 'select' } ], + # Output template describe how the value will display + output_template => 'select: %s', + # Perfdata array allow you to define relevant metrics properties (min, max) and its sprintf template format + perfdatas => [ + { template => '%d', min => 0 } + ] + } + }, + { label => 'update', nlabel => 'myawesomeapp.db.queries.update.count', set => { + key_values => [ { name => 'update' } ], + output_template => 'update: %s', + perfdatas => [ + { template => '%d', min => 0 } + ] + } + }, + { label => 'delete', nlabel => 'myawesomeapp.db.queries.delete.count', set => { + key_values => [ { name => 'delete' } ], + output_template => 'delete: %s', + perfdatas => [ + { template => '%d', min => 0 } + ] + } + } + ]; + $self->{maps_counters}->{app_metrics} = [ + # The app_metrics has two different labels, connection and errors. + { label => 'connections', nlabel => 'myawesomeapp.connections.count', set => { + # pay attention the extra display key_value. It will receive the instance value. (my-awesome-db, my-awesome-frontend). + # the display key_value isn't mandatory but we show it here for education purpose + key_values => [ { name => 'connections' }, { name => 'display' } ], + output_template => 'connections: %s', + perfdatas => [ + # we add the label_extra_instance option to have one perfdata per instance + { template => '%d', min => 0, label_extra_instance => 1 } + ] + } + }, + { label => 'errors', nlabel => 'myawesomeapp.errors.count', set => { + key_values => [ { name => 'errors' }, { name => 'display' } ], + output_template => 'errors: %s', + perfdatas => [ + { template => '%d', min => 0, label_extra_instance => 1 } + ] + } + } + ]; +} + +# This should always be present at the end of the script. +1; +``` + +> Remember to always move the final `1;` instruction at the end of the script when you add new lines during this tutorial. + +The mode compiles. Run the command +supplying a value to the `--hostname` option to see what it displays: + +```shell +perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname=fakehost +OK: status : skipped (no value(s)) - select : skipped (no value(s)), update : skipped (no value(s)), delete : skipped (no value(s)) +``` + +You can see some of your counters with the `skipped (no value(s))`, it's normal, this is because we +just created the counters definition and structure but didn't push any values into it. + +### 4.3 Create prefix callback functions + +These functions are not mandatory but help to make the output more readable for a human. We will create +it now but as you have noticed the mode compiles so you can choose to keep those for the polishing moment. + +During counters definitions, we associated a callback function to each of them: + +- `cb_prefix_output => 'prefix_health_output'` +- `cb_prefix_output => 'prefix_queries_output'` +- `cb_prefix_output => 'prefix_app_output'` + +Define those functions by adding it to our `appmetrics.pm` file. They are self-explanatory. + +```perl +sub prefix_health_output { + my ($self, %options) = @_; + + return 'My-awesome-app:'; +} + +sub prefix_queries_output { + my ($self, %options) = @_; + + return 'Queries:'; +} + +sub prefix_app_output { + my ($self, %options) = @_; + + # This notation allows you to return the value of the instance (the display key_value) + # to bring some context to the output. + return "'" . $options{instance_value}->{display} . "' "; +} + +1; +``` + +Execute your command and check that the output matches the one below: + +```shell +perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname=fakehost +OK: My-awesome-app: status : skipped (no value(s)) - Queries: select : skipped (no value(s)), update : skipped (no value(s)), delete : skipped (no value(s)) +``` + +The output is easier to read and separators are visible between global counters. + +### 4.4 Get raw data from API and understand the data structure + +It's the moment to write the main sub (`manage_selection`) - the most complex, but also the one that +will transform your mode to something useful and alive. + +Think about the logic, what we have to do is: + +- Connect to **run.mocky.io** over HTTPS +- Query a specific path corresponding to our API +- Store and process the result +- Spread this result across counters definitions + +Start by writing the code to connect to **run.mocky.io**. It is where the centreon-plugins +framework delivers its power. + +> All print instructions are available as commented code in the GitHub tutorial resources. + +Write the request and add a print to display the received data: + +```perl +sub manage_selection { + my ($self, %options) = @_; + # We have already loaded all things required for the http module + # Use the request method from the module to run the GET request against the path + my ($content) = $self->{http}->request(url_path => '/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656'); + print $content . "\n"; +} + +1; +``` + +Run this command `perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname=run.mocky.io`. + +The output should be: + +```perl title="Basic raw content print" +{ + "health": "yellow", + "db_queries":{ + "select": 1230, + "update": 640, + "delete": 44 + }, + "connections":[ + { + "component": "my-awesome-frontend", + "value": 122 + }, + { + "component": "my-awesome-db", + "value": 92 + } + ], + "errors":[ + { + "component": "my-awesome-frontend", + "value": 32 + }, + { + "component": "my-awesome-db", + "value": 27 + } + ] +} +OK: My-awesome-app: status : skipped (no value(s)) - Queries: select : skipped (no value(s)), update : skipped (no value(s)), delete : skipped (no value(s)) +``` + +Add an `eval` structure to transform `$content` into a data structure that can be easily manipulated with perl. Let's +introduce the standard `Data::Dumper` library that can help understanding your data structures. + +We load the Data::Dumper library and use one of its methods to print the JSON. A second line is here to print +a simple message and get you familiar with how to access data within perl data structures. + +```perl +sub manage_selection { + my ($self, %options) = @_; + # We have already loaded all things required for the http module + # Use the request method from the imported module to run the GET request against the URL path of our API + my ($content) = $self->{http}->request(url_path => '/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656'); + + # Declare a scalar deserialize the JSON content string into a perl data structure + my $decoded_content; + eval { + $decoded_content = JSON::XS->new->decode($content); + }; + # Catch the error that may arise in case the data received is not JSON + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot encode JSON result"); + $self->{output}->option_exit(); + } + use Data::Dumper; + print Dumper($decoded_content); + print "My App health is '" . $decoded_content->{health} . "'\n"; +} + +1; +``` + +Run the command `perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname=run.mocky.io` +again and see how it changed. + +You now have your JSON deserialized into a perl `$VAR1` which represents your `$decoded_content` structure. + +You can also note the result of the latest print and how we accessed the `yellow` value. + +```shell tile="Perl data structure from JSON" +$VAR1 = { + 'connections' => [ + { + 'component' => 'my-awesome-frontend', + 'value' => 122 + }, + { + 'value' => 92, + 'component' => 'my-awesome-db' + } + ], + 'health' => 'yellow', + 'errors' => [ + { + 'value' => 32, + 'component' => 'my-awesome-frontend' + }, + { + 'value' => 27, + 'component' => 'my-awesome-db' + } + ], + 'db_queries' => { + 'select' => 1230, + 'update' => 640, + 'delete' => 44 + } + }; +My App health is 'yellow' +``` + +### 4.5 Push data to global counters (type => 0) + +Now that we know our data structure and how to access the values, we have to assign this +value to the counters we initially defined. Pay attention to the comments above +the `$self->{health}` and `$self->{db_queries}` assignations. + +```perl title="Global counters (type => 0)" +sub manage_selection { + my ($self, %options) = @_; + # We have already loaded all things required for the http module + # Use the request method from the imported module to run the GET request against the URL path of our API + my ($content) = $self->{http}->request(url_path => '/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656'); + # Uncomment the line below when you reached this part of the tutorial. + # print $content; + + # Declare a scalar deserialize the JSON content string into a perl data structure + my $decoded_content; + eval { + $decoded_content = JSON::XS->new->decode($content); + }; + # Catch the error that may arise in case the data received is not JSON + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot encode JSON result"); + $self->{output}->option_exit(); + } + # Uncomment the lines below when you reached this part of the tutorial. + # use Data::Dumper; + # print Dumper($decoded_content); + # print "My App health is '" . $decoded_content->{health} . "'\n"; + + # Here is where the counter magic happens. + + # $self->{health} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained string $decoded_content->{health} with the health key_value in the counter. + $self->{health} = { + health => $decoded_content->{health} + }; + + # $self->{queries} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained values from the db_queries nodes with the key_value defined in the counter. + $self->{queries} = { + select => $decoded_content->{db_queries}->{select}, + update => $decoded_content->{db_queries}->{update}, + delete => $decoded_content->{db_queries}->{delete} + }; + +} + +1; +``` + +Let's run our command again: no more `skipped (no value(s))` message. You even get a +WARNING state because of the `yellow` app state. + +```shell +perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname=run.mocky.io +WARNING: My-awesome-app status: yellow | 'myawesomeapp.db.queries.select.count'=1230;;;0; 'myawesomeapp.db.queries.update.count'=640;;;0; 'myawesomeapp.db.queries.delete.count'=44;;;0; +``` + +Performance data confirm that values for database queries are correctly set as well. + +This is how the counters mode template work (`use base qw(centreon::plugins::templates::counter);`), the only thing you have +to do is getting the data from the thing you have to monitor and push it to a counter definition. + +Behind the scenes, it manages a lot of things for you: + +- Options: `--warning-health --warning-select --warning-update --warning-delete and --critical-` have automatically been defined +- Performance data: thanks to `nlabel` and values from `perfdatas:[]` array in your counters +- Display: It writes the status and substitutes values with the one assigned to the counter + +Now, you probably understand better why the preparation work about understanding collected data and the counter definition part is essential: simply because it's the bigger part of the job. + +### 4.6 Push data to counters having an instance (type => 1) + +Now let's deal with counters with instances. That means that the same counters will +receive multiple data, each of these data refering to a specific dimension. + +They require to be manipulated in a slightly different way as we will have to specify the +name we want to associate with the data. + +First, we have to loop over both `connections` and `errors` arrays to access the app name and +measured value and then spread it within counters. + +```perl title="Counters with instances (type 1)" +sub manage_selection { + my ($self, %options) = @_; + # We have already loaded all things required for the http module + # Use the request method from the imported module to run the GET request against the URL path of our API + my ($content) = $self->{http}->request(url_path => '/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656'); + # Uncomment the line below when you reached this part of the tutorial. + # print $content; + + # Declare a scalar deserialize the JSON content string into a perl data structure + my $decoded_content; + eval { + $decoded_content = JSON::XS->new->decode($content); + }; + # Catch the error that may arise in case the data received is not JSON + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot encode JSON result"); + $self->{output}->option_exit(); + } + # Uncomment the lines below when you reached this part of the tutorial. + # use Data::Dumper; + # print Dumper($decoded_content); + # print "My App health is '" . $decoded_content->{health} . "'\n"; + + # Here is where the counter magic happens. + + # $self->{health} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained string $decoded_content->{health} with the health key_value in the counter. + $self->{health} = { + health => $decoded_content->{health} + }; + + # $self->{queries} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained values from the db_queries nodes with the key_value defined in the counter. + $self->{queries} = { + select => $decoded_content->{db_queries}->{select}, + update => $decoded_content->{db_queries}->{update}, + delete => $decoded_content->{db_queries}->{delete} + }; + + # Initialize an empty app_metrics counter. + $self->{app_metrics} = {}; + # Loop in the connections array of hashes + foreach my $entry (@{ $decoded_content->{connections} }) { + # Same logic than type => 0 counters but an extra key $entry->{component} to associate the value + # with a specific instance + $self->{app_metrics}->{ $entry->{component} }->{display} = $entry->{component}; + $self->{app_metrics}->{ $entry->{component} }->{connections} = $entry->{value}; + }; + + # Exactly the same thing with errors + foreach my $entry (@{ $decoded_content->{errors} }) { + # Don't need to redefine the display key, just assign a value to the error key_value while + # keeping the $entry->{component} key to associate the value with the good instance + $self->{app_metrics}->{ $entry->{component} }->{errors} = $entry->{value}; + }; + +} + +1; +``` + +Your `app-metrics` mode is (almost) complete. Once again, the counters template managed a lot +behind the scenes. + +Execute this command to see how it evolved since the last execution. We modify the command with some +additional parameters: + +- `--warning-health='%{health} eq "care"'` to avoid getting a WARNING, put any value that will not match yellow. Providing it +as a parameter will automatically override the hardcoded default code value +- `--verbose` will display the long output and the details for each `type => 1` counters + +```shell +perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname=run.mocky.io --warning-health='%{health} eq "care"' --verbose +``` + +Here is the expected output: + +```shell +OK: My-awesome-app status: yellow - Queries: select: 1230, update: 640, delete: 44 | 'myawesomeapp.db.queries.select.count'=1230;;;0; 'myawesomeapp.db.queries.update.count'=640;;;0; 'myawesomeapp.db.queries.delete.count'=44;;;0; 'my-awesome-db#myawesomeapp.connections.count'=92;;;0; 'my-awesome-db#myawesomeapp.errors.count'=27;;;0; 'my-awesome-frontend#myawesomeapp.connections.count'=122;;;0; 'my-awesome-frontend#myawesomeapp.errors.count'=32;;;0; +'my-awesome-db' connections: 92, errors: 27 +'my-awesome-frontend' connections: 122, errors: 32 +``` + +You now get metrics displayed for both components `'my-awesome-db'` and `'my-awesome-frontend'` and also performance data +for your graphs. Note how the counter template automatically added the instance dimension on the left of the `nlabel` defined +for each counters: **my-awesome-frontend#** myawesomeapp.errors.count'=32;;;0; + +### 4.7 Help section and assistant to build your centreon objects + +Last but not least, you need to write a help section to explain users what your mode is +doing and what options they can use. + +The centreon-plugins framework has a built-in assistant to help you with the list of counters +and options. + +Run this command to obtain a summary that will simplify the work of creating Centreon commands and write +the mode's help: + +```shell +perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --hostname='anyvalue' --list-counters --verbose +``` + +Get information from its output (shown below) to start building your mode's help: + +```shell +counter list: select update delete health connections errors +configuration: --warning-select='$_SERVICEWARNINGSELECT$' --critical-select='$_SERVICECRITICALSELECT$' --warning-update='$_SERVICEWARNINGUPDATE$' --critical-update='$_SERVICECRITICALUPDATE$' --warning-delete='$_SERVICEWARNINGDELETE$' --critical-delete='$_SERVICECRITICALDELETE$' --warning-health='$_SERVICEWARNINGHEALTH$' --critical-health='$_SERVICECRITICALHEALTH$' --warning-connections='$_SERVICEWARNINGCONNECTIONS$' --critical-connections='$_SERVICECRITICALCONNECTIONS$' --warning-errors='$_SERVICEWARNINGERRORS$' --critical-errors='$_SERVICECRITICALERRORS$' +``` + +Here is how you can write the help, note that this time you will add the content after the `1;` and add the same +`__END__` instruction like you did in the `plugin.pm` file. + + +```perl title="Help section" +__END__ + +=head1 MODE + +Check my-awesome-app metrics exposed through its API + +=over 8 + +=item B<--warning/critical-health> + +Warning and critical threshold for application health string. + +Defaults values are: --warning-health='%{health} eq "yellow"' --critical-health='%{health} eq "red"' + +=item B<--warning/critical-select> + +Warning and critical threshold for select queries + +=item B<--warning/critical-update> + +Warning and critical threshold for update queries + +=item B<--warning/critical-delete> + +Warning and critical threshold for delete queries + +=item B<--warning/critical-connections> + +Warning and critical threshold for connections + +=item B<--warning/critical-errors> + +Warning and critical threshold for errors + +=back +``` + +You're done! You can enjoy a complete plugin and mode and the help now displays in a specific +mode section: + + +```shell +perl centreon_plugins.pl --plugin=apps::myawesomeapp::api::plugin --mode=app-metrics --help +[.. + All global options from the centreon-plugins framework that your plugin benefits from +..] +Mode: + Check my-awesome-app metrics exposed through its API + + --warning/critical-health + Warning and critical threshold for application health string. + + Defaults are: --warning-health='%{health} eq "yellow"' & + --critical-health='%{health} eq "red"' + + --warning/critical-select + Warning and critical threshold for select queries + + --warning/critical-update + Warning and critical threshold for update queries + + --warning/critical-delete + Warning and critical threshold for delete queries + + --warning/critical-connections + Warning and critical threshold for connections + + --warning/critical-errors + Warning and critical threshold for errors +``` + +## 5. Convert in custom mode + +Custom mode is a well established type of plugin. Then it can be useful to understand the way to build and use it. +Custom is a mode made for when you may have different way to collect plugin input. More broadly, plugins using custom mode afford flexibility if later you have to add a new way to give input in a plugin. This is the main reason why most of latest plugins are in custom mode baseline. + +Most of the time the way to collect input use api and this is the most common custom mode you will find in plugins. +There are also cli file for command line or tcp, etc. + +In our example case of tutoral it's an api case. + +### 5.1 Create custom file + +First we need to create the custom file : api.pm + +```shell +mkdir -p src/apps/myawesomeapp/api/custom/ +touch src/apps/myawesomeapp/api/custom/api.pm +``` +### 5.2 Changes in plugin.pm + +First we need to change plugins script libraririe : +```perl +centreon::plugins::script_simple +``` +replace by +```perl +centreon::plugins::script_custom +``` +Then in new constructor a new line calling for the custom is needed +```perl +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + 'app-metrics' => 'apps::myawesomeapp::api::mode::appmetrics' + }; + + $self->{custom_modes}->{api} = 'apps::myawesomeapp::api::custom::api'; + return $self; +} +``` +### 5.3 Changes in mode.pm + +Custom mode allows to change the way to obtain input, thus all that concern input and the way to process it is push to the custom file. The mode file will contain all needed functions for processing input to give the output needed. + +First the new constructor will change : +```perl +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => {}); + return $self; +} +``` + +The check_options function is push into the custom file because it was usefull for the input formating + +The manage_selection function is updated to remove all that concern the input management. + +```perl +sub manage_selection { + my ($self, %options) = @_; + + #This line replace the input section previously available here + my $results = $options{custom}->request_api(); + + # $self->{health} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained string $decoded_content->{health} with the health key_value in the counter. + $self->{health} = { + health => $results->{health} + }; + + # $self->{queries} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained values from the db_queries nodes with the key_value defined in the counter. + $self->{queries} = { + select => $results->{db_queries}->{select}, + update => $results->{db_queries}->{update}, + delete => $results->{db_queries}->{delete} + }; + + # Initialize an empty app_metrics counter. + $self->{app_metrics} = {}; + # Loop in the connections array of hashes + foreach my $entry (@{ $results->{connections} }) { + # Same logic than type => 0 counters but an extra key $entry->{component} to associate the value + # with a specific instance + $self->{app_metrics}->{ $entry->{component} }->{display} = $entry->{component}; + $self->{app_metrics}->{ $entry->{component} }->{connections} = $entry->{value} + }; + + # Exactly the same thing with errors + foreach my $entry (@{ $results->{errors} }) { + # Don't need to redefine the display key, just assign a value to the error key_value while + # keeping the $entry->{component} key to associate the value with the good instance + $self->{app_metrics}->{ $entry->{component} }->{errors} = $entry->{value}; + }; +} +``` + +### 5.4 New file : api.pm + +As explained in the previous section, the custom file will contain all needed functions about input and the way to process it. + +This new file needs to contains the packages and libraries declarations : + +```perl +package apps::myawesomeapp::api::custom::api; + +use strict; +use warnings; + +use centreon::plugins::http; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use JSON::XS; +``` + +It also contains the following functions : +* new constructor : construct the object in the same way than in mode file previously +* set_options +* set_defaults +* check_options +* settings +* request_api + +#### new constructor + +```perl +sub new { + my ($class, %options) = @_; + my $self = {}; + bless $self, $class; + + # Check if an output option is available + if (!defined($options{output})) { + print "Class Custom: Need to specify 'output' argument.\n"; + exit 3; + } + # Check if options are avaliable + if (!defined($options{options})) { + $options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument."); + $options{output}->option_exit(); + } + + if (!defined($options{noptions})) { + # Adding options legacy from appsmetrics.pm in single mode + $options{options}->add_options(arguments => { + 'hostname:s' => { name => 'hostname' }, + 'proto:s' => { name => 'proto', default => 'https' }, + 'port:s' => { name => 'port', default => 443 }, + 'timeout:s' => { name => 'timeout' }, + 'unknown-status:s' => { name => 'unknown_status', default => '%{http_code} < 200 or %{http_code} >= 300' }, + 'warning-status:s' => { name => 'warning_status' }, + 'critical-status:s' => { name => 'critical_status', default => '' } + }); + } + # Adding Help structure to the object + $options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1); + # Adding output structure to the object + $self->{output} = $options{output}; + # Command line legacy from appsmetrics.pm in single mode + $self->{http} = centreon::plugins::http->new(%options); + + return $self; +} +``` + +#### set_options + +This function overwrite the set_options function in http module + +```perl +sub set_options { + my ($self, %options) = @_; + + $self->{option_results} = $options{option_results}; +} +``` + +#### set_defaults + +This function is empty. + +```perl +sub set_defaults {} +``` + +#### check_options + +```perl +sub check_options { + my ($self, %options) = @_; + + # Check if options are propely define + $self->{hostname} = (defined($self->{option_results}->{hostname})) ? $self->{option_results}->{hostname} : ''; + $self->{proto} = (defined($self->{option_results}->{proto})) ? $self->{option_results}->{proto} : 'https'; + $self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443; + $self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 10; + $self->{unknown_status} = (defined($self->{option_results}->{unknown_status})) ? $self->{option_results}->{unknown_status} : ''; + $self->{warning_status} = (defined($self->{option_results}->{warning_status})) ? $self->{option_results}->{warning_status} : ''; + $self->{critical_status} = (defined($self->{option_results}->{critical_status})) ? $self->{option_results}->{critical_status} : ''; + + # Check if the user provided a value for --hostname option. If not, display a message and exit + if (!defined($self->{hostname}) || $self->{hostname} eq '') { + $self->{output}->add_option_msg(short_msg => 'Please set hostname option'); + $self->{output}->option_exit(); + } + + return 0; +} +``` + +#### settings + +This function allows to initialize api object options structure and feed it calling set_options + +```perl +sub settings { + my ($self, %options) = @_; + + # Initialize options structure + $self->{option_results}->{hostname} = $self->{hostname}; + $self->{option_results}->{proto} = $self->{proto}; + $self->{option_results}->{port} = $self->{port}; + $self->{option_results}->{timeout} = $self->{timeout}; + $self->{option_results}->{unknown_status} = $self->{unknown_status}; + $self->{option_results}->{warning_status} = $self->{warning_status}; + $self->{option_results}->{critical_status} = $self->{critical_status}; + + # Feed options structure using set_options + $self->{http}->set_options(%{$self->{option_results}}); +} +``` + +#### request_api + +```perl +sub request_api { + my ($self, %options) = @_; + + # Define APi options needed for request + $self->settings(); + + my ($content) = $self->{http}->request(url_path => '/v3/da8d5aa7-abb4-4a5f-a31c-6700dd34a656'); + + if (!defined($content) || $content eq '') { + $self->{output}->add_option_msg(short_msg => "API returns empty content [code: '" . $self->{http}->get_code() . "'] [message: '" . $self->{http}->get_message() . "']"); + $self->{output}->option_exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($content); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot encode JSON result"); + $self->{output}->option_exit(); + } + + return $decoded; +} +``` \ No newline at end of file diff --git a/doc/en/developer/tutorial-service_discovery.md b/doc/en/developer/tutorial-service_discovery.md new file mode 100644 index 000000000..fe4d5d354 --- /dev/null +++ b/doc/en/developer/tutorial-service_discovery.md @@ -0,0 +1 @@ +Coming soon \ No newline at end of file diff --git a/doc/en/developer/tutorial-snmp.md b/doc/en/developer/tutorial-snmp.md new file mode 100644 index 000000000..44dee7190 --- /dev/null +++ b/doc/en/developer/tutorial-snmp.md @@ -0,0 +1,422 @@ +# SNMP plugin tutorial + +All files showed in this section can be found on the centreon-plugins GitHub in +the [tutorial](https://github.com/centreon/centreon-plugins/tree/develop/src/contrib/tutorial) **contrib** +section. + +> You have to move the contents of `contrib/tutorial/apps/` to `apps/` if you want to run it for testing purposes. +> +> `cp -R src/contrib/tutorial/network/* src/network/` + +You also need to be able to use linux standard snmpwalk in your development environment. +If you can't, you can use [this snmpwalk](https://github.com/centreon/centreon-plugins/blob/develop/tests/resources/snmp/os_linux_snmp_plugin.snmpwalk) coupled with snmpsim (in Docker for example) + +**Description** + +This example explains how to check a single SNMP oid value to check system CPUs. + +## 1. Understand the data + +Understanding the data is very important as it will drive the way you will design +the **mode** internals. This is the **first thing to do**, no matter what protocol you +are using. + +There are several important properties for a piece of data: + +- Type of the data to process: string, int... There is no limitation in the kind of data you can process +- Dimensions of the data, is it **global** or linked to an **instance**? +- Data layout, in other words anticipate the kind of **data structure** to manipulate. + +Here we use a very simple example with only one oid value : `hrProcessorLoad` = `.1.3.6.1.2.1.25.3.3.1.2` +If you use [this snmpwalk](https://github.com/centreon/centreon-plugins/blob/develop/tests/resources/snmp/os_linux_snmp_plugin.snmpwalk) you have this values : +``` +.1.3.6.1.2.1.25.3.3.1.2.768 = INTEGER: 6 +.1.3.6.1.2.1.25.3.3.1.2.769 = INTEGER: 16 +``` +- the `cpu` node contains integer values (`6`, `16`) referring to specific **instances** (`768`, `769`). The structure is an array of hashes + +## 2. Create directories for a new plugin + +Create directories and files required for your **plugin** and **modes**. + +Go to your centreon-plugins local git and create the appropriate directories and files: + +```shell +# path to the main directory and the subdirectory containing modes +mkdir -p src/network/mysnmpplugin/snmp/mode +# path to the main plugin file +touch network/mysnmpplugin/snmp/plugin.pm +# path to the specific mode(s) file(s) => for example appsmetrics.pm +touch network/mysnmpplugin/snmp/mode/cpu.pm +``` + +## 3. Create the plugin file : plugin.pm + +Edit **plugin.pm** and add the following lines: + +```perl + # + # Copyright 2023 Centreon (http://www.centreon.com/) + # + # Centreon is a full-fledged industry-strength solution that meets + # the needs in IT infrastructure and application monitoring for + # service performance. + # + # 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. + # + + # Path to the plugin + package network::mysnmpplugin::snmp::plugin; + + # Needed libraries + use strict; + use warnings; + # Use this library to check using SNMP protocol + use base qw(centreon::plugins::script_snmp); +``` +> **TIP** : Don't forget to edit 'Authors' line. + +Add ```new``` method to instantiate the plugin: + +```perl + sub new { + my ( $class, %options ) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + # $options->{options} = options object + + # Modes association + $self->{modes} = { + # Mode name => path to the mode + 'cpu' => 'network::mysnmpplugin::snmp::mode::cpu' + }; + + return $self; + } +``` +Declare this plugin as a perl module: + +```perl + 1; +``` +Add a description to the plugin: + +```perl + __END__ + + =head1 PLUGIN DESCRIPTION + + Check my-plugin-snmp CPU through SNMP. + + =cut +``` +> **TIP** : This description is printed with '--help' option. + +To test if this plugin file works you can run this command: + +`perl centreon_plugins.pl --plugin=apps::mysnmpplugin:::snmp::plugin --list-mode` + +It already outputs a lot of things. Ellipsized lines are basically all standard capabilities +inherited from the **script_custom** base. + +```perl +Plugin Description: + Check CPU through SNMP. + +Global Options: + --mode Choose a mode. +[...] + --version + Display plugin version. +[...] + +Modes Available: + cpu + +``` + +## 4. Create the mode file : cpu.pm + +### 4.1 Common declarations and new constructor + +Edit **cpu.pm** and add the following lines: + +```perl +# +# Copyright 2023 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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. +# + +# Path to the plugin +package network::mysnmpplugin::snmp::mode::cpu; + +# Consider this as mandatory when writing a new mode. +use base qw(centreon::plugins::templates::counter); + +# Needed libraries +use strict; +use warnings; + +``` + +Add a `new` function (sub) to initialize the mode: + +```perl +sub new { + my ($class, %options) = @_; + # All options/properties of this mode, always add the force_new_perfdata => 1 to enable new metric/performance data naming. + # It also where you can specify that the plugin uses a cache file for example + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + # Declare options + $options{options}->add_options(arguments => { + # One the left it's the option name that will be used in the command line. The ':s' at the end is to + # define that this options takes a value. + # On the right, it's the code name for this option, optionnaly you can define a default value so the user + # doesn't have to set it. + # option name => variable name + 'filter-id:s' => { name => 'filter_id' } + }); + + return $self; +} +``` + +### 4.2 Declare your counters + +This part essentially maps the data you want to get from the SNMP with the internal +counter mode structure. + +Remember how we categorized the data in the previous section understand-the-data. + +The `$self->{maps_counters_type}` data structure describes these data while the `$self->{maps_counters}->{global}` one defines +their properties like thresholds and how they will be displayed to the users. + +```perl +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + # cpu will receive value for both instances (768 and 769) : the type => 1 explicits that + # You can define a callback (cb) function to manage the output prefix. This function is called + # each time a value is passed to the counter and can be shared across multiple counters. + { name => 'cpu', type => 1, cb_prefix_output => 'prefix_cpu_output', message_multiple => 'All CPUs are ok' } + ]; + + $self->{maps_counters}->{cpu} = [ + { label => 'cpu-usage-prct', nlabel => 'cpu.usage.percentage', set => { + key_values => [ { name => 'cpu_usage' }, { name => 'name' } ], + output_template => '%.2f %%', + perfdatas => [ + # we add the label_extra_instance option to have one perfdata per instance + { label => 'cpu', template => '%.2f', min => 0, max => 100, unit => '%', label_extra_instance => 1, instance_use => 'name' } + ] + } + } + ]; +} +``` + +### 4.3 Create prefix callback functions + +These functions are not mandatory but help to make the output more readable for a human. We will create +it now but as you have noticed the mode compiles so you can choose to keep those for the polishing moment. + +During counters definitions, we associated a callback function like this : +- `cb_prefix_output => 'prefix_cpu_output'` + +Define those function by adding it to our `cpu.pm` file. It is self-explanatory. + +```perl +sub prefix_cpu_output { + my ($self, %options) = @_; + + return "CPU '" . $options{instance_value}->{name} . "' usage: "; +} +``` + +### 4.4 Get raw data from SNMP and understand the data structure + +It's the moment to write the main sub (`manage_selection`) - the most complex, but also the one that +will transform your mode to something useful and alive. + +Think about the logic, what we have to do is: + +- Query a specific path corresponding to a SNMP oid +- Store and process the result +- Spread this result across counters definitions + +```perl +sub manage_selection { + my ($self, %options) = @_; + ################################################### + ##### Load SNMP informations to a result hash ##### + ################################################### + + # Select relevant oids for CPU monitoring + my $mapping = { + # hashKey => { oid => 'oid_number_path'} + hrProcessorID => { oid => '.1.3.6.1.2.1.25.3.3.1.1' }, + hrProcessorLoad => { oid => '.1.3.6.1.2.1.25.3.3.1.2' } + # + }; + + # Point at the begining of the SNMP table + # Oid to point the table ahead all the oids given in mapping + my $oid_hrProcessorTable = '.1.3.6.1.2.1.25.3.3.1'; + + # Use SNMP Centreon plugins tools to push SNMP result in hash to handle with. + my $cpu_result = $options{snmp}->get_table( + oid => $oid_hrProcessorTable, + nothing_quit => 1 + ); + + ################################################### + ##### SNMP Result table to browse ##### + ################################################### + foreach my $oid (keys %{$cpu_result}) { + next if ($oid !~ /^$mapping->{hrProcessorID}->{oid}\.(.*)$/); + + # Catch table instance if exist : + # Instance is a number availible for a same oid refering to different target + my $instance = $1; + # Uncomment the lines below to see what instance looks like : + + # use Data::Dumper; + # print Dumper($oid); + # print Dumper($instance); + + # Data Dumper returns : with oid = hrProcessorID.instance + # $VAR1 = '.1.3.6.1.2.1.25.3.3.1.1.769'; + # $VAR1 = '769'; + # $VAR1 = '.1.3.6.1.2.1.25.3.3.1.1.768'; + # $VAR1 = '768'; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $cpu_result, instance => $instance); + + # Here is the way to handle with basic name/id filter. + # This filter is compare with hrProcessorID and in case of no match the oid is skipped + if (defined($self->{option_results}->{filter_id}) && $self->{option_results}->{filter_id} ne '' && + $result->{hrProcessorID} !~ /$self->{option_results}->{filter_id}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{hrProcessorID} . "': no matching filter.", debug => 1); + next; + } + + # If the oid is not skipped above, here is convert the target values in result hash. + # Here is where the counter magic happens. + # $self->{cpu} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained string $result->{hrProcessorLoad} with the cpu_usage key_value in the counter. + $self->{cpu}->{$instance} = { + name => $result->{hrProcessorID}, + cpu_usage => $result->{hrProcessorLoad} + }; + } + + # IMPORTANT ! + # If you use a way to filter the values set in result hash, + # check if at the end of parsing the result table isn't empty. + # If it's the case, add a message for user to explain the filter doesn't match. + if (scalar(keys %{$self->{cpu}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No processor ID matching with filter found."); + $self->{output}->option_exit(); + } +} +``` + +Declare this plugin as a perl module: + +```perl + 1; +``` + +Execute this command (`--verbose` will display the long output and the details for each `type => 1` counters). +This command is based on use Docker SNMPSIM to simulate snmpwalk behavior (hostname, snmp-community and snmp-port). + +```shell +perl centreon_plugins.pl --plugin=network::mysnmpplugin::snmp::plugin --mode=cpu --hostname=localhost --snmp-community=local/os_linux_snmp_plugin --snmp-port=2024 --verbose +``` + +Here is the expected output: + +```shell +OK: All CPUs are ok | '.0.0#cpu.usage.percentage'=6.00%;;;0;100 '.0.0#cpu.usage.percentage'=16.00%;;;0;100 +CPU '.0.0' usage: 6.00 % +CPU '.0.0' usage: 16.00 % +``` + +### 4.5 Help section and assistant to build your centreon objects + +Last but not least, you need to write a help section to explain users what your mode is +doing and what options they can use. + +The centreon-plugins framework has a built-in assistant to help you with the list of counters +and options. + +Run this command to obtain a summary that will simplify the work of creating Centreon commands and write +the mode's help: + +```shell +perl centreon_plugins.pl --plugin=network::mysnmpplugin::snmp::plugin --mode=cpu --hostname='anyvalue' --list-counters --verbose +``` + +Get information from its output (shown below) to start building your mode's help: + +```shell +counter list: cpu-usage-prct +configuration: --warning-cpu-usage-prct='$_SERVICEWARNINGCPUUSAGEPRCT$' --critical-cpu-usage-prct='$_SERVICECRITICALCPUUSAGEPRCT$' +``` + +Here is how you can write the help, note that this time you will add the content after the `1;` and add the same +`__END__` instruction like you did in the `plugin.pm` file. + +```perl +__END__ + +=head1 MODE + +Check system CPUs. + +=over 8 + +=item B<--filter-id> + +Filter on one ID name. + +=item B<--warning> + +Warning threshold for CPU. + +=item B<--critical> + +Critical threshold for CPU. + +=back + +=cut +``` \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/deb.json b/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/deb.json new file mode 100644 index 000000000..53ad31cc2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libopenwsman-perl", + "libjson-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/pkg.json b/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/pkg.json new file mode 100644 index 000000000..ca8339f07 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Backup-Veeam-Wsman", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_veeam_backup_wsman.pl", + "files": [ + "centreon/plugins/script_wsman.pm", + "centreon/plugins/wsman.pm", + "apps/backup/veeam/wsman/", + "centreon/common/powershell/functions.pm", + "centreon/common/powershell/veeam/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/rpm.json b/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/rpm.json new file mode 100644 index 000000000..912cdb407 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Backup-Veeam-Wsman/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(openwsman)", + "perl(JSON::XS)", + "perl(POSIX)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json index aad8cdc6a..aa44258ec 100644 --- a/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json +++ b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json @@ -10,6 +10,7 @@ "snmp_standard/mode/memory.pm", "snmp_standard/mode/loadaverage.pm", "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm", "storage/synology/snmp/" ] -} \ No newline at end of file +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/pkg.json new file mode 100644 index 000000000..74ec4a298 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp", + "pkg_summary": "Centreon Plugin - Hardware UPS Inmatics PSU Sputnik SNMP", + "plugin_name": "centreon_ups_sputnik_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/standard/rfc1628/snmp/", + "hardware/ups/inmatics/sputnik/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Inmatics-Sputnik-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Notification-Email/deb.json b/packaging/centreon-plugin-Notification-Email/deb.json index 15206f567..679eedd74 100644 --- a/packaging/centreon-plugin-Notification-Email/deb.json +++ b/packaging/centreon-plugin-Notification-Email/deb.json @@ -1,6 +1,7 @@ { "dependencies": [ "libemail-sender-perl", - "libemail-mime-perl" + "libemail-mime-perl", + "libhtml-template-perl" ] } diff --git a/packaging/centreon-plugin-Notification-Email/rpm.json b/packaging/centreon-plugin-Notification-Email/rpm.json index 2e53d426a..5ada9436b 100644 --- a/packaging/centreon-plugin-Notification-Email/rpm.json +++ b/packaging/centreon-plugin-Notification-Email/rpm.json @@ -2,6 +2,7 @@ "dependencies": [ "perl(Email::MIME)", "perl(Email::Simple)", - "perl(Email::Sender)" + "perl(Email::Sender)", + "perl(HTML::Template)" ] } diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json index 624779bd6..735060990 100644 --- a/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json @@ -1,7 +1,7 @@ { "dependencies": [ "libjson-perl", - "zmq-libzmq4-perl", + "libzmq-libzmq4-perl", "libuuid-perl" ] } \ No newline at end of file diff --git a/src/apps/antivirus/clamav/local/mode/updatestatus.pm b/src/apps/antivirus/clamav/local/mode/updatestatus.pm index 93fabce37..6384e4987 100644 --- a/src/apps/antivirus/clamav/local/mode/updatestatus.pm +++ b/src/apps/antivirus/clamav/local/mode/updatestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/clamav/local/plugin.pm b/src/apps/antivirus/clamav/local/plugin.pm index ca7468e99..8806c13fb 100644 --- a/src/apps/antivirus/clamav/local/plugin.pm +++ b/src/apps/antivirus/clamav/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/mode/deployment.pm b/src/apps/antivirus/kaspersky/snmp/mode/deployment.pm index 2e3dd35b2..205b23090 100644 --- a/src/apps/antivirus/kaspersky/snmp/mode/deployment.pm +++ b/src/apps/antivirus/kaspersky/snmp/mode/deployment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/mode/events.pm b/src/apps/antivirus/kaspersky/snmp/mode/events.pm index beb381237..d8d3845e8 100644 --- a/src/apps/antivirus/kaspersky/snmp/mode/events.pm +++ b/src/apps/antivirus/kaspersky/snmp/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/mode/fullscan.pm b/src/apps/antivirus/kaspersky/snmp/mode/fullscan.pm index c72a3c303..3764d5954 100644 --- a/src/apps/antivirus/kaspersky/snmp/mode/fullscan.pm +++ b/src/apps/antivirus/kaspersky/snmp/mode/fullscan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/mode/logicalnetwork.pm b/src/apps/antivirus/kaspersky/snmp/mode/logicalnetwork.pm index aff716711..1a9369207 100644 --- a/src/apps/antivirus/kaspersky/snmp/mode/logicalnetwork.pm +++ b/src/apps/antivirus/kaspersky/snmp/mode/logicalnetwork.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/mode/protection.pm b/src/apps/antivirus/kaspersky/snmp/mode/protection.pm index 027de165c..db3b1d11c 100644 --- a/src/apps/antivirus/kaspersky/snmp/mode/protection.pm +++ b/src/apps/antivirus/kaspersky/snmp/mode/protection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/mode/updates.pm b/src/apps/antivirus/kaspersky/snmp/mode/updates.pm index 81f79812c..fe8270bf0 100644 --- a/src/apps/antivirus/kaspersky/snmp/mode/updates.pm +++ b/src/apps/antivirus/kaspersky/snmp/mode/updates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/kaspersky/snmp/plugin.pm b/src/apps/antivirus/kaspersky/snmp/plugin.pm index 334f34ecf..c1815a424 100644 --- a/src/apps/antivirus/kaspersky/snmp/plugin.pm +++ b/src/apps/antivirus/kaspersky/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/clients.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/clients.pm index 3775685c6..63b4276db 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/clients.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/clients.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/connections.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/connections.pm index 87b131692..8ea16e5b0 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/connections.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/detections.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/detections.pm index 537801527..aeaf23bbb 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/detections.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/detections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/ftpstatistics.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/ftpstatistics.pm index 3c824f10c..6af5ffc2c 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/ftpstatistics.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/ftpstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpsstatistics.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpsstatistics.pm index 615f84adc..6b6b9595a 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpsstatistics.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpsstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpstatistics.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpstatistics.pm index a33fbd59d..56ee99207 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpstatistics.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/httpstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/system.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/system.pm index f41459573..3f44b8023 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/system.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/mode/versions.pm b/src/apps/antivirus/mcafee/webgateway/snmp/mode/versions.pm index 5b6ac8862..5f75bb260 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/mode/versions.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/mode/versions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/antivirus/mcafee/webgateway/snmp/plugin.pm b/src/apps/antivirus/mcafee/webgateway/snmp/plugin.pm index 0beef2e3b..10c6ee408 100644 --- a/src/apps/antivirus/mcafee/webgateway/snmp/plugin.pm +++ b/src/apps/antivirus/mcafee/webgateway/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apache/serverstatus/mode/cpuload.pm b/src/apps/apache/serverstatus/mode/cpuload.pm index 27e95f84e..d08bb62aa 100644 --- a/src/apps/apache/serverstatus/mode/cpuload.pm +++ b/src/apps/apache/serverstatus/mode/cpuload.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apache/serverstatus/mode/requests.pm b/src/apps/apache/serverstatus/mode/requests.pm index edc4bbea6..abe4cb530 100644 --- a/src/apps/apache/serverstatus/mode/requests.pm +++ b/src/apps/apache/serverstatus/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apache/serverstatus/mode/responsetime.pm b/src/apps/apache/serverstatus/mode/responsetime.pm index f45693e6b..339e44574 100644 --- a/src/apps/apache/serverstatus/mode/responsetime.pm +++ b/src/apps/apache/serverstatus/mode/responsetime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apache/serverstatus/mode/slotstates.pm b/src/apps/apache/serverstatus/mode/slotstates.pm index 10e216e99..2d5ea1641 100644 --- a/src/apps/apache/serverstatus/mode/slotstates.pm +++ b/src/apps/apache/serverstatus/mode/slotstates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apache/serverstatus/mode/workers.pm b/src/apps/apache/serverstatus/mode/workers.pm index 1873f0658..72edfd7b6 100644 --- a/src/apps/apache/serverstatus/mode/workers.pm +++ b/src/apps/apache/serverstatus/mode/workers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apache/serverstatus/plugin.pm b/src/apps/apache/serverstatus/plugin.pm index 4e5d0accc..14e9e6bf9 100644 --- a/src/apps/apache/serverstatus/plugin.pm +++ b/src/apps/apache/serverstatus/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/custom/cli.pm b/src/apps/apcupsd/local/custom/cli.pm index 11658a06e..52d7c710d 100644 --- a/src/apps/apcupsd/local/custom/cli.pm +++ b/src/apps/apcupsd/local/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/batterycharge.pm b/src/apps/apcupsd/local/mode/batterycharge.pm index 763e3b614..4a103eb57 100644 --- a/src/apps/apcupsd/local/mode/batterycharge.pm +++ b/src/apps/apcupsd/local/mode/batterycharge.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/batteryvoltage.pm b/src/apps/apcupsd/local/mode/batteryvoltage.pm index ddd30b1f5..5961544cb 100644 --- a/src/apps/apcupsd/local/mode/batteryvoltage.pm +++ b/src/apps/apcupsd/local/mode/batteryvoltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/linefrequency.pm b/src/apps/apcupsd/local/mode/linefrequency.pm index b8343dfbc..379b208a2 100644 --- a/src/apps/apcupsd/local/mode/linefrequency.pm +++ b/src/apps/apcupsd/local/mode/linefrequency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/linevoltage.pm b/src/apps/apcupsd/local/mode/linevoltage.pm index ff7cf5926..88e9c896e 100644 --- a/src/apps/apcupsd/local/mode/linevoltage.pm +++ b/src/apps/apcupsd/local/mode/linevoltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/loadpercentage.pm b/src/apps/apcupsd/local/mode/loadpercentage.pm index 0e915ebe2..fd7208125 100644 --- a/src/apps/apcupsd/local/mode/loadpercentage.pm +++ b/src/apps/apcupsd/local/mode/loadpercentage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/outputvoltage.pm b/src/apps/apcupsd/local/mode/outputvoltage.pm index d7824d92e..5119f54df 100644 --- a/src/apps/apcupsd/local/mode/outputvoltage.pm +++ b/src/apps/apcupsd/local/mode/outputvoltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/temperature.pm b/src/apps/apcupsd/local/mode/temperature.pm index 809fc9670..481f7b608 100644 --- a/src/apps/apcupsd/local/mode/temperature.pm +++ b/src/apps/apcupsd/local/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/mode/timeleft.pm b/src/apps/apcupsd/local/mode/timeleft.pm index 9571cfc6d..37bbf4087 100644 --- a/src/apps/apcupsd/local/mode/timeleft.pm +++ b/src/apps/apcupsd/local/mode/timeleft.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/apcupsd/local/plugin.pm b/src/apps/apcupsd/local/plugin.pm index ec110ac0a..6c4c3bcae 100644 --- a/src/apps/apcupsd/local/plugin.pm +++ b/src/apps/apcupsd/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/cli/custom/cli.pm b/src/apps/automation/ansible/cli/custom/cli.pm index 734d74a1d..a7617625e 100644 --- a/src/apps/automation/ansible/cli/custom/cli.pm +++ b/src/apps/automation/ansible/cli/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/cli/mode/discovery.pm b/src/apps/automation/ansible/cli/mode/discovery.pm index ab03dccb9..2d393b2e4 100644 --- a/src/apps/automation/ansible/cli/mode/discovery.pm +++ b/src/apps/automation/ansible/cli/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/cli/plugin.pm b/src/apps/automation/ansible/cli/plugin.pm index bfd959ac5..740ee61b8 100644 --- a/src/apps/automation/ansible/cli/plugin.pm +++ b/src/apps/automation/ansible/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/custom/api.pm b/src/apps/automation/ansible/tower/custom/api.pm index 5327e04b8..f41b30d7e 100644 --- a/src/apps/automation/ansible/tower/custom/api.pm +++ b/src/apps/automation/ansible/tower/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/custom/towercli.pm b/src/apps/automation/ansible/tower/custom/towercli.pm index 3bb5f2387..84f09bc16 100644 --- a/src/apps/automation/ansible/tower/custom/towercli.pm +++ b/src/apps/automation/ansible/tower/custom/towercli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/mode/discovery.pm b/src/apps/automation/ansible/tower/mode/discovery.pm index 98cd98886..d5be13edd 100644 --- a/src/apps/automation/ansible/tower/mode/discovery.pm +++ b/src/apps/automation/ansible/tower/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/mode/hosts.pm b/src/apps/automation/ansible/tower/mode/hosts.pm index 3a54c0bdc..21fcd5929 100644 --- a/src/apps/automation/ansible/tower/mode/hosts.pm +++ b/src/apps/automation/ansible/tower/mode/hosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/mode/inventories.pm b/src/apps/automation/ansible/tower/mode/inventories.pm index fddf7c8e5..6e928eb5e 100644 --- a/src/apps/automation/ansible/tower/mode/inventories.pm +++ b/src/apps/automation/ansible/tower/mode/inventories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/mode/jobs.pm b/src/apps/automation/ansible/tower/mode/jobs.pm index 76d66f0f5..1592d491a 100644 --- a/src/apps/automation/ansible/tower/mode/jobs.pm +++ b/src/apps/automation/ansible/tower/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/mode/jobtemplates.pm b/src/apps/automation/ansible/tower/mode/jobtemplates.pm index ceec79cf9..079ddc1d3 100644 --- a/src/apps/automation/ansible/tower/mode/jobtemplates.pm +++ b/src/apps/automation/ansible/tower/mode/jobtemplates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/mode/schedules.pm b/src/apps/automation/ansible/tower/mode/schedules.pm index 26a674f89..7c627e82d 100644 --- a/src/apps/automation/ansible/tower/mode/schedules.pm +++ b/src/apps/automation/ansible/tower/mode/schedules.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/automation/ansible/tower/plugin.pm b/src/apps/automation/ansible/tower/plugin.pm index c8603efb4..064e9546c 100644 --- a/src/apps/automation/ansible/tower/plugin.pm +++ b/src/apps/automation/ansible/tower/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/arcserve/udp/mssql/mode/jobstatus.pm b/src/apps/backup/arcserve/udp/mssql/mode/jobstatus.pm index 882fc1616..82ec774b6 100644 --- a/src/apps/backup/arcserve/udp/mssql/mode/jobstatus.pm +++ b/src/apps/backup/arcserve/udp/mssql/mode/jobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/backupexec/local/mode/alerts.pm b/src/apps/backup/backupexec/local/mode/alerts.pm index 74d43818a..a9a2800b1 100644 --- a/src/apps/backup/backupexec/local/mode/alerts.pm +++ b/src/apps/backup/backupexec/local/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/backupexec/local/mode/disks.pm b/src/apps/backup/backupexec/local/mode/disks.pm index 8afe6a925..b38d66f28 100644 --- a/src/apps/backup/backupexec/local/mode/disks.pm +++ b/src/apps/backup/backupexec/local/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/backupexec/local/mode/jobs.pm b/src/apps/backup/backupexec/local/mode/jobs.pm index dbdc8ffcc..d767e1dea 100644 --- a/src/apps/backup/backupexec/local/mode/jobs.pm +++ b/src/apps/backup/backupexec/local/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/backupexec/local/mode/listdisks.pm b/src/apps/backup/backupexec/local/mode/listdisks.pm index 2a58e7357..68efe11ff 100644 --- a/src/apps/backup/backupexec/local/mode/listdisks.pm +++ b/src/apps/backup/backupexec/local/mode/listdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/backupexec/local/mode/resources/types.pm b/src/apps/backup/backupexec/local/mode/resources/types.pm index 0cb390286..b754cca4d 100644 --- a/src/apps/backup/backupexec/local/mode/resources/types.pm +++ b/src/apps/backup/backupexec/local/mode/resources/types.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/backupexec/local/plugin.pm b/src/apps/backup/backupexec/local/plugin.pm index 52d0368cb..032989ec4 100644 --- a/src/apps/backup/backupexec/local/plugin.pm +++ b/src/apps/backup/backupexec/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/custom/api.pm b/src/apps/backup/commvault/commserve/restapi/custom/api.pm index 0f9d16f99..d1418fd00 100644 --- a/src/apps/backup/commvault/commserve/restapi/custom/api.pm +++ b/src/apps/backup/commvault/commserve/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/mode/jobs.pm b/src/apps/backup/commvault/commserve/restapi/mode/jobs.pm index 20b132b16..88fb04f11 100644 --- a/src/apps/backup/commvault/commserve/restapi/mode/jobs.pm +++ b/src/apps/backup/commvault/commserve/restapi/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/mode/listmediaagents.pm b/src/apps/backup/commvault/commserve/restapi/mode/listmediaagents.pm index e1bae186c..e5e445617 100644 --- a/src/apps/backup/commvault/commserve/restapi/mode/listmediaagents.pm +++ b/src/apps/backup/commvault/commserve/restapi/mode/listmediaagents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/mode/liststoragepolicies.pm b/src/apps/backup/commvault/commserve/restapi/mode/liststoragepolicies.pm index 951b49c15..69d7cb968 100644 --- a/src/apps/backup/commvault/commserve/restapi/mode/liststoragepolicies.pm +++ b/src/apps/backup/commvault/commserve/restapi/mode/liststoragepolicies.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/mode/mediaagents.pm b/src/apps/backup/commvault/commserve/restapi/mode/mediaagents.pm index 113b0bd6d..864538de6 100644 --- a/src/apps/backup/commvault/commserve/restapi/mode/mediaagents.pm +++ b/src/apps/backup/commvault/commserve/restapi/mode/mediaagents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/mode/storagepools.pm b/src/apps/backup/commvault/commserve/restapi/mode/storagepools.pm index 523d994b8..94fa5a7a4 100644 --- a/src/apps/backup/commvault/commserve/restapi/mode/storagepools.pm +++ b/src/apps/backup/commvault/commserve/restapi/mode/storagepools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/commvault/commserve/restapi/plugin.pm b/src/apps/backup/commvault/commserve/restapi/plugin.pm index bcb96369f..ca3342208 100644 --- a/src/apps/backup/commvault/commserve/restapi/plugin.pm +++ b/src/apps/backup/commvault/commserve/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netapp/snapcenter/restapi/custom/api.pm b/src/apps/backup/netapp/snapcenter/restapi/custom/api.pm index b88da17a8..02ca9c495 100644 --- a/src/apps/backup/netapp/snapcenter/restapi/custom/api.pm +++ b/src/apps/backup/netapp/snapcenter/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netapp/snapcenter/restapi/mode/jobs.pm b/src/apps/backup/netapp/snapcenter/restapi/mode/jobs.pm index 90ad2bdd5..b5be93e94 100644 --- a/src/apps/backup/netapp/snapcenter/restapi/mode/jobs.pm +++ b/src/apps/backup/netapp/snapcenter/restapi/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netapp/snapcenter/restapi/plugin.pm b/src/apps/backup/netapp/snapcenter/restapi/plugin.pm index 6d2993217..345a43ff0 100644 --- a/src/apps/backup/netapp/snapcenter/restapi/plugin.pm +++ b/src/apps/backup/netapp/snapcenter/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/mode/dedupstatus.pm b/src/apps/backup/netbackup/local/mode/dedupstatus.pm index faec5434a..b58a83a8d 100644 --- a/src/apps/backup/netbackup/local/mode/dedupstatus.pm +++ b/src/apps/backup/netbackup/local/mode/dedupstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/mode/drivecleaning.pm b/src/apps/backup/netbackup/local/mode/drivecleaning.pm index 8f6dce3ca..e1b5dd59d 100644 --- a/src/apps/backup/netbackup/local/mode/drivecleaning.pm +++ b/src/apps/backup/netbackup/local/mode/drivecleaning.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/mode/drivestatus.pm b/src/apps/backup/netbackup/local/mode/drivestatus.pm index 82beb8d54..0bc265fe6 100644 --- a/src/apps/backup/netbackup/local/mode/drivestatus.pm +++ b/src/apps/backup/netbackup/local/mode/drivestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/mode/jobstatus.pm b/src/apps/backup/netbackup/local/mode/jobstatus.pm index 5ebe09f21..11ded3555 100644 --- a/src/apps/backup/netbackup/local/mode/jobstatus.pm +++ b/src/apps/backup/netbackup/local/mode/jobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/mode/listpolicies.pm b/src/apps/backup/netbackup/local/mode/listpolicies.pm index a576e044a..76de6c2cf 100644 --- a/src/apps/backup/netbackup/local/mode/listpolicies.pm +++ b/src/apps/backup/netbackup/local/mode/listpolicies.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/mode/tapeusage.pm b/src/apps/backup/netbackup/local/mode/tapeusage.pm index 6fb0978c2..67e423502 100644 --- a/src/apps/backup/netbackup/local/mode/tapeusage.pm +++ b/src/apps/backup/netbackup/local/mode/tapeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/netbackup/local/plugin.pm b/src/apps/backup/netbackup/local/plugin.pm index bb58649fb..04426fad8 100644 --- a/src/apps/backup/netbackup/local/plugin.pm +++ b/src/apps/backup/netbackup/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/quadstor/local/mode/listvtl.pm b/src/apps/backup/quadstor/local/mode/listvtl.pm index a7c6a0815..de8c2206c 100644 --- a/src/apps/backup/quadstor/local/mode/listvtl.pm +++ b/src/apps/backup/quadstor/local/mode/listvtl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/quadstor/local/mode/vtldiskusage.pm b/src/apps/backup/quadstor/local/mode/vtldiskusage.pm index 400f127e8..59e5979bf 100644 --- a/src/apps/backup/quadstor/local/mode/vtldiskusage.pm +++ b/src/apps/backup/quadstor/local/mode/vtldiskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/quadstor/local/mode/vtljobstatus.pm b/src/apps/backup/quadstor/local/mode/vtljobstatus.pm index 71453d5ae..08307927c 100644 --- a/src/apps/backup/quadstor/local/mode/vtljobstatus.pm +++ b/src/apps/backup/quadstor/local/mode/vtljobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/quadstor/local/mode/vtltapeusage.pm b/src/apps/backup/quadstor/local/mode/vtltapeusage.pm index a966b5b73..f4b8264e7 100644 --- a/src/apps/backup/quadstor/local/mode/vtltapeusage.pm +++ b/src/apps/backup/quadstor/local/mode/vtltapeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/quadstor/local/plugin.pm b/src/apps/backup/quadstor/local/plugin.pm index 6ad24917c..52c7825bf 100644 --- a/src/apps/backup/quadstor/local/plugin.pm +++ b/src/apps/backup/quadstor/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rapidrecovery/snmp/mode/agent.pm b/src/apps/backup/rapidrecovery/snmp/mode/agent.pm index 524cd82e2..bc5310811 100644 --- a/src/apps/backup/rapidrecovery/snmp/mode/agent.pm +++ b/src/apps/backup/rapidrecovery/snmp/mode/agent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rapidrecovery/snmp/mode/repository.pm b/src/apps/backup/rapidrecovery/snmp/mode/repository.pm index e3d2c9ff7..b1cdf66bf 100644 --- a/src/apps/backup/rapidrecovery/snmp/mode/repository.pm +++ b/src/apps/backup/rapidrecovery/snmp/mode/repository.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rapidrecovery/snmp/plugin.pm b/src/apps/backup/rapidrecovery/snmp/plugin.pm index 17989fa9a..2728ec1a4 100644 --- a/src/apps/backup/rapidrecovery/snmp/plugin.pm +++ b/src/apps/backup/rapidrecovery/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/custom/api.pm b/src/apps/backup/rubrik/restapi/custom/api.pm index 6795989c9..11059959a 100644 --- a/src/apps/backup/rubrik/restapi/custom/api.pm +++ b/src/apps/backup/rubrik/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -404,7 +404,7 @@ sub get_cache_file_response { sub cache_jobs_monitoring { my ($self, %options) = @_; - my $datas = $self->get_jobs_monitoring(disable_cache => 1, limit => $options{limit}); + my $datas = $self->get_jobs_monitoring(disable_cache => 1, get_param => $options{get_param}); $self->write_cache_file( statefile => 'jobs_monitoring', response => $datas @@ -422,7 +422,7 @@ sub get_jobs_monitoring { return $self->request_api( endpoint => '/api/v1/job_monitoring', label => 'jobMonitoringInfoList', - get_param => ['limit=' . $options{limit}] + get_param => $options{get_param} ); } diff --git a/src/apps/backup/rubrik/restapi/mode/cache.pm b/src/apps/backup/rubrik/restapi/mode/cache.pm index 1c3f24eec..b0277cf8a 100644 --- a/src/apps/backup/rubrik/restapi/mode/cache.pm +++ b/src/apps/backup/rubrik/restapi/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -31,7 +31,8 @@ sub new { bless $self, $class; $options{options}->add_options(arguments => { - 'limit:s' => { name => 'limit' } + 'filter-job-type:s' => { name => 'filter_job_type' }, + 'limit:s' => { name => 'limit' } }); return $self; @@ -49,7 +50,12 @@ sub check_options { sub manage_selection { my ($self, %options) = @_; - $options{custom}->cache_jobs_monitoring(limit => $self->{option_results}->{limit}); + my $get_param = [ 'limit=' . $self->{option_results}->{limit} ]; + if (defined($self->{option_results}->{filter_job_type}) && $self->{option_results}->{filter_job_type} ne '') { + push @{$get_param}, 'job_type=' . $self->{option_results}->{filter_job_type}; + } + + $options{custom}->cache_jobs_monitoring(get_param => $get_param); $self->{output}->output_add( severity => 'OK', @@ -67,6 +73,10 @@ Create cache files (job mode could use it with --cache-use option). =over 8 +=item B<--filter-job-type> + +Filter jobs by job type. + =item B<--limit> Define the number of entries to retrieve for the pagination (default: 500). diff --git a/src/apps/backup/rubrik/restapi/mode/cluster.pm b/src/apps/backup/rubrik/restapi/mode/cluster.pm index 448ee2dac..0bd3c5328 100644 --- a/src/apps/backup/rubrik/restapi/mode/cluster.pm +++ b/src/apps/backup/rubrik/restapi/mode/cluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/mode/compliance.pm b/src/apps/backup/rubrik/restapi/mode/compliance.pm index 6e159b863..16d9e4756 100644 --- a/src/apps/backup/rubrik/restapi/mode/compliance.pm +++ b/src/apps/backup/rubrik/restapi/mode/compliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/mode/disks.pm b/src/apps/backup/rubrik/restapi/mode/disks.pm index aa044a6d9..2f0381f25 100644 --- a/src/apps/backup/rubrik/restapi/mode/disks.pm +++ b/src/apps/backup/rubrik/restapi/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/mode/jobs.pm b/src/apps/backup/rubrik/restapi/mode/jobs.pm index 6c2b1fbb8..24ea815ec 100644 --- a/src/apps/backup/rubrik/restapi/mode/jobs.pm +++ b/src/apps/backup/rubrik/restapi/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -92,9 +92,11 @@ sub job_long_output { my ($self, %options) = @_; return sprintf( - "checking job '%s' [type: %s]", + "checking job '%s' [type: %s] [object type: %s] [location name: %s]", $options{instance_value}->{name}, - $options{instance_value}->{jobType} + $options{instance_value}->{jobType}, + $options{instance_value}->{objectType}, + $options{instance_value}->{locationName} ); } @@ -217,6 +219,7 @@ sub new { 'filter-job-name:s' => { name => 'filter_job_name' }, 'filter-job-type:s' => { name => 'filter_job_type' }, 'filter-location-name:s' => { name => 'filter_location_name' }, + 'filter-object-type:s' => { name => 'filter_object_type' }, 'unit:s' => { name => 'unit', default => 's' }, 'limit:s' => { name => 'limit' } }); @@ -244,14 +247,15 @@ sub check_options { sub manage_selection { my ($self, %options) = @_; - my $jobs_exec = $options{custom}->get_jobs_monitoring(limit => $self->{option_results}->{limit}); + my $jobs_exec = $options{custom}->get_jobs_monitoring(get_param => [ 'limit=' . $self->{option_results}->{limit} ]); $self->{cache_exec}->read(statefile => 'rubrik_' . $self->{mode} . '_' . Digest::MD5::md5_hex( $options{custom}->get_connection_info() . '_' . (defined($self->{option_results}->{filter_job_id}) ? $self->{option_results}->{filter_job_id} : '') . '_' . (defined($self->{option_results}->{filter_job_name}) ? $self->{option_results}->{filter_job_name} : '') . '_' . - (defined($self->{option_results}->{filter_job_type}) ? $self->{option_results}->{filter_job_type} : '') + (defined($self->{option_results}->{filter_job_type}) ? $self->{option_results}->{filter_job_type} : '') . '_' . + (defined($self->{option_results}->{filter_object_type}) ? $self->{option_results}->{filter_object_type} : '') ) ); my $ctime = time(); @@ -267,6 +271,8 @@ sub manage_selection { $job_exec->{objectName} !~ /$self->{option_results}->{filter_job_name}/); next if (defined($self->{option_results}->{filter_job_type}) && $self->{option_results}->{filter_job_type} ne '' && $job_exec->{jobType} !~ /$self->{option_results}->{filter_job_type}/i); + next if (defined($self->{option_results}->{filter_object_type}) && $self->{option_results}->{filter_object_type} ne '' && + $job_exec->{objectType} !~ /$self->{option_results}->{filter_object_type}/i); next if (defined($self->{option_results}->{filter_location_name}) && $self->{option_results}->{filter_location_name} ne '' && $job_exec->{locationName} !~ /$self->{option_results}->{filter_location_name}/); @@ -276,6 +282,8 @@ sub manage_selection { $self->{jobs}->{ $job_exec->{objectId} } = { name => $job_exec->{objectName}, jobType => $job_exec->{jobType}, + objectType => $job_exec->{objectType}, + locationName => $job_exec->{locationName}, timers => {}, executions => {} }; @@ -289,7 +297,8 @@ sub manage_selection { if (!defined($_->{endTime}) && $_->{jobStatus} =~ /Active/i) { $older_running_exec = $_; } - if (!defined($last_exec) && $_->{jobStatus} !~ /Scheduled/i) { + + if ($_->{jobStatus} !~ /Scheduled|Canceled|Canceling|CancelingScheduled/i) { $last_exec = $_; } @@ -382,6 +391,10 @@ Filter jobs by job name. Filter jobs by job type. +=item B<--filter-object-type> + +Filter jobs by object type. + =item B<--filter-location-name> Filter jobs by location name. diff --git a/src/apps/backup/rubrik/restapi/mode/listjobs.pm b/src/apps/backup/rubrik/restapi/mode/listjobs.pm index 2e9e14fde..b86460a0c 100644 --- a/src/apps/backup/rubrik/restapi/mode/listjobs.pm +++ b/src/apps/backup/rubrik/restapi/mode/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -49,7 +49,9 @@ sub manage_selection { ); my $results = {}; foreach (@$jobs) { - $results->{ $_->{objectId} } = $_; + if (defined($_->{objectId})) { + $results->{ $_->{objectId} } = $_; + } } return $results; } @@ -63,9 +65,9 @@ sub run { long_msg => sprintf( '[jobId: %s][jobName: %s][jobType: %s][locationName: %s]', $_->{objectId}, - $_->{objectName}, - $_->{jobType}, - $_->{locationName} + defined($_->{objectName}) ? $_->{objectName} : 'none', + defined($_->{jobType}) ? $_->{jobType} : 'none', + defined($_->{locationName}) ? $_->{locationName} : 'none' ) ); } @@ -91,9 +93,9 @@ sub disco_show { foreach (values %$results) { $self->{output}->add_disco_entry( jobId => $_->{objectId}, - jobName => $_->{objectName}, - jobType => $_->{jobType}, - locationName => $_->{locationName} + jobName => defined($_->{objectName}) ? $_->{objectName} : 'none', + jobType => defined($_->{jobType}) ? $_->{jobType} : 'none', + locationName => defined($_->{locationName}) ? $_->{locationName} : 'none' ); } } diff --git a/src/apps/backup/rubrik/restapi/mode/nodes.pm b/src/apps/backup/rubrik/restapi/mode/nodes.pm index db82f5601..bd1d8f231 100644 --- a/src/apps/backup/rubrik/restapi/mode/nodes.pm +++ b/src/apps/backup/rubrik/restapi/mode/nodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/mode/storage.pm b/src/apps/backup/rubrik/restapi/mode/storage.pm index 65a994e0d..19dd4de5e 100644 --- a/src/apps/backup/rubrik/restapi/mode/storage.pm +++ b/src/apps/backup/rubrik/restapi/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/mode/tasks.pm b/src/apps/backup/rubrik/restapi/mode/tasks.pm index 17f6206df..fec034371 100644 --- a/src/apps/backup/rubrik/restapi/mode/tasks.pm +++ b/src/apps/backup/rubrik/restapi/mode/tasks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/rubrik/restapi/plugin.pm b/src/apps/backup/rubrik/restapi/plugin.pm index 845801c62..4918ec6da 100644 --- a/src/apps/backup/rubrik/restapi/plugin.pm +++ b/src/apps/backup/rubrik/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/custom/api.pm b/src/apps/backup/tsm/local/custom/api.pm index 2713f9b9d..8048a9902 100644 --- a/src/apps/backup/tsm/local/custom/api.pm +++ b/src/apps/backup/tsm/local/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/mode/actlog.pm b/src/apps/backup/tsm/local/mode/actlog.pm index fcc7ffad8..822400a40 100644 --- a/src/apps/backup/tsm/local/mode/actlog.pm +++ b/src/apps/backup/tsm/local/mode/actlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/mode/drives.pm b/src/apps/backup/tsm/local/mode/drives.pm index 4ba363964..b16fcc1f0 100644 --- a/src/apps/backup/tsm/local/mode/drives.pm +++ b/src/apps/backup/tsm/local/mode/drives.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/mode/nodes.pm b/src/apps/backup/tsm/local/mode/nodes.pm index ec7977a46..cc5f0f17c 100644 --- a/src/apps/backup/tsm/local/mode/nodes.pm +++ b/src/apps/backup/tsm/local/mode/nodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/mode/sessions.pm b/src/apps/backup/tsm/local/mode/sessions.pm index 0d97be05e..fe876422b 100644 --- a/src/apps/backup/tsm/local/mode/sessions.pm +++ b/src/apps/backup/tsm/local/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/mode/volumes.pm b/src/apps/backup/tsm/local/mode/volumes.pm index 391b8dcc4..c98264518 100644 --- a/src/apps/backup/tsm/local/mode/volumes.pm +++ b/src/apps/backup/tsm/local/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/tsm/local/plugin.pm b/src/apps/backup/tsm/local/plugin.pm index 871eaa693..aa53d3b3f 100644 --- a/src/apps/backup/tsm/local/plugin.pm +++ b/src/apps/backup/tsm/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/jobstatus.pm b/src/apps/backup/veeam/local/mode/jobstatus.pm index c6b9a02ff..343374b8a 100644 --- a/src/apps/backup/veeam/local/mode/jobstatus.pm +++ b/src/apps/backup/veeam/local/mode/jobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/licenses.pm b/src/apps/backup/veeam/local/mode/licenses.pm index 8d8bb9110..4dc9fb1ee 100644 --- a/src/apps/backup/veeam/local/mode/licenses.pm +++ b/src/apps/backup/veeam/local/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/listjobs.pm b/src/apps/backup/veeam/local/mode/listjobs.pm index d0cfeba66..efd0ce6df 100644 --- a/src/apps/backup/veeam/local/mode/listjobs.pm +++ b/src/apps/backup/veeam/local/mode/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/listrepositories.pm b/src/apps/backup/veeam/local/mode/listrepositories.pm index 2f21d434c..2972feb56 100644 --- a/src/apps/backup/veeam/local/mode/listrepositories.pm +++ b/src/apps/backup/veeam/local/mode/listrepositories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/repositories.pm b/src/apps/backup/veeam/local/mode/repositories.pm index 6d5c40249..4b5e22cfd 100644 --- a/src/apps/backup/veeam/local/mode/repositories.pm +++ b/src/apps/backup/veeam/local/mode/repositories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/resources/types.pm b/src/apps/backup/veeam/local/mode/resources/types.pm index c289decbc..dabe99a3e 100644 --- a/src/apps/backup/veeam/local/mode/resources/types.pm +++ b/src/apps/backup/veeam/local/mode/resources/types.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/tapejobs.pm b/src/apps/backup/veeam/local/mode/tapejobs.pm index 19dfdddd0..80666955b 100644 --- a/src/apps/backup/veeam/local/mode/tapejobs.pm +++ b/src/apps/backup/veeam/local/mode/tapejobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/mode/vsbjobs.pm b/src/apps/backup/veeam/local/mode/vsbjobs.pm index 82f2756a7..bd714919c 100644 --- a/src/apps/backup/veeam/local/mode/vsbjobs.pm +++ b/src/apps/backup/veeam/local/mode/vsbjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/local/plugin.pm b/src/apps/backup/veeam/local/plugin.pm index 637f305e3..b8074a457 100644 --- a/src/apps/backup/veeam/local/plugin.pm +++ b/src/apps/backup/veeam/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/custom/api.pm b/src/apps/backup/veeam/vbem/restapi/custom/api.pm index 84fa13695..4a288ff32 100644 --- a/src/apps/backup/veeam/vbem/restapi/custom/api.pm +++ b/src/apps/backup/veeam/vbem/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/mode/cache.pm b/src/apps/backup/veeam/vbem/restapi/mode/cache.pm index 00c73a305..ed6acd0ea 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/cache.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm b/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm index bc80332f7..c0db93f08 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm b/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm index cc08f39af..f0cbc435e 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/mode/listrepositories.pm b/src/apps/backup/veeam/vbem/restapi/mode/listrepositories.pm index d14f5f131..9056a3a1f 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/listrepositories.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/listrepositories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/mode/repositories.pm b/src/apps/backup/veeam/vbem/restapi/mode/repositories.pm index bae7250e2..10a3be222 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/repositories.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/repositories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/vbem/restapi/plugin.pm b/src/apps/backup/veeam/vbem/restapi/plugin.pm index eb3631e6a..7a92416b2 100644 --- a/src/apps/backup/veeam/vbem/restapi/plugin.pm +++ b/src/apps/backup/veeam/vbem/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/backup/veeam/wsman/mode/jobstatus.pm b/src/apps/backup/veeam/wsman/mode/jobstatus.pm new file mode 100644 index 000000000..6202fd705 --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/jobstatus.pm @@ -0,0 +1,312 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::jobstatus; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::common::powershell::veeam::jobstatus; +use apps::backup::veeam::wsman::mode::resources::types qw($job_type $job_result); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold); +use centreon::plugins::misc; +use JSON::XS; + +sub custom_status_output { + my ($self, %options) = @_; + + return 'status: ' . $self->{result_values}->{status} . ' [type: ' . $self->{result_values}->{type} . ']'; +} + +sub custom_long_output { + my ($self, %options) = @_; + + return 'started since: ' . centreon::plugins::misc::change_seconds(value => $self->{result_values}->{elapsed}); +} + +sub custom_long_calc { + my ($self, %options) = @_; + + $self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_status'}; + $self->{result_values}->{display} = $options{new_datas}->{$self->{instance} . '_display'}; + $self->{result_values}->{elapsed} = $options{new_datas}->{$self->{instance} . '_elapsed'}; + $self->{result_values}->{type} = $options{new_datas}->{$self->{instance} . '_type'}; + $self->{result_values}->{is_running} = $options{new_datas}->{$self->{instance} . '_is_running'}; + $self->{result_values}->{is_continuous} = $options{new_datas}->{$self->{instance} . '_is_continuous'}; + + return -11 if ($self->{result_values}->{is_running} != 1); + + return 0; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0 }, + { name => 'job', type => 1, cb_prefix_output => 'prefix_job_output', message_multiple => 'All jobs are ok', skipped_code => { -11 => 1, -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'total', nlabel => 'jobs.detected.count', set => { + key_values => [ { name => 'total' } ], + output_template => 'Total jobs: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + } + ]; + + $self->{maps_counters}->{job} = [ + { label => 'status', threshold => 0, set => { + key_values => [ + { name => 'status' }, { name => 'display' }, + { name => 'type' }, { name => 'is_running' }, + { name => 'is_continuous' }, { name => 'scheduled' } + ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold + } + }, + { label => 'long', threshold => 0, set => { + key_values => [ + { name => 'status' }, { name => 'display' }, + { name => 'elapsed' }, { name => 'type' }, + { name => 'is_running' }, { name => 'is_continuous' } + ], + closure_custom_calc => $self->can('custom_long_calc'), + closure_custom_output => $self->can('custom_long_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' }, + 'filter-name:s' => { name => 'filter_name' }, + 'exclude-name:s' => { name => 'exclude_name' }, + 'filter-type:s' => { name => 'filter_type' }, + 'filter-end-time:s' => { name => 'filter_end_time', default => 86400 }, + 'filter-start-time:s' => { name => 'filter_start_time' }, + 'ok-status:s' => { name => 'ok_status', default => '' }, + 'warning-status:s' => { name => 'warning_status', default => '' }, + 'critical-status:s' => { name => 'critical_status', default => '%{is_running} == 0 and not %{status} =~ /success/i' }, + 'warning-long:s' => { name => 'warning_long' }, + 'critical-long:s' => { name => 'critical_long' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + $self->change_macros(macros => ['ok_status', 'warning_status', 'critical_status', 'warning_long', 'critical_long']); +} + +sub prefix_job_output { + my ($self, %options) = @_; + + return "Job '" . $options{instance_value}->{display} . "' "; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::jobstatus::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'jobstatus', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{jobstatus}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{jobstatus}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + #[ + # { "name": "backup 1", "type": 0, "isRunning": false, "scheduled": true, "isContinuous": 0, "sessions": { "result": 0, "creationTimeUTC": 1512875246.2, "endTimeUTC": 1512883615.377 } }, + # { "name": "backup 2", "type": 0, "isRunning": false, "scheduled": true, "isContinuous": 0, "sessions": { "result": -10, "creationTimeUTC": "", "endTimeUTC": "" } }, + # { "name": "backup 3", "type": 1, "isRunning": true, "scheduled": true, "isContinuous": 0, "sessions": { "result": 0, "creationTimeUTC": 1513060425.027, "endTimeUTC": -2208992400 } } + #] + + $self->{global} = { total => 0 }; + $self->{job} = {}; + my $current_time = time(); + foreach my $job (@$decoded) { + my $sessions = ref($job->{sessions}) eq 'ARRAY' ? $job->{sessions} : [ $job->{sessions} ]; + my $session = $sessions->[0]; + if ($job->{isContinuous} == 1 && defined($sessions->[1])) { + $session = $sessions->[1]; + } + + $session->{creationTimeUTC} =~ s/,/\./; + $session->{endTimeUTC} =~ s/,/\./; + + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $job->{name} !~ /$self->{option_results}->{filter_name}/); + next if (defined($self->{option_results}->{exclude_name}) && $self->{option_results}->{exclude_name} ne '' && + $job->{name} =~ /$self->{option_results}->{exclude_name}/); + + my $job_type = defined($job_type->{ $job->{type} }) ? $job_type->{ $job->{type} } : 'unknown'; + if (defined($self->{option_results}->{filter_type}) && $self->{option_results}->{filter_type} ne '' && + $job_type !~ /$self->{option_results}->{filter_type}/) { + $self->{output}->output_add(long_msg => "skipping job '" . $job->{name} . "': no matching filter type.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_end_time}) && $self->{option_results}->{filter_end_time} =~ /[0-9]+/ && + $session->{endTimeUTC} =~ /[0-9]+/ && $session->{endTimeUTC} > 0 && $session->{endTimeUTC} < $current_time - $self->{option_results}->{filter_end_time}) { + $self->{output}->output_add(long_msg => "skipping job '" . $job->{name} . "': end time too old.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_start_time}) && $self->{option_results}->{filter_start_time} =~ /[0-9]+/ && + $session->{creationTimeUTC} =~ /[0-9]+/ && $session->{creationTimeUTC} < $current_time - $self->{option_results}->{filter_start_time}) { + $self->{output}->output_add(long_msg => "skipping job '" . $job->{name} . "': start time too old.", debug => 1); + next; + } + + my $elapsed_time; + $elapsed_time = $current_time - $session->{creationTimeUTC} if ($session->{creationTimeUTC} =~ /[0-9]/); + + #is_running = 2 (never running) + $self->{job}->{ $job->{name} } = { + display => $job->{name}, + elapsed => $elapsed_time, + type => $job_type, + is_continuous => $job->{isContinuous}, + is_running => $job->{isRunning} =~ /True|1/ ? 1 : ($session->{creationTimeUTC} !~ /[0-9]/ ? 2 : 0), + scheduled => $job->{scheduled} =~ /True|1/i ? 1 : 0, + status => defined($job_result->{ $session->{result} }) && $job_result->{ $session->{result} } ne '' ? + $job_result->{ $session->{result} } : '-' + }; + $self->{global}->{total}++; + } +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +Check job status. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=item B<--filter-name> + +Filter job name (can be a regexp). + +=item B<--exclude-name> + +Exclude job name (regexp can be used). + +=item B<--filter-type> + +Filter job type (can be a regexp). + +=item B<--filter-start-time> + +Filter job with start time greater than current time less value in seconds. + +=item B<--filter-end-time> + +Filter job with end time greater than current time less value in seconds (Default: 86400). + +=item B<--ok-status> + +Set ok threshold for status. +Can used special variables like: %{display}, %{status}, %{type}, %{is_running}, %{scheduled}. + +=item B<--warning-status> + +Set warning threshold for status. +Can used special variables like: %{display}, %{status}, %{type}, %{is_running}, %{scheduled}. + +=item B<--critical-status> + +Set critical threshold for status (Default: '%{is_running} == 0 and not %{status} =~ /Success/i'). +Can used special variables like: %{display}, %{status}, %{type}, %{is_running}, %{scheduled}. + +=item B<--warning-long> + +Set warning threshold for long jobs. +Can used special variables like: %{display}, %{status}, %{type}, %{elapsed}. + +=item B<--critical-long> + +Set critical threshold for long jobs. +Can used special variables like: %{display}, %{status}, %{type}, %{elapsed}. + +=item B<--warning-total> + +Set warning threshold for total jobs. + +=item B<--critical-total> + +Set critical threshold for total jobs. + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/mode/licenses.pm b/src/apps/backup/veeam/wsman/mode/licenses.pm new file mode 100644 index 000000000..91395857e --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/licenses.pm @@ -0,0 +1,318 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::licenses; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::common::powershell::veeam::licenses; +use apps::backup::veeam::wsman::mode::resources::types qw($license_type $license_status); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc; +use JSON::XS; +use POSIX; + +my $unitdiv = { s => 1, w => 604800, d => 86400, h => 3600, m => 60 }; +my $unitdiv_long = { s => 'seconds', w => 'weeks', d => 'days', h => 'hours', m => 'minutes' }; + +sub custom_expires_perfdata { + my ($self, %options) = @_; + + $self->{output}->perfdata_add( + nlabel => $self->{nlabel} . '.' . $unitdiv_long->{ $self->{instance_mode}->{option_results}->{unit} }, + unit => $self->{instance_mode}->{option_results}->{unit}, + instances => $self->{result_values}->{to}, + value => floor($self->{result_values}->{expires_seconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), + min => 0 + ); +} + +sub custom_expires_threshold { + my ($self, %options) = @_; + + return $self->{perfdata}->threshold_check( + value => floor($self->{result_values}->{expires_seconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + threshold => [ + { label => 'critical-' . $self->{thlabel}, exit_litteral => 'critical' }, + { label => 'warning-'. $self->{thlabel}, exit_litteral => 'warning' }, + { label => 'unknown-'. $self->{thlabel}, exit_litteral => 'unknown' } + ] + ); +} + +sub custom_status_output { + my ($self, %options) = @_; + + return 'status: ' . $self->{result_values}->{status}; +} + +sub custom_license_instances_output { + my ($self, %options) = @_; + + return sprintf( + 'instances total: %s used: %s (%.2f%%) free: %s (%.2f%%)', + $self->{result_values}->{instances_total}, + $self->{result_values}->{instances_used}, + $self->{result_values}->{instances_prct_used}, + $self->{result_values}->{instances_free}, + $self->{result_values}->{instances_prct_free} + ); +} + +sub prefix_license_output { + my ($self, %options) = @_; + + return sprintf( + "License '%s' [type: %s] ", + $options{instance_value}->{to}, + $options{instance_value}->{type} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0 }, + { name => 'licenses', type => 1, cb_prefix_output => 'prefix_license_output', message_multiple => 'All licenses are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'total', nlabel => 'licenses.total.count', set => { + key_values => [ { name => 'total' } ], + output_template => 'Number of licenses: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + } + ]; + + $self->{maps_counters}->{licenses} = [ + { label => 'status', type => 2, critical_default => '%{status} =~ /expired|invalid/i', set => { + key_values => [ { name => 'to' }, { name => 'status' }, { name => 'type' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + }, + { label => 'expires', nlabel => 'license.expires', set => { + key_values => [ { name => 'expires_seconds' }, { name => 'expires_human' }, { name => 'to' } ], + output_template => 'expires in %s', + output_use => 'expires_human', + closure_custom_perfdata => $self->can('custom_expires_perfdata'), + closure_custom_threshold_check => $self->can('custom_expires_threshold') + } + }, + { label => 'license-instances-usage', nlabel => 'license.instances.usage.count', set => { + key_values => [ { name => 'instances_used' }, { name => 'instances_free' }, { name => 'instances_prct_used' }, { name => 'instances_prct_free' }, { name => 'instances_total' } ], + closure_custom_output => $self->can('custom_license_instances_output'), + perfdatas => [ + { template => '%d', min => 0, max => 'instances_total', label_extra_instance => 1 } + ] + } + }, + { label => 'license-instances-free', display_ok => 0, nlabel => 'license.instances.free.count', set => { + key_values => [ { name => 'instances_free' }, { name => 'instances_used' }, { name => 'instances_prct_used' }, { name => 'instances_prct_free' }, { name => 'instances_total' } ], + closure_custom_output => $self->can('custom_license_instances_output'), + perfdatas => [ + { template => '%d', min => 0, max => 'instances_total', label_extra_instance => 1 } + ] + } + }, + { label => 'license-instances-usage-prct', display_ok => 0, nlabel => 'license.instances.usage.percentage', set => { + key_values => [ { name => 'instances_prct_used' }, { name => 'instances_used' }, { name => 'instances_free' }, { name => 'instances_prct_free' }, { name => 'instances_total' } ], + closure_custom_output => $self->can('custom_license_instances_output'), + perfdatas => [ + { template => '%.2f', min => 0, max => 100, unit => '%', label_extra_instance => 1 } + ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' }, + 'filter-to:s' => { name => 'filter_to' }, + 'filter-type:s' => { name => 'filter_type' }, + 'filter-status:s' => { name => 'filter_status' }, + 'unit:s' => { name => 'unit', default => 's' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + if ($self->{option_results}->{unit} eq '' || !defined($unitdiv->{$self->{option_results}->{unit}})) { + $self->{option_results}->{unit} = 's'; + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::licenses::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'licenses', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{licenses}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{licenses}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + #[ + # {"licensed_instances":7150,"expiration_time":"1632960000","type":0,"licensed_to":"Centreon Services","status":0,"used_instances":165} + #] + + $self->{global} = { total => 0 }; + $self->{licenses} = {}; + my $current_time = time(); + foreach my $license (@$decoded) { + if (defined($self->{option_results}->{filter_to}) && $self->{option_results}->{filter_to} ne '' && + $license->{licensed_to} !~ /$self->{option_results}->{filter_to}/) { + $self->{output}->output_add(long_msg => "skipping license '" . $license->{licensed_to} . "': no matching filter.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_type}) && $self->{option_results}->{filter_type} ne '' && + $license_type->{ $license->{type} } !~ /$self->{option_results}->{filter_type}/) { + $self->{output}->output_add(long_msg => "skipping license '" . $license->{licensed_to} . "': no matching filter type.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_status}) && $self->{option_results}->{filter_status} ne '' && + $license_status->{ $license->{status} } !~ /$self->{option_results}->{filter_status}/) { + $self->{output}->output_add(long_msg => "skipping license '" . $license->{licensed_to} . "': no matching filter type.", debug => 1); + next; + } + + $self->{licenses}->{ $license->{licensed_to} } = { + to => $license->{licensed_to}, + type => $license_type->{ $license->{type} }, + status => $license_status->{ $license->{status} } + }; + if (defined($license->{expiration_time})) { + $self->{licenses}->{ $license->{licensed_to} }->{expires_seconds} = $license->{expiration_time} - $current_time; + $self->{licenses}->{ $license->{licensed_to} }->{expires_human} = centreon::plugins::misc::change_seconds( + value => $self->{licenses}->{ $license->{licensed_to} }->{expires_seconds} + ); + } + if (defined($license->{licensed_instances}) && $license->{licensed_instances} > 0) { + $self->{licenses}->{ $license->{licensed_to} }->{instances_total} = $license->{licensed_instances}; + $self->{licenses}->{ $license->{licensed_to} }->{instances_used} = $license->{used_instances}; + $self->{licenses}->{ $license->{licensed_to} }->{instances_free} = $license->{licensed_instances} - $license->{used_instances}; + $self->{licenses}->{ $license->{licensed_to} }->{instances_prct_used} = $license->{used_instances} * 100 / $license->{licensed_instances}; + $self->{licenses}->{ $license->{licensed_to} }->{instances_prct_free} = 100 - $self->{licenses}->{ $license->{licensed_to} }->{instances_prct_used}; + } + + $self->{global}->{total}++; + } +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +Check licenses. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=item B<--filter-to> + +Filter licenses by person/organization (can be a regexp). + +=item B<--filter-type> + +Filter licenses by type (can be a regexp). + +=item B<--filter-status> + +Filter licenses by status (can be a regexp). + +=item B<--warning-status> + +Set warning threshold for status. +Can used special variables like: %{to}, %{status}, %{type}. + +=item B<--critical-status> + +Set critical threshold for status (Default: '%{status} =~ /expired|invalid/i'). +Can used special variables like: %{to}, %{status}, %{type}. + +=item B<--unit> + +Select the unit for expires threshold. May be 's' for seconds, 'm' for minutes, +'h' for hours, 'd' for days, 'w' for weeks. Default is seconds. + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'total', 'expires', 'license-instances-usage', 'license-instances-free', 'license-instances-usage-prct'. + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/mode/listjobs.pm b/src/apps/backup/veeam/wsman/mode/listjobs.pm new file mode 100644 index 000000000..6ef26aa9f --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/listjobs.pm @@ -0,0 +1,156 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::listjobs; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; +use apps::backup::veeam::wsman::mode::resources::types qw($job_type); +use centreon::common::powershell::veeam::listjobs; +use centreon::plugins::misc; +use JSON::XS; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' }, + 'filter-name:s' => { name => 'filter_name' } + }); + + return $self; +} + +sub run { + my ($self, %options) = @_; + + $self->manage_selection(%options); + foreach (sort keys %{$self->{jobs}}) { + $self->{output}->output_add(long_msg => "'" . $_ . "' [type = " . $self->{jobs}->{$_}->{type} . "]"); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List jobs:' + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => ['name', 'type']); +} + +sub disco_show { + my ($self, %options) = @_; + + $self->manage_selection(%options); + foreach (sort keys %{$self->{jobs}}) { + $self->{output}->add_disco_entry( + name => $_, + type => $self->{jobs}->{$_}->{type} + ); + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::listjobs::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'listjobs', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{listjobs}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{listjobs}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + $self->{jobs} = {}; + foreach my $job (@$decoded) { + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $job->{name} !~ /$self->{option_results}->{filter_name}/i) { + $self->{output}->output_add(long_msg => "skipping job '" . $job->{name} . "': no matching filter name", debug => 1); + next; + } + + $self->{jobs}->{ $job->{name} } = { + type => defined($job_type->{ $job->{type} }) ? $job_type->{ $job->{type} } : 'unknown' + }; + } +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +List jobs. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=item B<--filter-name> + +Filter job name (can be a regexp). + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/mode/listrepositories.pm b/src/apps/backup/veeam/wsman/mode/listrepositories.pm new file mode 100644 index 000000000..5fb94331b --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/listrepositories.pm @@ -0,0 +1,156 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::listrepositories; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; +use apps::backup::veeam::wsman::mode::resources::types qw($repository_type $repository_status); +use centreon::common::powershell::veeam::repositories; +use centreon::plugins::misc; +use JSON::XS; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' } + }); + + return $self; +} + + +sub run { + my ($self, %options) = @_; + + my $repos = $self->manage_selection(%options); + foreach (@$repos) { + $self->{output}->output_add( + long_msg => sprintf( + '[name: %s][type: %s][status: %s][totalSpace: %s]', + $_->{name}, + $_->{type}, + $_->{status}, + $_->{totalSpace} + ) + ); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List repositories:' + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => ['name', 'type', 'status', 'totalSpace']); +} + +sub disco_show { + my ($self, %options) = @_; + + my $repos = $self->manage_selection(%options); + foreach (@$repos) { + $self->{output}->add_disco_entry(%$_); + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::repositories::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'repositories', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{repositories}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{repositories}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + my $repos = []; + foreach (@$decoded) { + push @$repos, { + name => $_->{name}, + type => defined($repository_type->{ $_->{type} }) ? $repository_type->{ $_->{type} } : 'unknown', + status => defined($repository_status->{ $_->{status} }) ? $repository_status->{ $_->{status} } : 'unknown', + totalSpace => $_->{totalSpace} + }; + } + + return $repos; +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +List repositories. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/mode/repositories.pm b/src/apps/backup/veeam/wsman/mode/repositories.pm new file mode 100644 index 000000000..85791c1a5 --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/repositories.pm @@ -0,0 +1,272 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::repositories; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::common::powershell::veeam::repositories; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use apps::backup::veeam::wsman::mode::resources::types qw($repository_type $repository_status); +use JSON::XS; + +sub custom_status_output { + my ($self, %options) = @_; + + return sprintf( + "status: %s", + $self->{result_values}->{status} + ); +} + +sub custom_space_usage_output { + my ($self, %options) = @_; + + my ($total_size_value, $total_size_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{total}); + my ($total_used_value, $total_used_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{used}); + my ($total_free_value, $total_free_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{free}); + return sprintf( + "space usage total: %s used: %s (%.2f%%) free: %s (%.2f%%)", + $total_size_value . " " . $total_size_unit, + $total_used_value . " " . $total_used_unit, $self->{result_values}->{prct_used}, + $total_free_value . " " . $total_free_unit, $self->{result_values}->{prct_free} + ); +} + +sub repository_long_output { + my ($self, %options) = @_; + + return sprintf( + "checking repository '%s' [type: %s]", + $options{instance_value}->{name}, + $options{instance_value}->{type} + ); +} + +sub prefix_repository_output { + my ($self, %options) = @_; + + return sprintf( + "repository '%s' [type: %s] ", + $options{instance_value}->{name}, + $options{instance_value}->{type} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'repositories', type => 3, cb_prefix_output => 'prefix_repository_output', cb_long_output => 'repository_long_output', + indent_long_output => ' ', message_multiple => 'All repositories are ok', + group => [ + { name => 'status', type => 0, skipped_code => { -10 => 1 } }, + { name => 'space', type => 0, skipped_code => { -10 => 1 } } + ] + } + ]; + + $self->{maps_counters}->{status} = [ + { + label => 'status', + type => 2, + critical_default => 'not %{status} =~ /ordinal|maintenance/i', + set => { + key_values => [ + { name => 'status' }, { name => 'name' }, { name => 'type' } + ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; + + $self->{maps_counters}->{space} = [ + { label => 'space-usage', nlabel => 'repository.space.usage.bytes', set => { + key_values => [ { name => 'used' }, { name => 'free' }, { name => 'prct_used' }, { name => 'prct_free' }, { name => 'total' }, { name => 'name' } ], + closure_custom_output => $self->can('custom_space_usage_output'), + perfdatas => [ + { template => '%d', min => 0, max => 'total', unit => 'B', cast_int => 1, label_extra_instance => 1, instance_use => 'name' } + ] + } + }, + { label => 'space-usage-free', display_ok => 0, nlabel => 'repository.space.free.bytes', set => { + key_values => [ { name => 'free' }, { name => 'used' }, { name => 'prct_used' }, { name => 'prct_free' }, { name => 'total' }, { name => 'name' } ], + closure_custom_output => $self->can('custom_space_usage_output'), + perfdatas => [ + { template => '%d', min => 0, max => 'total', unit => 'B', cast_int => 1, label_extra_instance => 1, instance_use => 'name' } + ] + } + }, + { label => 'space-usage-prct', display_ok => 0, nlabel => 'repository.space.usage.percentage', set => { + key_values => [ { name => 'prct_used' }, { name => 'used' }, { name => 'free' }, { name => 'prct_free' }, { name => 'total' }, { name => 'name' } ], + closure_custom_output => $self->can('custom_space_usage_output'), + perfdatas => [ + { template => '%.2f', min => 0, max => 100, unit => '%', label_extra_instance => 1, instance_use => 'name' } + ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' }, + 'filter-name:s' => { name => 'filter_name' }, + 'exclude-name:s' => { name => 'exclude_name' }, + 'filter-type:s' => { name => 'filter_type' } + }); + + return $self; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::repositories::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'repositories', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{repositories}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{repositories}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + #[ + # {"name": "repo 1", "type": 10, "status": 0, "totalSpace": 100000000, "freeSpace": 1000000 }, + # {"name": "repo 2", "type": 11, "status": 0, "totalSpace": 250000000, "freeSpace": 1000000 } + #] + + $self->{repositories} = {}; + foreach my $repo (@$decoded) { + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $repo->{name} !~ /$self->{option_results}->{filter_name}/); + next if (defined($self->{option_results}->{exclude_name}) && $self->{option_results}->{exclude_name} ne '' && + $repo->{name} =~ /$self->{option_results}->{exclude_name}/); + + if (defined($self->{option_results}->{filter_type}) && $self->{option_results}->{filter_type} ne '' && + $repo->{type} !~ /$self->{option_results}->{filter_type}/) { + $self->{output}->output_add(long_msg => "skipping repository '$repo->{name}'.", debug => 1); + next; + } + + my $type = defined($repository_type->{ $repo->{type} }) ? $repository_type->{ $repo->{type} } : 'unknown'; + $self->{repositories}->{ $repo->{name} } = { + name => $repo->{name}, + type => $type, + status => { + name => $repo->{name}, + type => $type, + status => defined($repository_status->{ $repo->{status} }) ? $repository_status->{ $repo->{status} } : 'unknown' + }, + space => { + name => $repo->{name}, + total => $repo->{totalSpace}, + free => $repo->{freeSpace}, + used => $repo->{totalSpace} - $repo->{freeSpace}, + prct_used => 100 - ($repo->{freeSpace} * 100 / $repo->{totalSpace}), + prct_free => $repo->{freeSpace} * 100 / $repo->{totalSpace} + } + }; + } +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +Check repositories. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=item B<--filter-name> + +Filter repositories by name (can be a regexp). + +=item B<--exclude-name> + +Exclude repositories by name (regexp can be used). + +=item B<--filter-type> + +Filter repositories by type (can be a regexp). + +=item B<--warning-status> + +Set warning threshold for status. +Can used special variables like: %{status}, %{name}, %{type}. + +=item B<--critical-status> + +Set critical threshold for status (Default: 'not %{status} =~ /ordinal|maintenance/i'). +Can used special variables like: %{status}, %{name}, %{type}. + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'space-usage', 'space-usage-free', 'space-usage-prct'. + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/mode/resources/types.pm b/src/apps/backup/veeam/wsman/mode/resources/types.pm new file mode 100644 index 000000000..65a374a73 --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/resources/types.pm @@ -0,0 +1,167 @@ +# +# Copyright 2023 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::resources::types; + +use strict; +use warnings; +use Exporter; + +our $job_type; +our $job_result; +our $job_tape_type; +our $job_tape_result; +our $job_tape_state; +our $license_type; +our $license_status; +our $repository_type; +our $repository_status; + +our @ISA = qw(Exporter); +our @EXPORT_OK = qw( + $job_type $job_result $job_tape_type $job_tape_result $job_tape_state + $license_type $license_status + $repository_type $repository_status +); + +$job_type = { + 0 => 'Backup', 1 => 'Replica', 2 => 'Copy', + 3 => 'DRV', 4 => 'RestoreVm', 5 => 'RestoreVmFiles', + 6 => 'RestoreFiles', 7 => 'Failover', 8 => 'QuickMigration', + 9 => 'UndoFailover', 10 => 'FileLevelRestore', + 11 => 'LinuxFileLevelRestore', 12 => 'InstantRecovery', + 13 => 'RestoreHdd', 14 => 'Failback', 15 => 'PermanentFailover', + 16 => 'UndoFailback', 17 => 'CommitFailback', 18 => 'ShellRun', + 19 => 'VolumesDiscover', 20 => 'HvCtpRescan', + 21 => 'CatCleanup', 22 => 'SanRescan', 23 => 'CreateSanSnapshot', + 24 => 'FileTapeBackup', 25 => 'FileTapeRestore', + 26 => 'TapeValidate', 27 => 'TapeInventory', 28 => 'VmTapeBackup', + 29 => 'VmTapeRestore', 30 => 'SanMonitor', 31 => 'DeleteSanSnapshot', + 32 => 'TapeErase', 33 => 'TapeEject', 34 => 'TapeExport', + 35 => 'TapeImport', 36 => 'TapeCatalog', 37 => 'TapeLibrariesDiscover', + 38 => 'PowerShellScript', 39 => 'VmReconfig', 40 => 'VmStart', + 41 => 'VcdVAppRestore', 42 => 'VcdVmRestore', 46 => 'HierarchyScan', + 47 => 'ViVmConsolidation', 48 => 'ApplicationLevelRestore', + 50 => 'RemoteReplica', 51 => 'BackupSync', 52 => 'SqlLogBackup', + 53 => 'LicenseAutoUpdate', 54 => 'OracleLogBackup', + 55 => 'TapeMarkAsFree', 56 => 'TapeDeleteFromLibrary', + 57 => 'TapeMoveToMediaPool', 58 => 'TapeCatalogueDecrypted', + 63 => 'SimpleBackupCopyWorker', 64 => 'QuickMigrationCheck', + 65 => 'BackupCopy', 100 => 'ConfBackup', + 101 => 'ConfRestore', 102 => 'ConfResynchronize', + 103 => 'WaGlobalDedupFill', 104 => 'DatabaseMaintenance', + 105 => 'RepositoryMaintenance', 106 => 'InfrastructureRescan', + 200 => 'HvLabDeploy', 201 => 'HvLabDelete', 202 => 'FailoverPlan', + 203 => 'UndoFailoverPlan', 204 => 'FailoverPlanTask', + 205 => 'UndoFailoverPlanTask', 206 => 'PlannedFailover', + 207 => 'ViLabDeploy', 208 => 'ViLabDelete', 209 => 'ViLabStart', + 300 => 'Cloud', 301 => 'CloudApplDeploy', + 302 => 'HardwareQuotasProcessing', 303 => 'ReconnectVpn', + 304 => 'DisconnectVpn', 305 => 'OrchestratedTask', + 306 => 'ViReplicaRescan', 307 => 'ExternalRepositoryMaintenance', + 308 => 'DeleteBackup', 309 => 'CloudProviderRescan', + 401 => 'AzureApplDeploy', 500 => 'TapeTenantRestore', + 666 => 'Unknown', 4000 => 'EndpointBackup', + 4005 => 'EndpointRestore', 4010 => 'BackupCacheSync', + 4020 => 'EndpointSqlLogBackup', 4021 => 'EndpointOracleLogBackup', + 4030 => 'OracleRMANBackup', 4031 => 'SapBackintBackup', + 5000 => 'CloudBackup', 6000 => 'RestoreVirtualDisks', + 6001 => 'RestoreAgentVolumes', 7000 => 'InfraItemSave', + 7001 => 'InfraItemUpgrade', 7002 => 'InfraItemDelete', + 7003 => 'AzureWinProxySave', 8000 => 'FileLevelRestoreByEnterprise', + 9000 => 'RepositoryEvacuate', 10000 => 'LogsExport', + 10001 => 'InfraStatistic', 11000 => 'AzureVmRestore', + 12000 => 'EpAgentManagement', 12001 => 'EpAgentDiscoveryObsolete', + 12002 => 'EpAgentPolicy', 12003 => 'EpAgentBackup', + 12004 => 'EpAgentTestCreds', 12005 => 'EpAgentDiscovery', + 12006 => 'EpAgentDeletedRetention', 13000 => 'NasBackup', + 13001 => 'NasBackupBrowse', 13002 => 'NasRestore', + 14000 => 'VmbApiPolicyTempJob', 15000 => 'ExternalInfrastructureRescan', + 16000 => 'AmazonRestore', 17000 => 'StagedRestore', + 18000 => 'ArchiveBackup', 18001 => 'ArchiveRehydration', + 18002 => 'ArchiveDownload', 19000 => 'HvStagedRestore', + 20000 => 'VbkExport', 21000 => 'GuestScriptingConnect' +}; + +$job_result = { + 0 => 'success', + 1 => 'warning', + 2 => 'failed', + -1 => 'none', + -10 => 'never' +}; + +$job_tape_type = { + 0 => 'BackupToTape', 1 => 'FileToTape', + 2 => 'TapeCatalog', 3 => 'TapeEject', + 4 => 'TapeErase', 5 => 'TapeExport', + 6 => 'TapeImport', 7 => 'TapeInventory', + 8 => 'TapeRescan', 9 => 'Backup', + 10 => 'BackupSync', 11 => 'EndpointBackup', + 12 => 'ConfigurationBackup' +}; + +$job_tape_result = { + 0 => 'none', 1 => 'success', 2 => 'warning', 3 => 'failed' +}; + +$job_tape_state = { + 0 => 'Stopped', 1 => 'Starting', 2 => 'Stopping', + 3 => 'Working', 4 => 'Pausing', 5 => 'Resuming', + 6 => 'WaitingTape', 7 => 'Idle', 8 => 'Postprocessing', + 9 => 'WaitingRepository', 10 => 'Pending' +}; + +$license_type = { + 0 => 'rental', 1 => 'perpetual', + 2 => 'subscription', 3 => 'evaluation', + 4 => 'free', 5 => 'NFR', 6 => 'empty' +}; + +$license_status = { + 0 => 'valid', 1 => 'expired', 2 => 'invalid' +}; + +$repository_type = { + 0 => 'WinLocal', 1 => 'LinuxLocal', + 2 => 'CifsShare', 3 => 'DDBoost', + 4 => 'Cloud', 5 => 'HPStoreOnce', + 6 => 'ExaGrid', 7 => 'Foreign', + 8 => 'SanSnapshotOnly', 9 => 'HPStoreOnceIntegration', + 10 => 'ExtendableRepository', 11 => 'AmazonS3', + 12 => 'AzureStorage', 13 => 'AmazonS3Glacier', + 14 => 'AmazonS3Compatible', 15 => 'Tape', + 16 => 'AmazonS3External', 17 => 'AzureStorageExternal', + 18 => 'Quantum', 19 => 'IbmCosS3', + 20 => 'Nfs', 21 => 'AzureDataBox', + 22 => 'PlatformServiceExternal', 23 => 'GoogleCloudStorage', + 24 => 'AzureArchiveStorage', 25 => 'AmazonSnowball', + 26 => 'GoogleCloudStorageExternal', 27 => 'SmartObjectS3', + 31 => 'AmazonS3GlacierExternal', 32 => 'GoogleArchiveStorageExternal', + 33 => 'AzureArchiveStorageExternal' +}; + +$repository_status = { + 0 => 'ordinal', 1 => 'maintenancePending', + 2 => 'maintenance', 4 => 'evacuating', + 8 => 'sealed' +}; + +1; diff --git a/src/apps/backup/veeam/wsman/mode/tapejobs.pm b/src/apps/backup/veeam/wsman/mode/tapejobs.pm new file mode 100644 index 000000000..bd0055449 --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/tapejobs.pm @@ -0,0 +1,234 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::tapejobs; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::common::powershell::veeam::tapejobs; +use apps::backup::veeam::wsman::mode::resources::types qw($job_tape_type $job_tape_result $job_tape_state); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc; +use JSON::XS; + +sub custom_status_output { + my ($self, %options) = @_; + + return sprintf( + "last result: '%s' [type: '%s'][last state: '%s']", + $self->{result_values}->{last_result}, + $self->{result_values}->{type}, + $self->{result_values}->{last_state}, + ); +} + +sub prefix_job_output { + my ($self, %options) = @_; + + return "Tape job '" . $options{instance_value}->{display} . "' "; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0 }, + { name => 'job', type => 1, cb_prefix_output => 'prefix_job_output', message_multiple => 'All jobs are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'total', nlabel => 'tapejobs.total.count', set => { + key_values => [ { name => 'total' } ], + output_template => 'total jobs: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + } + ]; + + $self->{maps_counters}->{job} = [ + { label => 'status', type => 2, critical => '%{enabled} == 1 and not %{last_result} =~ /Success|None/i', set => { + key_values => [ + { name => 'display' }, { name => 'enabled' }, + { name => 'type' }, { name => 'last_result' }, + { name => 'last_state' } + ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' }, + 'filter-name:s' => { name => 'filter_name' }, + 'exclude-name:s' => { name => 'exclude_name' }, + 'filter-type:s' => { name => 'filter_type' } + }); + + return $self; +} + + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::tapejobs::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'tapejobs', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{tapejobs}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{tapejobs}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + #[ + # { name: 'xxxx', type: 0, Enabled: True, lastResult: 0, lastState: 0 }, + # { name: 'xxxx', type: 1, Enabled: True, lastResult: 1, lastState: 1 } + #] + + $self->{global} = { total => 0 }; + $self->{job} = {}; + foreach my $job (@$decoded) { + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $job->{name} !~ /$self->{option_results}->{filter_name}/); + next if (defined($self->{option_results}->{exclude_name}) && $self->{option_results}->{exclude_name} ne '' && + $job->{name} =~ /$self->{option_results}->{exclude_name}/); + + if (defined($self->{option_results}->{filter_type}) && $self->{option_results}->{filter_type} ne '' && + $job->{type} !~ /$self->{option_results}->{filter_type}/) { + $self->{output}->output_add(long_msg => "skipping job '" . $job->{name} . "': no matching filter type.", debug => 1); + next; + } + # Sometimes we may get such JSON: [{"lastResult":null,"name":null,"lastState":null,"type":null,"enabled":null}] + if (!defined($job->{name})) { + $self->{output}->output_add(long_msg => "skipping nulled job (empty json)", debug => 1); + next; + } + + $self->{job}->{ $job->{name} } = { + display => $job->{name}, + type => $job_tape_type->{ $job->{type} }, + enabled => $job->{enabled} =~ /True|1/ ? 1 : 0, + last_result => $job_tape_result->{ $job->{lastResult} }, + last_state => $job_tape_state->{ $job->{lastState} } + }; + $self->{global}->{total}++; + + if (scalar(keys %{$self->{job}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No tape jobs found. Review filters. More infos with --debug option"); + $self->{output}->option_exit(); + } + } +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +Check tape jobs status. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=item B<--filter-name> + +Filter job name (can be a regexp). + +=item B<--exclude-name> + +Exclude job name (regexp can be used). + +=item B<--filter-type> + +Filter job type (can be a regexp). + +=item B<--unknown-status> + +Set unknown threshold for status (Default: '') +Can used special variables like: %{display}, %{enabled}, %{type}, %{last_result}, %{last_state}. + +=item B<--warning-status> + +Set warning threshold for status (Default: '') +Can used special variables like: %{display}, %{enabled}, %{type}, %{last_result}, %{last_state}. + +=item B<--critical-status> + +Set critical threshold for status (Default: '%{enabled} == 1 and not %{last_result} =~ /Success|None/i'). +Can used special variables like: %{display}, %{enabled}, %{type}, %{last_result}, %{last_state}. + +=item B<--warning-total> + +Set warning threshold for total jobs. + +=item B<--critical-total> + +Set critical threshold for total jobs. + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/mode/vsbjobs.pm b/src/apps/backup/veeam/wsman/mode/vsbjobs.pm new file mode 100644 index 000000000..302f3a786 --- /dev/null +++ b/src/apps/backup/veeam/wsman/mode/vsbjobs.pm @@ -0,0 +1,265 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::mode::vsbjobs; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::common::powershell::veeam::vsbjobs; +use apps::backup::veeam::wsman::mode::resources::types qw($job_type $job_result); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc; +use JSON::XS; + +sub custom_status_output { + my ($self, %options) = @_; + + return sprintf( + 'last status: %s [duration: %s]', + $self->{result_values}->{status}, + centreon::plugins::misc::change_seconds(value => $self->{result_values}->{duration}) + ); +} + +sub prefix_job_output { + my ($self, %options) = @_; + + return sprintf( + "SureBackup job '%s' [type: %s] ", + $options{instance_value}->{name}, + $options{instance_value}->{type} + ); +} + +sub prefix_global_output { + my ($self, %options) = @_; + + return 'Number of SureBackup jobs '; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, cb_prefix_output => 'prefix_global_output', }, + { name => 'jobs', type => 1, cb_prefix_output => 'prefix_job_output', message_multiple => 'All SureBackup jobs are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'jobs-detected', nlabel => 'sure_backup.jobs.detected.count', set => { + key_values => [ { name => 'detected' } ], + output_template => 'detected jobs: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + }, + { label => 'jobs-success', nlabel => 'sure_backup.jobs.success.count', set => { + key_values => [ { name => 'success' } ], + output_template => 'success: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + }, + { label => 'jobs-failed', nlabel => 'sure_backup.jobs.failed.count', set => { + key_values => [ { name => 'failed' } ], + output_template => 'failed: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + }, + { label => 'jobs-warning', nlabel => 'sure_backup.jobs.warning.count', set => { + key_values => [ { name => 'warning' } ], + output_template => 'warning: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + } + ]; + + $self->{maps_counters}->{jobs} = [ + { label => 'status', type => 2, critical_default => 'not %{status} =~ /success/i', set => { + key_values => [ + { name => 'name' }, { name => 'type' }, + { name => 'status' }, { name => 'duration' } + ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ps-exec-only' => { name => 'ps_exec_only' }, + 'ps-display' => { name => 'ps_display' }, + 'filter-name:s' => { name => 'filter_name' }, + 'exclude-name:s' => { name => 'exclude_name' }, + 'filter-type:s' => { name => 'filter_type' } + }); + + return $self; + +sub manage_selection { + my ($self, %options) = @_; + + my $ps = centreon::common::powershell::veeam::vsbjobs::get_powershell(); + if (defined($self->{option_results}->{ps_display})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $ps + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $result = $options{wsman}->execute_powershell( + label => 'vsbjobs', + content => centreon::plugins::misc::powershell_encoded($ps) + ); + if (defined($self->{option_results}->{ps_exec_only})) { + $self->{output}->output_add( + severity => 'OK', + short_msg => $result->{vsbjobs}->{stdout} + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->decode($self->{output}->decode($result->{vsbjobs}->{stdout})); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@"); + $self->{output}->option_exit(); + } + + #[ + # { name: 'xxxx', type: 0, result: 0, creationTimeUTC: 1512875246.2, endTimeUTC: 1512883615.377 }, + # { name: 'xxxx', type: 0, result: 1, creationTimeUTC: '', endTimeUTC: '' }, + # { name: 'xxxx', type: 1, result: 0, creationTimeUTC: 1513060425.027, endTimeUTC: -2208992400 } + #] + + $self->{global} = { detected => 0, success => 0, failed => 0, warning => 0 }; + $self->{jobs} = {}; + my $current_time = time(); + foreach my $job (@$decoded) { + $job->{creationTimeUTC} =~ s/,/\./; + $job->{endTimeUTC} =~ s/,/\./; + + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $job->{name} !~ /$self->{option_results}->{filter_name}/); + next if (defined($self->{option_results}->{exclude_name}) && $self->{option_results}->{exclude_name} ne '' && + $job->{name} =~ /$self->{option_results}->{exclude_name}/); + + if (defined($self->{option_results}->{filter_type}) && $self->{option_results}->{filter_type} ne '' && + $job->{type} !~ /$self->{option_results}->{filter_type}/) { + $self->{output}->output_add(long_msg => "skipping job '" . $job->{name} . "': no matching filter type.", debug => 1); + next; + } + # Sometimes we may get such JSON: [{"lastResult":null,"name":null,"lastState":null,"type":null,"enabled":null}] + if (!defined($job->{name})) { + $self->{output}->output_add(long_msg => "skipping nulled job (empty json)", debug => 1); + next; + } + + my $elapsed_time = 0; + $elapsed_time = $current_time - $job->{creationTimeUTC} if ($job->{creationTimeUTC} =~ /[0-9]/); + + my $status = defined($job_result->{ $job->{result} }) && $job_result->{ $job->{result} } ne '' ? $job_result->{ $job->{result} } : '-'; + $self->{jobs}->{ $job->{name} } = { + name => $job->{name}, + type => defined($job_type->{ $job->{type} }) ? $job_type->{ $job->{type} } : 'unknown', + duration => $elapsed_time, + status => $status + }; + $self->{global}->{$status}++ if (defined($self->{global}->{$status})); + $self->{global}->{detected}++; + } +} + +1; + +__END__ + +=head1 MODE + +EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) + +Check SureBackup jobs. + +=over 8 + + +=item B<--ps-display> + +Display powershell script. + +=item B<--ps-exec-only> + +Print powershell output. + +=item B<--filter-name> + +Filter job name (can be a regexp). + +=item B<--exclude-name> + +Exclude job name (regexp can be used). + +=item B<--filter-type> + +Filter job type (can be a regexp). + +=item B<--unknown-status> + +Set unknown threshold for status. +Can used special variables like: %{name}, %{type}, %{status}, %{duration}. + +=item B<--warning-status> + +Set warning threshold for status. +Can used special variables like: %{name}, %{type}, %{status}, %{duration}. + +=item B<--critical-status> + +Set critical threshold for status (Default: 'not %{status} =~ /success/i'). +Can used special variables like: %{name}, %{type}, %{status}, %{duration}. + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'jobs-detected', 'jobs-success', 'jobs-warning', 'jobs-failed'. + +=back + +=cut diff --git a/src/apps/backup/veeam/wsman/plugin.pm b/src/apps/backup/veeam/wsman/plugin.pm new file mode 100644 index 000000000..db889bddd --- /dev/null +++ b/src/apps/backup/veeam/wsman/plugin.pm @@ -0,0 +1,55 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 apps::backup::veeam::wsman::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_wsman); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{modes} = { + 'job-status' => 'apps::backup::veeam::wsman::mode::jobstatus', + 'licenses' => 'apps::backup::veeam::wsman::mode::licenses', + 'list-jobs' => 'apps::backup::veeam::wsman::mode::listjobs', + 'list-repositories' => 'apps::backup::veeam::wsman::mode::listrepositories', + 'repositories' => 'apps::backup::veeam::wsman::mode::repositories', + 'tape-jobs' => 'apps::backup::veeam::wsman::mode::tapejobs', + 'vsb-jobs' => 'apps::backup::veeam::wsman::mode::vsbjobs' + }; + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +EXPERIMENTAL Plugin : Community-supported only (no support from Centreon at this time) + +Check Veeam through powershell. + +=cut diff --git a/src/apps/bind9/web/custom/api.pm b/src/apps/bind9/web/custom/api.pm index aad797bcf..94758f296 100644 --- a/src/apps/bind9/web/custom/api.pm +++ b/src/apps/bind9/web/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bind9/web/mode/memoryusage.pm b/src/apps/bind9/web/mode/memoryusage.pm index ceef51bea..9803a0b19 100644 --- a/src/apps/bind9/web/mode/memoryusage.pm +++ b/src/apps/bind9/web/mode/memoryusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bind9/web/mode/serverusage.pm b/src/apps/bind9/web/mode/serverusage.pm index 137ac5a18..9f0dfd704 100644 --- a/src/apps/bind9/web/mode/serverusage.pm +++ b/src/apps/bind9/web/mode/serverusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bind9/web/mode/zoneusage.pm b/src/apps/bind9/web/mode/zoneusage.pm index fde259b30..8dac888b6 100644 --- a/src/apps/bind9/web/mode/zoneusage.pm +++ b/src/apps/bind9/web/mode/zoneusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bind9/web/plugin.pm b/src/apps/bind9/web/plugin.pm index 294662540..d14d16203 100644 --- a/src/apps/bind9/web/plugin.pm +++ b/src/apps/bind9/web/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/biztalk/sql/mode/rlocationdisabled.pm b/src/apps/biztalk/sql/mode/rlocationdisabled.pm index 690a37cbc..c7b6f65a6 100644 --- a/src/apps/biztalk/sql/mode/rlocationdisabled.pm +++ b/src/apps/biztalk/sql/mode/rlocationdisabled.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/custom/api.pm b/src/apps/bluemind/local/custom/api.pm index e593e4964..8e21379e3 100644 --- a/src/apps/bluemind/local/custom/api.pm +++ b/src/apps/bluemind/local/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/core.pm b/src/apps/bluemind/local/mode/core.pm index d4a0dd418..50b0ec175 100644 --- a/src/apps/bluemind/local/mode/core.pm +++ b/src/apps/bluemind/local/mode/core.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/eas.pm b/src/apps/bluemind/local/mode/eas.pm index f783f1771..95336b7ba 100644 --- a/src/apps/bluemind/local/mode/eas.pm +++ b/src/apps/bluemind/local/mode/eas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/hps.pm b/src/apps/bluemind/local/mode/hps.pm index 4c6b2f488..73be0c40d 100644 --- a/src/apps/bluemind/local/mode/hps.pm +++ b/src/apps/bluemind/local/mode/hps.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/ips.pm b/src/apps/bluemind/local/mode/ips.pm index e60fa7dab..0299fdb47 100644 --- a/src/apps/bluemind/local/mode/ips.pm +++ b/src/apps/bluemind/local/mode/ips.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/lmtpd.pm b/src/apps/bluemind/local/mode/lmtpd.pm index cbf8929cd..38376bbfb 100644 --- a/src/apps/bluemind/local/mode/lmtpd.pm +++ b/src/apps/bluemind/local/mode/lmtpd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/milter.pm b/src/apps/bluemind/local/mode/milter.pm index c32a05d08..6ed1d4db7 100644 --- a/src/apps/bluemind/local/mode/milter.pm +++ b/src/apps/bluemind/local/mode/milter.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/webserver.pm b/src/apps/bluemind/local/mode/webserver.pm index 05bc3ecf6..284265277 100644 --- a/src/apps/bluemind/local/mode/webserver.pm +++ b/src/apps/bluemind/local/mode/webserver.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/mode/xmpp.pm b/src/apps/bluemind/local/mode/xmpp.pm index 5bf48326b..3661b528a 100644 --- a/src/apps/bluemind/local/mode/xmpp.pm +++ b/src/apps/bluemind/local/mode/xmpp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/bluemind/local/plugin.pm b/src/apps/bluemind/local/plugin.pm index b245fdd6a..07df2fa52 100644 --- a/src/apps/bluemind/local/plugin.pm +++ b/src/apps/bluemind/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/bamservice.pm b/src/apps/centreon/local/mode/bamservice.pm index 0d74fbf05..98bc85426 100644 --- a/src/apps/centreon/local/mode/bamservice.pm +++ b/src/apps/centreon/local/mode/bamservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/brokerstats.pm b/src/apps/centreon/local/mode/brokerstats.pm index 868c04a20..c3d04ad30 100644 --- a/src/apps/centreon/local/mode/brokerstats.pm +++ b/src/apps/centreon/local/mode/brokerstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/centenginestats.pm b/src/apps/centreon/local/mode/centenginestats.pm index 859f42874..82038922f 100644 --- a/src/apps/centreon/local/mode/centenginestats.pm +++ b/src/apps/centreon/local/mode/centenginestats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/centreonpluginsversion.pm b/src/apps/centreon/local/mode/centreonpluginsversion.pm index 7cac3d01a..1476b5456 100644 --- a/src/apps/centreon/local/mode/centreonpluginsversion.pm +++ b/src/apps/centreon/local/mode/centreonpluginsversion.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/downtimetrap.pm b/src/apps/centreon/local/mode/downtimetrap.pm index 7343901dc..3aa0a0617 100644 --- a/src/apps/centreon/local/mode/downtimetrap.pm +++ b/src/apps/centreon/local/mode/downtimetrap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/dummy.pm b/src/apps/centreon/local/mode/dummy.pm index 6a80c0a63..59787e963 100644 --- a/src/apps/centreon/local/mode/dummy.pm +++ b/src/apps/centreon/local/mode/dummy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/metaservice.pm b/src/apps/centreon/local/mode/metaservice.pm index 801f5fe7f..05f98a1af 100644 --- a/src/apps/centreon/local/mode/metaservice.pm +++ b/src/apps/centreon/local/mode/metaservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/notsodummy.pm b/src/apps/centreon/local/mode/notsodummy.pm index debfbb129..d10723dba 100644 --- a/src/apps/centreon/local/mode/notsodummy.pm +++ b/src/apps/centreon/local/mode/notsodummy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/mode/retentionbroker.pm b/src/apps/centreon/local/mode/retentionbroker.pm index fb89619ef..f01853c15 100644 --- a/src/apps/centreon/local/mode/retentionbroker.pm +++ b/src/apps/centreon/local/mode/retentionbroker.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/local/plugin.pm b/src/apps/centreon/local/plugin.pm index 08bb2ed41..1a7a8027a 100644 --- a/src/apps/centreon/local/plugin.pm +++ b/src/apps/centreon/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/mode/brokerstats.pm b/src/apps/centreon/map/jmx/mode/brokerstats.pm index 5a7cda36c..11dda1b7d 100644 --- a/src/apps/centreon/map/jmx/mode/brokerstats.pm +++ b/src/apps/centreon/map/jmx/mode/brokerstats.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/mode/enginestats.pm b/src/apps/centreon/map/jmx/mode/enginestats.pm index cfd866fe2..37fbc169c 100644 --- a/src/apps/centreon/map/jmx/mode/enginestats.pm +++ b/src/apps/centreon/map/jmx/mode/enginestats.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/mode/events.pm b/src/apps/centreon/map/jmx/mode/events.pm index c26c7ce5a..142479cbe 100644 --- a/src/apps/centreon/map/jmx/mode/events.pm +++ b/src/apps/centreon/map/jmx/mode/events.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/mode/openviews.pm b/src/apps/centreon/map/jmx/mode/openviews.pm index ac7be31e6..008a822f8 100644 --- a/src/apps/centreon/map/jmx/mode/openviews.pm +++ b/src/apps/centreon/map/jmx/mode/openviews.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/mode/sessions.pm b/src/apps/centreon/map/jmx/mode/sessions.pm index b74208f98..f59402d90 100644 --- a/src/apps/centreon/map/jmx/mode/sessions.pm +++ b/src/apps/centreon/map/jmx/mode/sessions.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/mode/syncstats.pm b/src/apps/centreon/map/jmx/mode/syncstats.pm index 1f8cda056..453c6a373 100644 --- a/src/apps/centreon/map/jmx/mode/syncstats.pm +++ b/src/apps/centreon/map/jmx/mode/syncstats.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map/jmx/plugin.pm b/src/apps/centreon/map/jmx/plugin.pm index 5c85cf9a0..9bb2ab81d 100644 --- a/src/apps/centreon/map/jmx/plugin.pm +++ b/src/apps/centreon/map/jmx/plugin.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map4/jmx/mode/elements.pm b/src/apps/centreon/map4/jmx/mode/elements.pm index 45f810f0e..a5e75b088 100644 --- a/src/apps/centreon/map4/jmx/mode/elements.pm +++ b/src/apps/centreon/map4/jmx/mode/elements.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map4/jmx/mode/eventqueue.pm b/src/apps/centreon/map4/jmx/mode/eventqueue.pm index 074b02cc3..c583250f8 100644 --- a/src/apps/centreon/map4/jmx/mode/eventqueue.pm +++ b/src/apps/centreon/map4/jmx/mode/eventqueue.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map4/jmx/mode/eventstatistics.pm b/src/apps/centreon/map4/jmx/mode/eventstatistics.pm index 56599ff01..59d203642 100644 --- a/src/apps/centreon/map4/jmx/mode/eventstatistics.pm +++ b/src/apps/centreon/map4/jmx/mode/eventstatistics.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map4/jmx/mode/gates.pm b/src/apps/centreon/map4/jmx/mode/gates.pm index 30adcb33f..62f6dc576 100644 --- a/src/apps/centreon/map4/jmx/mode/gates.pm +++ b/src/apps/centreon/map4/jmx/mode/gates.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map4/jmx/mode/sessions.pm b/src/apps/centreon/map4/jmx/mode/sessions.pm index 165789689..7e2f3828f 100644 --- a/src/apps/centreon/map4/jmx/mode/sessions.pm +++ b/src/apps/centreon/map4/jmx/mode/sessions.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/map4/jmx/plugin.pm b/src/apps/centreon/map4/jmx/plugin.pm index f12972e32..946e01f28 100644 --- a/src/apps/centreon/map4/jmx/plugin.pm +++ b/src/apps/centreon/map4/jmx/plugin.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/restapi/custom/api.pm b/src/apps/centreon/restapi/custom/api.pm index be09b8129..b9eca1754 100644 --- a/src/apps/centreon/restapi/custom/api.pm +++ b/src/apps/centreon/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/restapi/mode/submitresult.pm b/src/apps/centreon/restapi/mode/submitresult.pm index 0c321cbbb..777363a83 100644 --- a/src/apps/centreon/restapi/mode/submitresult.pm +++ b/src/apps/centreon/restapi/mode/submitresult.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/restapi/plugin.pm b/src/apps/centreon/restapi/plugin.pm index 730d35bc8..e5877cfe1 100644 --- a/src/apps/centreon/restapi/plugin.pm +++ b/src/apps/centreon/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/countnotifications.pm b/src/apps/centreon/sql/mode/countnotifications.pm index 6fe8d02e3..cc050f544 100644 --- a/src/apps/centreon/sql/mode/countnotifications.pm +++ b/src/apps/centreon/sql/mode/countnotifications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/countproblems.pm b/src/apps/centreon/sql/mode/countproblems.pm index 6ab91e8e5..abd23d6c2 100644 --- a/src/apps/centreon/sql/mode/countproblems.pm +++ b/src/apps/centreon/sql/mode/countproblems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/countservices.pm b/src/apps/centreon/sql/mode/countservices.pm index 7d4d6c2f8..d9b37f951 100644 --- a/src/apps/centreon/sql/mode/countservices.pm +++ b/src/apps/centreon/sql/mode/countservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/dsmqueue.pm b/src/apps/centreon/sql/mode/dsmqueue.pm index 8065872c8..82cacf71f 100644 --- a/src/apps/centreon/sql/mode/dsmqueue.pm +++ b/src/apps/centreon/sql/mode/dsmqueue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/executiontime.pm b/src/apps/centreon/sql/mode/executiontime.pm index 7a37f71fd..872f6209a 100644 --- a/src/apps/centreon/sql/mode/executiontime.pm +++ b/src/apps/centreon/sql/mode/executiontime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/multiservices.pm b/src/apps/centreon/sql/mode/multiservices.pm index e9ed88a70..3e0dfe671 100644 --- a/src/apps/centreon/sql/mode/multiservices.pm +++ b/src/apps/centreon/sql/mode/multiservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/partitioning.pm b/src/apps/centreon/sql/mode/partitioning.pm index ac5bc68cd..ed91dd331 100644 --- a/src/apps/centreon/sql/mode/partitioning.pm +++ b/src/apps/centreon/sql/mode/partitioning.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/pollerdelay.pm b/src/apps/centreon/sql/mode/pollerdelay.pm index 33eb4a1f2..c85dd5066 100644 --- a/src/apps/centreon/sql/mode/pollerdelay.pm +++ b/src/apps/centreon/sql/mode/pollerdelay.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/centreon/sql/mode/virtualservice.pm b/src/apps/centreon/sql/mode/virtualservice.pm index 25064c3d0..8bce10687 100644 --- a/src/apps/centreon/sql/mode/virtualservice.pm +++ b/src/apps/centreon/sql/mode/virtualservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/custom/api.pm b/src/apps/ceph/restapi/custom/api.pm index 35944e41f..1ae176ba1 100644 --- a/src/apps/ceph/restapi/custom/api.pm +++ b/src/apps/ceph/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/mode/health.pm b/src/apps/ceph/restapi/mode/health.pm index 3654a2dc9..2262756fb 100644 --- a/src/apps/ceph/restapi/mode/health.pm +++ b/src/apps/ceph/restapi/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/mode/listpools.pm b/src/apps/ceph/restapi/mode/listpools.pm index c2daa7ccf..78c4677d1 100644 --- a/src/apps/ceph/restapi/mode/listpools.pm +++ b/src/apps/ceph/restapi/mode/listpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/mode/osd.pm b/src/apps/ceph/restapi/mode/osd.pm index 1348dddc9..ab8a86390 100644 --- a/src/apps/ceph/restapi/mode/osd.pm +++ b/src/apps/ceph/restapi/mode/osd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/mode/pools.pm b/src/apps/ceph/restapi/mode/pools.pm index 473c9e8c4..62106aa8f 100644 --- a/src/apps/ceph/restapi/mode/pools.pm +++ b/src/apps/ceph/restapi/mode/pools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/mode/storage.pm b/src/apps/ceph/restapi/mode/storage.pm index 83a946def..5bfc1281c 100644 --- a/src/apps/ceph/restapi/mode/storage.pm +++ b/src/apps/ceph/restapi/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ceph/restapi/plugin.pm b/src/apps/ceph/restapi/plugin.pm index 61545fa03..4f087ae10 100644 --- a/src/apps/ceph/restapi/plugin.pm +++ b/src/apps/ceph/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/custom/xmlapi.pm b/src/apps/cisco/cms/restapi/custom/xmlapi.pm index 0613727b6..d7488ea27 100644 --- a/src/apps/cisco/cms/restapi/custom/xmlapi.pm +++ b/src/apps/cisco/cms/restapi/custom/xmlapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/mode/alarms.pm b/src/apps/cisco/cms/restapi/mode/alarms.pm index c908c696a..c341c8f24 100644 --- a/src/apps/cisco/cms/restapi/mode/alarms.pm +++ b/src/apps/cisco/cms/restapi/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/mode/calls.pm b/src/apps/cisco/cms/restapi/mode/calls.pm index 4f60e8c55..b72816755 100644 --- a/src/apps/cisco/cms/restapi/mode/calls.pm +++ b/src/apps/cisco/cms/restapi/mode/calls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/mode/databasestatus.pm b/src/apps/cisco/cms/restapi/mode/databasestatus.pm index bcb50354b..d587d5605 100644 --- a/src/apps/cisco/cms/restapi/mode/databasestatus.pm +++ b/src/apps/cisco/cms/restapi/mode/databasestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/mode/licenses.pm b/src/apps/cisco/cms/restapi/mode/licenses.pm index 639d97ff3..d80511ab9 100644 --- a/src/apps/cisco/cms/restapi/mode/licenses.pm +++ b/src/apps/cisco/cms/restapi/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/mode/systemstatus.pm b/src/apps/cisco/cms/restapi/mode/systemstatus.pm index bddd75dc1..4c25621ff 100644 --- a/src/apps/cisco/cms/restapi/mode/systemstatus.pm +++ b/src/apps/cisco/cms/restapi/mode/systemstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/cms/restapi/plugin.pm b/src/apps/cisco/cms/restapi/plugin.pm index acbb914a1..2a7e9b12e 100644 --- a/src/apps/cisco/cms/restapi/plugin.pm +++ b/src/apps/cisco/cms/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/dnac/restapi/custom/api.pm b/src/apps/cisco/dnac/restapi/custom/api.pm index 7d5089465..29a86a93f 100644 --- a/src/apps/cisco/dnac/restapi/custom/api.pm +++ b/src/apps/cisco/dnac/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/dnac/restapi/mode/discovery.pm b/src/apps/cisco/dnac/restapi/mode/discovery.pm index 686be57ea..9e66f2acd 100644 --- a/src/apps/cisco/dnac/restapi/mode/discovery.pm +++ b/src/apps/cisco/dnac/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/dnac/restapi/mode/networkdevices.pm b/src/apps/cisco/dnac/restapi/mode/networkdevices.pm index ffb078888..e14bc62eb 100644 --- a/src/apps/cisco/dnac/restapi/mode/networkdevices.pm +++ b/src/apps/cisco/dnac/restapi/mode/networkdevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/dnac/restapi/mode/sites.pm b/src/apps/cisco/dnac/restapi/mode/sites.pm index 774c06279..e2b70d9ed 100644 --- a/src/apps/cisco/dnac/restapi/mode/sites.pm +++ b/src/apps/cisco/dnac/restapi/mode/sites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/dnac/restapi/plugin.pm b/src/apps/cisco/dnac/restapi/plugin.pm index 77c461880..9ae1ef829 100644 --- a/src/apps/cisco/dnac/restapi/plugin.pm +++ b/src/apps/cisco/dnac/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ise/restapi/custom/xmlapi.pm b/src/apps/cisco/ise/restapi/custom/xmlapi.pm index 19cf8e6fb..aee23fdfb 100644 --- a/src/apps/cisco/ise/restapi/custom/xmlapi.pm +++ b/src/apps/cisco/ise/restapi/custom/xmlapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ise/restapi/mode/session.pm b/src/apps/cisco/ise/restapi/mode/session.pm index 6e33d3168..5fbb38bec 100644 --- a/src/apps/cisco/ise/restapi/mode/session.pm +++ b/src/apps/cisco/ise/restapi/mode/session.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ise/restapi/plugin.pm b/src/apps/cisco/ise/restapi/plugin.pm index 3f5396dd4..91842d99f 100644 --- a/src/apps/cisco/ise/restapi/plugin.pm +++ b/src/apps/cisco/ise/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ssms/restapi/custom/api.pm b/src/apps/cisco/ssms/restapi/custom/api.pm index 4a121f602..379c8ea27 100644 --- a/src/apps/cisco/ssms/restapi/custom/api.pm +++ b/src/apps/cisco/ssms/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ssms/restapi/mode/alerts.pm b/src/apps/cisco/ssms/restapi/mode/alerts.pm index 4f92ea6a5..036a6ac30 100644 --- a/src/apps/cisco/ssms/restapi/mode/alerts.pm +++ b/src/apps/cisco/ssms/restapi/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ssms/restapi/mode/licenses.pm b/src/apps/cisco/ssms/restapi/mode/licenses.pm index 24c369a73..2777eb5ed 100644 --- a/src/apps/cisco/ssms/restapi/mode/licenses.pm +++ b/src/apps/cisco/ssms/restapi/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/cisco/ssms/restapi/plugin.pm b/src/apps/cisco/ssms/restapi/plugin.pm index 7ed9a32b6..1cf6cc626 100644 --- a/src/apps/cisco/ssms/restapi/plugin.pm +++ b/src/apps/cisco/ssms/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/citrix/local/mode/folder.pm b/src/apps/citrix/local/mode/folder.pm index 81b821f6b..5839e9a7c 100644 --- a/src/apps/citrix/local/mode/folder.pm +++ b/src/apps/citrix/local/mode/folder.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/citrix/local/mode/license.pm b/src/apps/citrix/local/mode/license.pm index f249e4ba8..ff924dd42 100644 --- a/src/apps/citrix/local/mode/license.pm +++ b/src/apps/citrix/local/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/citrix/local/mode/session.pm b/src/apps/citrix/local/mode/session.pm index 3f9ef1cd9..6051aa65d 100644 --- a/src/apps/citrix/local/mode/session.pm +++ b/src/apps/citrix/local/mode/session.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/citrix/local/mode/zone.pm b/src/apps/citrix/local/mode/zone.pm index 6a4eb86d4..2d1cdaca7 100644 --- a/src/apps/citrix/local/mode/zone.pm +++ b/src/apps/citrix/local/mode/zone.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/citrix/local/plugin.pm b/src/apps/citrix/local/plugin.pm index cb0b77d28..67fc30260 100644 --- a/src/apps/citrix/local/plugin.pm +++ b/src/apps/citrix/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/controlm/restapi/custom/api.pm b/src/apps/controlm/restapi/custom/api.pm index d9ce2f152..75a7d5081 100644 --- a/src/apps/controlm/restapi/custom/api.pm +++ b/src/apps/controlm/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/controlm/restapi/mode/jobs.pm b/src/apps/controlm/restapi/mode/jobs.pm index 34cfbb866..cb2848ca8 100644 --- a/src/apps/controlm/restapi/mode/jobs.pm +++ b/src/apps/controlm/restapi/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/controlm/restapi/mode/listjobs.pm b/src/apps/controlm/restapi/mode/listjobs.pm index d7ec48a03..95c17c501 100644 --- a/src/apps/controlm/restapi/mode/listjobs.pm +++ b/src/apps/controlm/restapi/mode/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/controlm/restapi/plugin.pm b/src/apps/controlm/restapi/plugin.pm index cff4a26dc..2c27894a4 100644 --- a/src/apps/controlm/restapi/plugin.pm +++ b/src/apps/controlm/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/drbd/local/mode/resources.pm b/src/apps/drbd/local/mode/resources.pm index 4f9eaea90..b8ee3d38a 100644 --- a/src/apps/drbd/local/mode/resources.pm +++ b/src/apps/drbd/local/mode/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/drbd/local/plugin.pm b/src/apps/drbd/local/plugin.pm index 40a28bb91..a8e9b492c 100644 --- a/src/apps/drbd/local/plugin.pm +++ b/src/apps/drbd/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/dynamics/ax/mode/ediorder.pm b/src/apps/dynamics/ax/mode/ediorder.pm index 40be04427..d732da596 100644 --- a/src/apps/dynamics/ax/mode/ediorder.pm +++ b/src/apps/dynamics/ax/mode/ediorder.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/emc/ppma/restapi/custom/api.pm b/src/apps/emc/ppma/restapi/custom/api.pm index 95371ed83..957ca509d 100644 --- a/src/apps/emc/ppma/restapi/custom/api.pm +++ b/src/apps/emc/ppma/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/emc/ppma/restapi/mode/discovery.pm b/src/apps/emc/ppma/restapi/mode/discovery.pm index 9c520aa15..01c64bf83 100644 --- a/src/apps/emc/ppma/restapi/mode/discovery.pm +++ b/src/apps/emc/ppma/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/emc/ppma/restapi/mode/hosts.pm b/src/apps/emc/ppma/restapi/mode/hosts.pm index 54e0f07b6..44b47726a 100644 --- a/src/apps/emc/ppma/restapi/mode/hosts.pm +++ b/src/apps/emc/ppma/restapi/mode/hosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/emc/ppma/restapi/mode/listhosts.pm b/src/apps/emc/ppma/restapi/mode/listhosts.pm index db6a078fb..3195ccb0e 100644 --- a/src/apps/emc/ppma/restapi/mode/listhosts.pm +++ b/src/apps/emc/ppma/restapi/mode/listhosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/emc/ppma/restapi/plugin.pm b/src/apps/emc/ppma/restapi/plugin.pm index 0f9c52779..fdfd0492c 100644 --- a/src/apps/emc/ppma/restapi/plugin.pm +++ b/src/apps/emc/ppma/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/custom/api.pm b/src/apps/ericsson/enm/api/custom/api.pm index cb53215a3..409458962 100644 --- a/src/apps/ericsson/enm/api/custom/api.pm +++ b/src/apps/ericsson/enm/api/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/mode/cache.pm b/src/apps/ericsson/enm/api/mode/cache.pm index 6d8777fb1..dd2aa6001 100644 --- a/src/apps/ericsson/enm/api/mode/cache.pm +++ b/src/apps/ericsson/enm/api/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/mode/discovery.pm b/src/apps/ericsson/enm/api/mode/discovery.pm index 9035764eb..2bb4916c1 100644 --- a/src/apps/ericsson/enm/api/mode/discovery.pm +++ b/src/apps/ericsson/enm/api/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/mode/listnodes.pm b/src/apps/ericsson/enm/api/mode/listnodes.pm index 14786ff9f..f3b234df1 100644 --- a/src/apps/ericsson/enm/api/mode/listnodes.pm +++ b/src/apps/ericsson/enm/api/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/mode/listnodescelltdd.pm b/src/apps/ericsson/enm/api/mode/listnodescelltdd.pm index 4d1c79324..472ed204f 100644 --- a/src/apps/ericsson/enm/api/mode/listnodescelltdd.pm +++ b/src/apps/ericsson/enm/api/mode/listnodescelltdd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/mode/listnodesfru.pm b/src/apps/ericsson/enm/api/mode/listnodesfru.pm index fcd09b99a..e60113f2f 100644 --- a/src/apps/ericsson/enm/api/mode/listnodesfru.pm +++ b/src/apps/ericsson/enm/api/mode/listnodesfru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/mode/nodes.pm b/src/apps/ericsson/enm/api/mode/nodes.pm index 9c9acf4db..99fefdf10 100644 --- a/src/apps/ericsson/enm/api/mode/nodes.pm +++ b/src/apps/ericsson/enm/api/mode/nodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ericsson/enm/api/plugin.pm b/src/apps/ericsson/enm/api/plugin.pm index 7b019fa86..00ddeb5ed 100644 --- a/src/apps/ericsson/enm/api/plugin.pm +++ b/src/apps/ericsson/enm/api/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/github/mode/commits.pm b/src/apps/github/mode/commits.pm index fc978d1a5..8ea70168b 100644 --- a/src/apps/github/mode/commits.pm +++ b/src/apps/github/mode/commits.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/github/mode/issues.pm b/src/apps/github/mode/issues.pm index a1e2d6c6e..0a45f4d22 100644 --- a/src/apps/github/mode/issues.pm +++ b/src/apps/github/mode/issues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/github/mode/pullrequests.pm b/src/apps/github/mode/pullrequests.pm index 0237b3ad9..beac19178 100644 --- a/src/apps/github/mode/pullrequests.pm +++ b/src/apps/github/mode/pullrequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/github/mode/stats.pm b/src/apps/github/mode/stats.pm index cce66acb8..5109d3f63 100644 --- a/src/apps/github/mode/stats.pm +++ b/src/apps/github/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/github/mode/status.pm b/src/apps/github/mode/status.pm index 582b89452..f08f59b3b 100644 --- a/src/apps/github/mode/status.pm +++ b/src/apps/github/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/github/plugin.pm b/src/apps/github/plugin.pm index 756dcfcb0..64505c076 100644 --- a/src/apps/github/plugin.pm +++ b/src/apps/github/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/google/workspace/custom/api.pm b/src/apps/google/workspace/custom/api.pm index bf70c8628..6b8a07263 100644 --- a/src/apps/google/workspace/custom/api.pm +++ b/src/apps/google/workspace/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/google/workspace/mode/listservices.pm b/src/apps/google/workspace/mode/listservices.pm index ea16a8edc..7ad8828c2 100644 --- a/src/apps/google/workspace/mode/listservices.pm +++ b/src/apps/google/workspace/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/google/workspace/mode/services.pm b/src/apps/google/workspace/mode/services.pm index 05ff8a417..34d02e4b5 100644 --- a/src/apps/google/workspace/mode/services.pm +++ b/src/apps/google/workspace/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/google/workspace/plugin.pm b/src/apps/google/workspace/plugin.pm index 220ea235f..1c39dcd20 100644 --- a/src/apps/google/workspace/plugin.pm +++ b/src/apps/google/workspace/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/gorgone/restapi/custom/api.pm b/src/apps/gorgone/restapi/custom/api.pm index 62a754b5d..8819d80c0 100644 --- a/src/apps/gorgone/restapi/custom/api.pm +++ b/src/apps/gorgone/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/gorgone/restapi/mode/events.pm b/src/apps/gorgone/restapi/mode/events.pm index dad66d8b1..9f0b5f514 100644 --- a/src/apps/gorgone/restapi/mode/events.pm +++ b/src/apps/gorgone/restapi/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/gorgone/restapi/mode/nodes.pm b/src/apps/gorgone/restapi/mode/nodes.pm index cd13116c4..7c0b92e64 100644 --- a/src/apps/gorgone/restapi/mode/nodes.pm +++ b/src/apps/gorgone/restapi/mode/nodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/gorgone/restapi/plugin.pm b/src/apps/gorgone/restapi/plugin.pm index ad605ee1c..80ababd73 100644 --- a/src/apps/gorgone/restapi/plugin.pm +++ b/src/apps/gorgone/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/grafana/api/custom/api.pm b/src/apps/grafana/api/custom/api.pm index 9eacd0974..916c805c7 100644 --- a/src/apps/grafana/api/custom/api.pm +++ b/src/apps/grafana/api/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/grafana/api/mode/health.pm b/src/apps/grafana/api/mode/health.pm index 10d129b04..ac627a80a 100644 --- a/src/apps/grafana/api/mode/health.pm +++ b/src/apps/grafana/api/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/grafana/api/plugin.pm b/src/apps/grafana/api/plugin.pm index 805d93da6..3e1b2dcd7 100644 --- a/src/apps/grafana/api/plugin.pm +++ b/src/apps/grafana/api/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/graylog/restapi/custom/api.pm b/src/apps/graylog/restapi/custom/api.pm index 4840c9e05..945d7b71c 100644 --- a/src/apps/graylog/restapi/custom/api.pm +++ b/src/apps/graylog/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/graylog/restapi/mode/notifications.pm b/src/apps/graylog/restapi/mode/notifications.pm index 058e53dd5..78cae7c18 100644 --- a/src/apps/graylog/restapi/mode/notifications.pm +++ b/src/apps/graylog/restapi/mode/notifications.pm @@ -1,5 +1,5 @@ # -## Copyright 2023 Centreon (http://www.centreon.com/) +## Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/graylog/restapi/mode/query.pm b/src/apps/graylog/restapi/mode/query.pm index 3d4ec4d06..cf40d5919 100644 --- a/src/apps/graylog/restapi/mode/query.pm +++ b/src/apps/graylog/restapi/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/graylog/restapi/plugin.pm b/src/apps/graylog/restapi/plugin.pm index b6c4d3abf..57fa46262 100644 --- a/src/apps/graylog/restapi/plugin.pm +++ b/src/apps/graylog/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/haproxy/snmp/mode/backendusage.pm b/src/apps/haproxy/snmp/mode/backendusage.pm index ef04cc4f1..82a6b5820 100644 --- a/src/apps/haproxy/snmp/mode/backendusage.pm +++ b/src/apps/haproxy/snmp/mode/backendusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/haproxy/snmp/mode/frontendusage.pm b/src/apps/haproxy/snmp/mode/frontendusage.pm index b100c6c9d..aaa8dd936 100644 --- a/src/apps/haproxy/snmp/mode/frontendusage.pm +++ b/src/apps/haproxy/snmp/mode/frontendusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/haproxy/snmp/plugin.pm b/src/apps/haproxy/snmp/plugin.pm index 427792d3b..b118024ef 100644 --- a/src/apps/haproxy/snmp/plugin.pm +++ b/src/apps/haproxy/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hashicorp/vault/restapi/custom/api.pm b/src/apps/hashicorp/vault/restapi/custom/api.pm index 89427a77c..8969d3595 100644 --- a/src/apps/hashicorp/vault/restapi/custom/api.pm +++ b/src/apps/hashicorp/vault/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hashicorp/vault/restapi/mode/health.pm b/src/apps/hashicorp/vault/restapi/mode/health.pm index 2eae8c8e3..2e889c8df 100644 --- a/src/apps/hashicorp/vault/restapi/mode/health.pm +++ b/src/apps/hashicorp/vault/restapi/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hashicorp/vault/restapi/mode/raftstorage.pm b/src/apps/hashicorp/vault/restapi/mode/raftstorage.pm index 81b07b851..d44adf976 100644 --- a/src/apps/hashicorp/vault/restapi/mode/raftstorage.pm +++ b/src/apps/hashicorp/vault/restapi/mode/raftstorage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hashicorp/vault/restapi/plugin.pm b/src/apps/hashicorp/vault/restapi/plugin.pm index 37495f4ad..075d6dad6 100644 --- a/src/apps/hashicorp/vault/restapi/plugin.pm +++ b/src/apps/hashicorp/vault/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hddtemp/custom/cli.pm b/src/apps/hddtemp/custom/cli.pm index 4557e5709..c2b6cdefd 100644 --- a/src/apps/hddtemp/custom/cli.pm +++ b/src/apps/hddtemp/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hddtemp/custom/tcp.pm b/src/apps/hddtemp/custom/tcp.pm index 26c975da1..341a77cc9 100644 --- a/src/apps/hddtemp/custom/tcp.pm +++ b/src/apps/hddtemp/custom/tcp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hddtemp/mode/listdrives.pm b/src/apps/hddtemp/mode/listdrives.pm index 389c0db4f..a7a3b5188 100644 --- a/src/apps/hddtemp/mode/listdrives.pm +++ b/src/apps/hddtemp/mode/listdrives.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hddtemp/mode/temperatures.pm b/src/apps/hddtemp/mode/temperatures.pm index 75286b6ba..9fb3ba177 100644 --- a/src/apps/hddtemp/mode/temperatures.pm +++ b/src/apps/hddtemp/mode/temperatures.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/hddtemp/plugin.pm b/src/apps/hddtemp/plugin.pm index 5cd38aff3..c7af065b4 100644 --- a/src/apps/hddtemp/plugin.pm +++ b/src/apps/hddtemp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ibm/tsamp/local/mode/listresourcegroups.pm b/src/apps/ibm/tsamp/local/mode/listresourcegroups.pm index 569a75bf8..0669381b0 100644 --- a/src/apps/ibm/tsamp/local/mode/listresourcegroups.pm +++ b/src/apps/ibm/tsamp/local/mode/listresourcegroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ibm/tsamp/local/mode/resourcegroups.pm b/src/apps/ibm/tsamp/local/mode/resourcegroups.pm index 84e639ed0..f50c39c14 100644 --- a/src/apps/ibm/tsamp/local/mode/resourcegroups.pm +++ b/src/apps/ibm/tsamp/local/mode/resourcegroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ibm/tsamp/local/plugin.pm b/src/apps/ibm/tsamp/local/plugin.pm index 46fd85cc4..b078be471 100644 --- a/src/apps/ibm/tsamp/local/plugin.pm +++ b/src/apps/ibm/tsamp/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/ig/snmp/mode/spanusage.pm b/src/apps/inin/ig/snmp/mode/spanusage.pm index 925cd61c3..d353cc1fa 100644 --- a/src/apps/inin/ig/snmp/mode/spanusage.pm +++ b/src/apps/inin/ig/snmp/mode/spanusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/ig/snmp/mode/stats.pm b/src/apps/inin/ig/snmp/mode/stats.pm index f76f6503c..ee7c9d96d 100644 --- a/src/apps/inin/ig/snmp/mode/stats.pm +++ b/src/apps/inin/ig/snmp/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/ig/snmp/plugin.pm b/src/apps/inin/ig/snmp/plugin.pm index b66f855d3..397a9f03c 100644 --- a/src/apps/inin/ig/snmp/plugin.pm +++ b/src/apps/inin/ig/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/mediaserver/snmp/mode/audioengineusage.pm b/src/apps/inin/mediaserver/snmp/mode/audioengineusage.pm index 07e894e19..280e3c88f 100644 --- a/src/apps/inin/mediaserver/snmp/mode/audioengineusage.pm +++ b/src/apps/inin/mediaserver/snmp/mode/audioengineusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/mediaserver/snmp/mode/cmdsrvusage.pm b/src/apps/inin/mediaserver/snmp/mode/cmdsrvusage.pm index 7fd069c80..51e3d3bbb 100644 --- a/src/apps/inin/mediaserver/snmp/mode/cmdsrvusage.pm +++ b/src/apps/inin/mediaserver/snmp/mode/cmdsrvusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/mediaserver/snmp/mode/component.pm b/src/apps/inin/mediaserver/snmp/mode/component.pm index 1a4091335..ce0e6c5bf 100644 --- a/src/apps/inin/mediaserver/snmp/mode/component.pm +++ b/src/apps/inin/mediaserver/snmp/mode/component.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/mediaserver/snmp/mode/diskusage.pm b/src/apps/inin/mediaserver/snmp/mode/diskusage.pm index 122d08732..bab760bf4 100644 --- a/src/apps/inin/mediaserver/snmp/mode/diskusage.pm +++ b/src/apps/inin/mediaserver/snmp/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/mediaserver/snmp/mode/memoryusage.pm b/src/apps/inin/mediaserver/snmp/mode/memoryusage.pm index 0644b8706..1a8eeb38d 100644 --- a/src/apps/inin/mediaserver/snmp/mode/memoryusage.pm +++ b/src/apps/inin/mediaserver/snmp/mode/memoryusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/inin/mediaserver/snmp/plugin.pm b/src/apps/inin/mediaserver/snmp/plugin.pm index acf99ac0e..757889341 100644 --- a/src/apps/inin/mediaserver/snmp/plugin.pm +++ b/src/apps/inin/mediaserver/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ipfabric/custom/api.pm b/src/apps/ipfabric/custom/api.pm index a9a67c588..031c1a5a3 100644 --- a/src/apps/ipfabric/custom/api.pm +++ b/src/apps/ipfabric/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ipfabric/mode/discovery.pm b/src/apps/ipfabric/mode/discovery.pm index 2d12bb3ee..82fa05129 100644 --- a/src/apps/ipfabric/mode/discovery.pm +++ b/src/apps/ipfabric/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ipfabric/mode/listpaths.pm b/src/apps/ipfabric/mode/listpaths.pm index 0de647683..4dc70299b 100644 --- a/src/apps/ipfabric/mode/listpaths.pm +++ b/src/apps/ipfabric/mode/listpaths.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/ipfabric/mode/pathverification.pm b/src/apps/ipfabric/mode/pathverification.pm index dfc7a412c..0b62e3825 100644 --- a/src/apps/ipfabric/mode/pathverification.pm +++ b/src/apps/ipfabric/mode/pathverification.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infraspathture and application monitoring for diff --git a/src/apps/ipfabric/plugin.pm b/src/apps/ipfabric/plugin.pm index d5834c8e7..f85c39f7e 100644 --- a/src/apps/ipfabric/plugin.pm +++ b/src/apps/ipfabric/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/mode/agent.pm b/src/apps/java/awa/jmx/mode/agent.pm index 9d99b43a2..981173867 100644 --- a/src/apps/java/awa/jmx/mode/agent.pm +++ b/src/apps/java/awa/jmx/mode/agent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/mode/listagents.pm b/src/apps/java/awa/jmx/mode/listagents.pm index 44a910ead..93f221a1c 100644 --- a/src/apps/java/awa/jmx/mode/listagents.pm +++ b/src/apps/java/awa/jmx/mode/listagents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/mode/listqueues.pm b/src/apps/java/awa/jmx/mode/listqueues.pm index c27c998c6..e2e66d2f5 100644 --- a/src/apps/java/awa/jmx/mode/listqueues.pm +++ b/src/apps/java/awa/jmx/mode/listqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/mode/listservers.pm b/src/apps/java/awa/jmx/mode/listservers.pm index ecbd144ea..cec2a309a 100644 --- a/src/apps/java/awa/jmx/mode/listservers.pm +++ b/src/apps/java/awa/jmx/mode/listservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/mode/queue.pm b/src/apps/java/awa/jmx/mode/queue.pm index d0df5c61a..5a070818a 100644 --- a/src/apps/java/awa/jmx/mode/queue.pm +++ b/src/apps/java/awa/jmx/mode/queue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/mode/server.pm b/src/apps/java/awa/jmx/mode/server.pm index 03ad8b091..a472007a0 100644 --- a/src/apps/java/awa/jmx/mode/server.pm +++ b/src/apps/java/awa/jmx/mode/server.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/awa/jmx/plugin.pm b/src/apps/java/awa/jmx/plugin.pm index c0041d1bf..f08a5402a 100644 --- a/src/apps/java/awa/jmx/plugin.pm +++ b/src/apps/java/awa/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/hibernate/jmx/mode/stats.pm b/src/apps/java/hibernate/jmx/mode/stats.pm index 26cf0a3b5..e721568ff 100644 --- a/src/apps/java/hibernate/jmx/mode/stats.pm +++ b/src/apps/java/hibernate/jmx/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/hibernate/jmx/plugin.pm b/src/apps/java/hibernate/jmx/plugin.pm index ec67d4e73..13ca2b244 100644 --- a/src/apps/java/hibernate/jmx/plugin.pm +++ b/src/apps/java/hibernate/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jboss/jmx/mode/datasourceusage.pm b/src/apps/java/jboss/jmx/mode/datasourceusage.pm index 8aab93db9..b6acdb486 100644 --- a/src/apps/java/jboss/jmx/mode/datasourceusage.pm +++ b/src/apps/java/jboss/jmx/mode/datasourceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jboss/jmx/mode/listdatasources.pm b/src/apps/java/jboss/jmx/mode/listdatasources.pm index 037c5f736..b9ed9d09f 100644 --- a/src/apps/java/jboss/jmx/mode/listdatasources.pm +++ b/src/apps/java/jboss/jmx/mode/listdatasources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jboss/jmx/plugin.pm b/src/apps/java/jboss/jmx/plugin.pm index 9041f0ab9..8edad7184 100644 --- a/src/apps/java/jboss/jmx/plugin.pm +++ b/src/apps/java/jboss/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/mode/classcount.pm b/src/apps/java/jvm/actuator/mode/classcount.pm index ecb21bffb..5f5359788 100644 --- a/src/apps/java/jvm/actuator/mode/classcount.pm +++ b/src/apps/java/jvm/actuator/mode/classcount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/mode/cpuload.pm b/src/apps/java/jvm/actuator/mode/cpuload.pm index 1bdfd7c62..27ff03fee 100644 --- a/src/apps/java/jvm/actuator/mode/cpuload.pm +++ b/src/apps/java/jvm/actuator/mode/cpuload.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -86,19 +86,19 @@ WARN : Probably not work for java -version < 7. =item B<--warning-system> -Warning threshold of System cpuload +Warning threshold of system CPU load. =item B<--critical-system> -Critical threshold of System cpuload +Critical threshold of system CPU load. =item B<--warning-process> -Warning threshold of Process cpuload +Warning threshold of process CPU load. =item B<--critical-process> -Critical threshold of Process cpuload +Critical threshold of process CPU load. =back diff --git a/src/apps/java/jvm/actuator/mode/fdusage.pm b/src/apps/java/jvm/actuator/mode/fdusage.pm index edb24b7a4..0303d58fd 100644 --- a/src/apps/java/jvm/actuator/mode/fdusage.pm +++ b/src/apps/java/jvm/actuator/mode/fdusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/mode/loadaverage.pm b/src/apps/java/jvm/actuator/mode/loadaverage.pm index 5a808aa92..82e256a49 100644 --- a/src/apps/java/jvm/actuator/mode/loadaverage.pm +++ b/src/apps/java/jvm/actuator/mode/loadaverage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/mode/memory.pm b/src/apps/java/jvm/actuator/mode/memory.pm index 7a6722382..a57e2017e 100644 --- a/src/apps/java/jvm/actuator/mode/memory.pm +++ b/src/apps/java/jvm/actuator/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/mode/memorydetailed.pm b/src/apps/java/jvm/actuator/mode/memorydetailed.pm index 95afe3d65..363566fb3 100644 --- a/src/apps/java/jvm/actuator/mode/memorydetailed.pm +++ b/src/apps/java/jvm/actuator/mode/memorydetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/mode/threads.pm b/src/apps/java/jvm/actuator/mode/threads.pm index ecdf8b3e0..dcfde8aea 100644 --- a/src/apps/java/jvm/actuator/mode/threads.pm +++ b/src/apps/java/jvm/actuator/mode/threads.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/actuator/plugin.pm b/src/apps/java/jvm/actuator/plugin.pm index fa68b7bc9..5da6865e6 100644 --- a/src/apps/java/jvm/actuator/plugin.pm +++ b/src/apps/java/jvm/actuator/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/jvm/jmx/plugin.pm b/src/apps/java/jvm/jmx/plugin.pm index 081101757..27aab9a5c 100644 --- a/src/apps/java/jvm/jmx/plugin.pm +++ b/src/apps/java/jvm/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/kafka/jmx/mode/globalstats.pm b/src/apps/java/kafka/jmx/mode/globalstats.pm index 668eb29fd..10b0463c1 100644 --- a/src/apps/java/kafka/jmx/mode/globalstats.pm +++ b/src/apps/java/kafka/jmx/mode/globalstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/kafka/jmx/plugin.pm b/src/apps/java/kafka/jmx/plugin.pm index 90dbbeced..83f522ecd 100644 --- a/src/apps/java/kafka/jmx/plugin.pm +++ b/src/apps/java/kafka/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/peoplesoft/jmx/mode/queuelength.pm b/src/apps/java/peoplesoft/jmx/mode/queuelength.pm index b1f8b901f..b72b54eeb 100644 --- a/src/apps/java/peoplesoft/jmx/mode/queuelength.pm +++ b/src/apps/java/peoplesoft/jmx/mode/queuelength.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/peoplesoft/jmx/mode/sessions.pm b/src/apps/java/peoplesoft/jmx/mode/sessions.pm index 6a1bff012..e77111123 100644 --- a/src/apps/java/peoplesoft/jmx/mode/sessions.pm +++ b/src/apps/java/peoplesoft/jmx/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/peoplesoft/jmx/plugin.pm b/src/apps/java/peoplesoft/jmx/plugin.pm index 58bfb9895..030eb41ad 100644 --- a/src/apps/java/peoplesoft/jmx/plugin.pm +++ b/src/apps/java/peoplesoft/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/solr/jmx/mode/cacheusage.pm b/src/apps/java/solr/jmx/mode/cacheusage.pm index 79472b344..525b4ff69 100644 --- a/src/apps/java/solr/jmx/mode/cacheusage.pm +++ b/src/apps/java/solr/jmx/mode/cacheusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/solr/jmx/mode/requesthandlerusage.pm b/src/apps/java/solr/jmx/mode/requesthandlerusage.pm index 03af5ecd5..f3cb81be3 100644 --- a/src/apps/java/solr/jmx/mode/requesthandlerusage.pm +++ b/src/apps/java/solr/jmx/mode/requesthandlerusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/solr/jmx/plugin.pm b/src/apps/java/solr/jmx/plugin.pm index 8519d7940..077df35f3 100644 --- a/src/apps/java/solr/jmx/plugin.pm +++ b/src/apps/java/solr/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/weblogic/jmx/mode/workmanager.pm b/src/apps/java/weblogic/jmx/mode/workmanager.pm index 96e0d7317..5aae8c01e 100644 --- a/src/apps/java/weblogic/jmx/mode/workmanager.pm +++ b/src/apps/java/weblogic/jmx/mode/workmanager.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/weblogic/jmx/plugin.pm b/src/apps/java/weblogic/jmx/plugin.pm index 4b85ab726..aa061c350 100644 --- a/src/apps/java/weblogic/jmx/plugin.pm +++ b/src/apps/java/weblogic/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/zookeeper/jmx/mode/stats.pm b/src/apps/java/zookeeper/jmx/mode/stats.pm index 67a0669a3..a0e21bc58 100644 --- a/src/apps/java/zookeeper/jmx/mode/stats.pm +++ b/src/apps/java/zookeeper/jmx/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/java/zookeeper/jmx/plugin.pm b/src/apps/java/zookeeper/jmx/plugin.pm index 420e260a4..b721b9256 100644 --- a/src/apps/java/zookeeper/jmx/plugin.pm +++ b/src/apps/java/zookeeper/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jenkins/custom/api.pm b/src/apps/jenkins/custom/api.pm index 929ec6375..861225928 100644 --- a/src/apps/jenkins/custom/api.pm +++ b/src/apps/jenkins/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jenkins/mode/jobs.pm b/src/apps/jenkins/mode/jobs.pm index eaa6896ed..1a3a74f4a 100644 --- a/src/apps/jenkins/mode/jobs.pm +++ b/src/apps/jenkins/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jenkins/mode/listjobs.pm b/src/apps/jenkins/mode/listjobs.pm index 1d343fb45..26154d638 100644 --- a/src/apps/jenkins/mode/listjobs.pm +++ b/src/apps/jenkins/mode/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jenkins/plugin.pm b/src/apps/jenkins/plugin.pm index c4a978ec5..fbfd5646d 100644 --- a/src/apps/jenkins/plugin.pm +++ b/src/apps/jenkins/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jive/sql/mode/etljobstatus.pm b/src/apps/jive/sql/mode/etljobstatus.pm index 27fb66b54..20c5b1713 100644 --- a/src/apps/jive/sql/mode/etljobstatus.pm +++ b/src/apps/jive/sql/mode/etljobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jmeter/mode/scenario.pm b/src/apps/jmeter/mode/scenario.pm index 2ec10e300..da6f0f1d9 100644 --- a/src/apps/jmeter/mode/scenario.pm +++ b/src/apps/jmeter/mode/scenario.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/jmeter/plugin.pm b/src/apps/jmeter/plugin.pm index 32570750d..4c8727f76 100644 --- a/src/apps/jmeter/plugin.pm +++ b/src/apps/jmeter/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/keepalived/snmp/mode/vrrpstatus.pm b/src/apps/keepalived/snmp/mode/vrrpstatus.pm index 1dd36c6c5..7ebf9a16b 100644 --- a/src/apps/keepalived/snmp/mode/vrrpstatus.pm +++ b/src/apps/keepalived/snmp/mode/vrrpstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/keepalived/snmp/plugin.pm b/src/apps/keepalived/snmp/plugin.pm index efdcad728..6ab660fb5 100644 --- a/src/apps/keepalived/snmp/plugin.pm +++ b/src/apps/keepalived/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/custom/api.pm b/src/apps/kingdee/eas/custom/api.pm index 516ecce50..cefb475e4 100644 --- a/src/apps/kingdee/eas/custom/api.pm +++ b/src/apps/kingdee/eas/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/activeusers.pm b/src/apps/kingdee/eas/mode/activeusers.pm index 749ad88e2..fcbe743a6 100644 --- a/src/apps/kingdee/eas/mode/activeusers.pm +++ b/src/apps/kingdee/eas/mode/activeusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/classloading.pm b/src/apps/kingdee/eas/mode/classloading.pm index 9a065e465..bce0a6d70 100644 --- a/src/apps/kingdee/eas/mode/classloading.pm +++ b/src/apps/kingdee/eas/mode/classloading.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/datasource.pm b/src/apps/kingdee/eas/mode/datasource.pm index 7bf2001d8..ef0368b0e 100644 --- a/src/apps/kingdee/eas/mode/datasource.pm +++ b/src/apps/kingdee/eas/mode/datasource.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/handlers.pm b/src/apps/kingdee/eas/mode/handlers.pm index 3f89872dc..10f7a038a 100644 --- a/src/apps/kingdee/eas/mode/handlers.pm +++ b/src/apps/kingdee/eas/mode/handlers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/ibmjvmgc.pm b/src/apps/kingdee/eas/mode/ibmjvmgc.pm index f73574ab6..7f2b673ed 100644 --- a/src/apps/kingdee/eas/mode/ibmjvmgc.pm +++ b/src/apps/kingdee/eas/mode/ibmjvmgc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/javaruntime.pm b/src/apps/kingdee/eas/mode/javaruntime.pm index 899315c25..f3cc1735f 100644 --- a/src/apps/kingdee/eas/mode/javaruntime.pm +++ b/src/apps/kingdee/eas/mode/javaruntime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/memory.pm b/src/apps/kingdee/eas/mode/memory.pm index 86c9a60cb..572516745 100644 --- a/src/apps/kingdee/eas/mode/memory.pm +++ b/src/apps/kingdee/eas/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/oraclejvmgc.pm b/src/apps/kingdee/eas/mode/oraclejvmgc.pm index 65ad526dd..65f448039 100644 --- a/src/apps/kingdee/eas/mode/oraclejvmgc.pm +++ b/src/apps/kingdee/eas/mode/oraclejvmgc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/oracleksqltemptable.pm b/src/apps/kingdee/eas/mode/oracleksqltemptable.pm index e33685fe9..b94583331 100644 --- a/src/apps/kingdee/eas/mode/oracleksqltemptable.pm +++ b/src/apps/kingdee/eas/mode/oracleksqltemptable.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/oraclerecyclebin.pm b/src/apps/kingdee/eas/mode/oraclerecyclebin.pm index 96aec7f4f..ec1e26fd9 100644 --- a/src/apps/kingdee/eas/mode/oraclerecyclebin.pm +++ b/src/apps/kingdee/eas/mode/oraclerecyclebin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/oracleredolog.pm b/src/apps/kingdee/eas/mode/oracleredolog.pm index 9a92ab2c8..3ccbd176e 100644 --- a/src/apps/kingdee/eas/mode/oracleredolog.pm +++ b/src/apps/kingdee/eas/mode/oracleredolog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure application monitoring for diff --git a/src/apps/kingdee/eas/mode/oraclesession.pm b/src/apps/kingdee/eas/mode/oraclesession.pm index d3eb32741..8716157e1 100644 --- a/src/apps/kingdee/eas/mode/oraclesession.pm +++ b/src/apps/kingdee/eas/mode/oraclesession.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure application monitoring for diff --git a/src/apps/kingdee/eas/mode/oracletable.pm b/src/apps/kingdee/eas/mode/oracletable.pm index b26e8945d..e33586c11 100644 --- a/src/apps/kingdee/eas/mode/oracletable.pm +++ b/src/apps/kingdee/eas/mode/oracletable.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/oracleversion.pm b/src/apps/kingdee/eas/mode/oracleversion.pm index a6173adb8..651f416cd 100644 --- a/src/apps/kingdee/eas/mode/oracleversion.pm +++ b/src/apps/kingdee/eas/mode/oracleversion.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure application monitoring for diff --git a/src/apps/kingdee/eas/mode/ormrpc.pm b/src/apps/kingdee/eas/mode/ormrpc.pm index 00d6be536..7e03d482c 100644 --- a/src/apps/kingdee/eas/mode/ormrpc.pm +++ b/src/apps/kingdee/eas/mode/ormrpc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/mode/transaction.pm b/src/apps/kingdee/eas/mode/transaction.pm index bc3aaeec8..368c47172 100644 --- a/src/apps/kingdee/eas/mode/transaction.pm +++ b/src/apps/kingdee/eas/mode/transaction.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/kingdee/eas/plugin.pm b/src/apps/kingdee/eas/plugin.pm index 614ece1bb..f68bc2b9b 100644 --- a/src/apps/kingdee/eas/plugin.pm +++ b/src/apps/kingdee/eas/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lmsensors/snmp/mode/components/fan.pm b/src/apps/lmsensors/snmp/mode/components/fan.pm index b627c24d6..ef07eac52 100644 --- a/src/apps/lmsensors/snmp/mode/components/fan.pm +++ b/src/apps/lmsensors/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lmsensors/snmp/mode/components/misc.pm b/src/apps/lmsensors/snmp/mode/components/misc.pm index f2e36a069..a947dbc33 100644 --- a/src/apps/lmsensors/snmp/mode/components/misc.pm +++ b/src/apps/lmsensors/snmp/mode/components/misc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lmsensors/snmp/mode/components/temperature.pm b/src/apps/lmsensors/snmp/mode/components/temperature.pm index deb77c8fc..6d5218e32 100644 --- a/src/apps/lmsensors/snmp/mode/components/temperature.pm +++ b/src/apps/lmsensors/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lmsensors/snmp/mode/components/voltage.pm b/src/apps/lmsensors/snmp/mode/components/voltage.pm index b2a0620f9..7b1847004 100644 --- a/src/apps/lmsensors/snmp/mode/components/voltage.pm +++ b/src/apps/lmsensors/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lmsensors/snmp/mode/sensors.pm b/src/apps/lmsensors/snmp/mode/sensors.pm index ab295941d..e1db8dddb 100644 --- a/src/apps/lmsensors/snmp/mode/sensors.pm +++ b/src/apps/lmsensors/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lmsensors/snmp/plugin.pm b/src/apps/lmsensors/snmp/plugin.pm index 8d3afb3e6..ba2ccda1b 100644 --- a/src/apps/lmsensors/snmp/plugin.pm +++ b/src/apps/lmsensors/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lotus/snmp/mode/mailstate.pm b/src/apps/lotus/snmp/mode/mailstate.pm index ee91590a2..934ec7388 100644 --- a/src/apps/lotus/snmp/mode/mailstate.pm +++ b/src/apps/lotus/snmp/mode/mailstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lotus/snmp/mode/mailtime.pm b/src/apps/lotus/snmp/mode/mailtime.pm index 841c0301d..7703b583a 100644 --- a/src/apps/lotus/snmp/mode/mailtime.pm +++ b/src/apps/lotus/snmp/mode/mailtime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lotus/snmp/mode/serveravailability.pm b/src/apps/lotus/snmp/mode/serveravailability.pm index 39513b941..1423dc38f 100644 --- a/src/apps/lotus/snmp/mode/serveravailability.pm +++ b/src/apps/lotus/snmp/mode/serveravailability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lotus/snmp/mode/servertransactions.pm b/src/apps/lotus/snmp/mode/servertransactions.pm index c60d41ed3..fc042b491 100644 --- a/src/apps/lotus/snmp/mode/servertransactions.pm +++ b/src/apps/lotus/snmp/mode/servertransactions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lotus/snmp/mode/usersessions.pm b/src/apps/lotus/snmp/mode/usersessions.pm index a0942583d..5a3493d99 100644 --- a/src/apps/lotus/snmp/mode/usersessions.pm +++ b/src/apps/lotus/snmp/mode/usersessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lotus/snmp/plugin.pm b/src/apps/lotus/snmp/plugin.pm index f2dfa42db..36b54a1db 100644 --- a/src/apps/lotus/snmp/plugin.pm +++ b/src/apps/lotus/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/lync/2013/mssql/mode/lyncusers.pm b/src/apps/lync/2013/mssql/mode/lyncusers.pm index 6662a0e97..64e4a6811 100644 --- a/src/apps/lync/2013/mssql/mode/lyncusers.pm +++ b/src/apps/lync/2013/mssql/mode/lyncusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/activedirectory/local/mode/dcdiag.pm b/src/apps/microsoft/activedirectory/local/mode/dcdiag.pm index 522ba3f8b..4d863af56 100644 --- a/src/apps/microsoft/activedirectory/local/mode/dcdiag.pm +++ b/src/apps/microsoft/activedirectory/local/mode/dcdiag.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/activedirectory/local/mode/dfsrbacklog.pm b/src/apps/microsoft/activedirectory/local/mode/dfsrbacklog.pm index 46aee4289..4578a185e 100644 --- a/src/apps/microsoft/activedirectory/local/mode/dfsrbacklog.pm +++ b/src/apps/microsoft/activedirectory/local/mode/dfsrbacklog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/activedirectory/local/mode/netdom.pm b/src/apps/microsoft/activedirectory/local/mode/netdom.pm index 385749bf7..0ca260d87 100644 --- a/src/apps/microsoft/activedirectory/local/mode/netdom.pm +++ b/src/apps/microsoft/activedirectory/local/mode/netdom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/activedirectory/local/plugin.pm b/src/apps/microsoft/activedirectory/local/plugin.pm index ef17f91ae..8e5509785 100644 --- a/src/apps/microsoft/activedirectory/local/plugin.pm +++ b/src/apps/microsoft/activedirectory/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/activedirectory/wsman/mode/dcdiag.pm b/src/apps/microsoft/activedirectory/wsman/mode/dcdiag.pm index 9b6acb4d4..d4eca8ed2 100644 --- a/src/apps/microsoft/activedirectory/wsman/mode/dcdiag.pm +++ b/src/apps/microsoft/activedirectory/wsman/mode/dcdiag.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/activedirectory/wsman/plugin.pm b/src/apps/microsoft/activedirectory/wsman/plugin.pm index 870c75675..75da9da2c 100644 --- a/src/apps/microsoft/activedirectory/wsman/plugin.pm +++ b/src/apps/microsoft/activedirectory/wsman/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/dhcp/snmp/mode/listsubnets.pm b/src/apps/microsoft/dhcp/snmp/mode/listsubnets.pm index 28adc3645..c2b8a0ee0 100644 --- a/src/apps/microsoft/dhcp/snmp/mode/listsubnets.pm +++ b/src/apps/microsoft/dhcp/snmp/mode/listsubnets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/dhcp/snmp/mode/subnets.pm b/src/apps/microsoft/dhcp/snmp/mode/subnets.pm index 2ab32628d..ed6d86614 100644 --- a/src/apps/microsoft/dhcp/snmp/mode/subnets.pm +++ b/src/apps/microsoft/dhcp/snmp/mode/subnets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/dhcp/snmp/plugin.pm b/src/apps/microsoft/dhcp/snmp/plugin.pm index 8bbcf8a18..02c0bda8d 100644 --- a/src/apps/microsoft/dhcp/snmp/plugin.pm +++ b/src/apps/microsoft/dhcp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/activesyncmailbox.pm b/src/apps/microsoft/exchange/local/mode/activesyncmailbox.pm index dd0f8f6a1..7fc00b3a7 100644 --- a/src/apps/microsoft/exchange/local/mode/activesyncmailbox.pm +++ b/src/apps/microsoft/exchange/local/mode/activesyncmailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/databases.pm b/src/apps/microsoft/exchange/local/mode/databases.pm index 9df4679c2..344b76a3b 100644 --- a/src/apps/microsoft/exchange/local/mode/databases.pm +++ b/src/apps/microsoft/exchange/local/mode/databases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/imapmailbox.pm b/src/apps/microsoft/exchange/local/mode/imapmailbox.pm index 8fca0de34..6e39c0bab 100644 --- a/src/apps/microsoft/exchange/local/mode/imapmailbox.pm +++ b/src/apps/microsoft/exchange/local/mode/imapmailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/listdatabases.pm b/src/apps/microsoft/exchange/local/mode/listdatabases.pm index 5f19a407c..abee3abac 100644 --- a/src/apps/microsoft/exchange/local/mode/listdatabases.pm +++ b/src/apps/microsoft/exchange/local/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/mailboxes.pm b/src/apps/microsoft/exchange/local/mode/mailboxes.pm index 0e73ced3e..fb24924b2 100644 --- a/src/apps/microsoft/exchange/local/mode/mailboxes.pm +++ b/src/apps/microsoft/exchange/local/mode/mailboxes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/mapimailbox.pm b/src/apps/microsoft/exchange/local/mode/mapimailbox.pm index 676ffaa3d..91c3fd2ac 100644 --- a/src/apps/microsoft/exchange/local/mode/mapimailbox.pm +++ b/src/apps/microsoft/exchange/local/mode/mapimailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/outlookwebservices.pm b/src/apps/microsoft/exchange/local/mode/outlookwebservices.pm index 13a00bf23..e76f875a9 100644 --- a/src/apps/microsoft/exchange/local/mode/outlookwebservices.pm +++ b/src/apps/microsoft/exchange/local/mode/outlookwebservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/owamailbox.pm b/src/apps/microsoft/exchange/local/mode/owamailbox.pm index 01c4afcd5..50057fd96 100644 --- a/src/apps/microsoft/exchange/local/mode/owamailbox.pm +++ b/src/apps/microsoft/exchange/local/mode/owamailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/queues.pm b/src/apps/microsoft/exchange/local/mode/queues.pm index 5e0c2a856..8f7ed6931 100644 --- a/src/apps/microsoft/exchange/local/mode/queues.pm +++ b/src/apps/microsoft/exchange/local/mode/queues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/replicationhealth.pm b/src/apps/microsoft/exchange/local/mode/replicationhealth.pm index 55487ff87..e2f52a1ee 100644 --- a/src/apps/microsoft/exchange/local/mode/replicationhealth.pm +++ b/src/apps/microsoft/exchange/local/mode/replicationhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/resources/types.pm b/src/apps/microsoft/exchange/local/mode/resources/types.pm index 0c5b4fc2e..aac0bdd7c 100644 --- a/src/apps/microsoft/exchange/local/mode/resources/types.pm +++ b/src/apps/microsoft/exchange/local/mode/resources/types.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/mode/services.pm b/src/apps/microsoft/exchange/local/mode/services.pm index a44b13340..882382600 100644 --- a/src/apps/microsoft/exchange/local/mode/services.pm +++ b/src/apps/microsoft/exchange/local/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/exchange/local/plugin.pm b/src/apps/microsoft/exchange/local/plugin.pm index c8bd0761d..3f8f1e2bc 100644 --- a/src/apps/microsoft/exchange/local/plugin.pm +++ b/src/apps/microsoft/exchange/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/listnodevms.pm b/src/apps/microsoft/hyperv/2012/local/mode/listnodevms.pm index 4cf6c262e..882450e94 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/listnodevms.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/listnodevms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/nodeintegrationservice.pm b/src/apps/microsoft/hyperv/2012/local/mode/nodeintegrationservice.pm index d83be0e2e..1061317e7 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/nodeintegrationservice.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/nodeintegrationservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/nodereplication.pm b/src/apps/microsoft/hyperv/2012/local/mode/nodereplication.pm index dcafa2173..c460f357c 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/nodereplication.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/nodereplication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/nodesnapshot.pm b/src/apps/microsoft/hyperv/2012/local/mode/nodesnapshot.pm index f3aa9ce6f..d61b44c80 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/nodesnapshot.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/nodesnapshot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/nodevmstatus.pm b/src/apps/microsoft/hyperv/2012/local/mode/nodevmstatus.pm index fd53b4ca2..b6b581d80 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/nodevmstatus.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/nodevmstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/resources/types.pm b/src/apps/microsoft/hyperv/2012/local/mode/resources/types.pm index 27ad174cb..69b31fdcb 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/resources/types.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/resources/types.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/scvmmdiscovery.pm b/src/apps/microsoft/hyperv/2012/local/mode/scvmmdiscovery.pm index ea11992fb..26b967b7d 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/scvmmdiscovery.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/scvmmdiscovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/scvmmintegrationservice.pm b/src/apps/microsoft/hyperv/2012/local/mode/scvmmintegrationservice.pm index d098a8357..f22d28bfb 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/scvmmintegrationservice.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/scvmmintegrationservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/scvmmsnapshot.pm b/src/apps/microsoft/hyperv/2012/local/mode/scvmmsnapshot.pm index f380d2b3c..83bb40cc5 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/scvmmsnapshot.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/scvmmsnapshot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/mode/scvmmvmstatus.pm b/src/apps/microsoft/hyperv/2012/local/mode/scvmmvmstatus.pm index 0f81857d4..e36ec1b85 100644 --- a/src/apps/microsoft/hyperv/2012/local/mode/scvmmvmstatus.pm +++ b/src/apps/microsoft/hyperv/2012/local/mode/scvmmvmstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/hyperv/2012/local/plugin.pm b/src/apps/microsoft/hyperv/2012/local/plugin.pm index 86a246032..c7535208e 100644 --- a/src/apps/microsoft/hyperv/2012/local/plugin.pm +++ b/src/apps/microsoft/hyperv/2012/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/local/mode/applicationpoolstate.pm b/src/apps/microsoft/iis/local/mode/applicationpoolstate.pm index 3fe2cb015..4c0287e2c 100644 --- a/src/apps/microsoft/iis/local/mode/applicationpoolstate.pm +++ b/src/apps/microsoft/iis/local/mode/applicationpoolstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/local/mode/listapplicationpools.pm b/src/apps/microsoft/iis/local/mode/listapplicationpools.pm index 68de22ea0..7ed25d2aa 100644 --- a/src/apps/microsoft/iis/local/mode/listapplicationpools.pm +++ b/src/apps/microsoft/iis/local/mode/listapplicationpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/local/mode/listsites.pm b/src/apps/microsoft/iis/local/mode/listsites.pm index 02f94aca7..3d0a54b88 100644 --- a/src/apps/microsoft/iis/local/mode/listsites.pm +++ b/src/apps/microsoft/iis/local/mode/listsites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/local/mode/webservicestatistics.pm b/src/apps/microsoft/iis/local/mode/webservicestatistics.pm index 78cf780bf..76197a2be 100644 --- a/src/apps/microsoft/iis/local/mode/webservicestatistics.pm +++ b/src/apps/microsoft/iis/local/mode/webservicestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/local/plugin.pm b/src/apps/microsoft/iis/local/plugin.pm index 920d53329..ea5217524 100644 --- a/src/apps/microsoft/iis/local/plugin.pm +++ b/src/apps/microsoft/iis/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/restapi/custom/api.pm b/src/apps/microsoft/iis/restapi/custom/api.pm index 404b77c4d..2b96a0d6d 100644 --- a/src/apps/microsoft/iis/restapi/custom/api.pm +++ b/src/apps/microsoft/iis/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/restapi/mode/applicationpools.pm b/src/apps/microsoft/iis/restapi/mode/applicationpools.pm index 1815240a2..494290f14 100644 --- a/src/apps/microsoft/iis/restapi/mode/applicationpools.pm +++ b/src/apps/microsoft/iis/restapi/mode/applicationpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/restapi/mode/listapplicationpools.pm b/src/apps/microsoft/iis/restapi/mode/listapplicationpools.pm index 7a701498f..a56a377a2 100644 --- a/src/apps/microsoft/iis/restapi/mode/listapplicationpools.pm +++ b/src/apps/microsoft/iis/restapi/mode/listapplicationpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/restapi/mode/listwebsites.pm b/src/apps/microsoft/iis/restapi/mode/listwebsites.pm index 41f43c3ee..efaa0df42 100644 --- a/src/apps/microsoft/iis/restapi/mode/listwebsites.pm +++ b/src/apps/microsoft/iis/restapi/mode/listwebsites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/restapi/mode/websites.pm b/src/apps/microsoft/iis/restapi/mode/websites.pm index 342fdc083..fd838f12d 100644 --- a/src/apps/microsoft/iis/restapi/mode/websites.pm +++ b/src/apps/microsoft/iis/restapi/mode/websites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/restapi/plugin.pm b/src/apps/microsoft/iis/restapi/plugin.pm index 22be8cf29..cab82564f 100644 --- a/src/apps/microsoft/iis/restapi/plugin.pm +++ b/src/apps/microsoft/iis/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/wsman/mode/applicationpools.pm b/src/apps/microsoft/iis/wsman/mode/applicationpools.pm index 0e10c6907..7ac939087 100644 --- a/src/apps/microsoft/iis/wsman/mode/applicationpools.pm +++ b/src/apps/microsoft/iis/wsman/mode/applicationpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/wsman/mode/listapplicationpools.pm b/src/apps/microsoft/iis/wsman/mode/listapplicationpools.pm index 2aefa13e2..e3307a731 100644 --- a/src/apps/microsoft/iis/wsman/mode/listapplicationpools.pm +++ b/src/apps/microsoft/iis/wsman/mode/listapplicationpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/iis/wsman/plugin.pm b/src/apps/microsoft/iis/wsman/plugin.pm index 9528a5b36..cb8172e4c 100644 --- a/src/apps/microsoft/iis/wsman/plugin.pm +++ b/src/apps/microsoft/iis/wsman/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/mode/listnodes.pm b/src/apps/microsoft/mscs/local/mode/listnodes.pm index 1f1201e13..17d41b4f0 100644 --- a/src/apps/microsoft/mscs/local/mode/listnodes.pm +++ b/src/apps/microsoft/mscs/local/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/mode/listresources.pm b/src/apps/microsoft/mscs/local/mode/listresources.pm index 03293449f..9fa8aea19 100644 --- a/src/apps/microsoft/mscs/local/mode/listresources.pm +++ b/src/apps/microsoft/mscs/local/mode/listresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/mode/networkstatus.pm b/src/apps/microsoft/mscs/local/mode/networkstatus.pm index cdb60e5d6..7c688d3ed 100644 --- a/src/apps/microsoft/mscs/local/mode/networkstatus.pm +++ b/src/apps/microsoft/mscs/local/mode/networkstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/mode/nodestatus.pm b/src/apps/microsoft/mscs/local/mode/nodestatus.pm index a413fd49c..59f03a551 100644 --- a/src/apps/microsoft/mscs/local/mode/nodestatus.pm +++ b/src/apps/microsoft/mscs/local/mode/nodestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/mode/resourcegroupstatus.pm b/src/apps/microsoft/mscs/local/mode/resourcegroupstatus.pm index 423e9d064..92a6eba44 100644 --- a/src/apps/microsoft/mscs/local/mode/resourcegroupstatus.pm +++ b/src/apps/microsoft/mscs/local/mode/resourcegroupstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/mode/resourcestatus.pm b/src/apps/microsoft/mscs/local/mode/resourcestatus.pm index 39e8a480a..536dde006 100644 --- a/src/apps/microsoft/mscs/local/mode/resourcestatus.pm +++ b/src/apps/microsoft/mscs/local/mode/resourcestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/mscs/local/plugin.pm b/src/apps/microsoft/mscs/local/plugin.pm index b5ad14da9..63a0d2837 100644 --- a/src/apps/microsoft/mscs/local/plugin.pm +++ b/src/apps/microsoft/mscs/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/sccm/local/mode/databasereplicationstatus.pm b/src/apps/microsoft/sccm/local/mode/databasereplicationstatus.pm index 52d5d4ba6..ac2cb5e1a 100644 --- a/src/apps/microsoft/sccm/local/mode/databasereplicationstatus.pm +++ b/src/apps/microsoft/sccm/local/mode/databasereplicationstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/sccm/local/mode/sitestatus.pm b/src/apps/microsoft/sccm/local/mode/sitestatus.pm index b6d80d756..fc9cfc45e 100644 --- a/src/apps/microsoft/sccm/local/mode/sitestatus.pm +++ b/src/apps/microsoft/sccm/local/mode/sitestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/sccm/local/plugin.pm b/src/apps/microsoft/sccm/local/plugin.pm index aa1b0c90e..a9cb48a9f 100644 --- a/src/apps/microsoft/sccm/local/plugin.pm +++ b/src/apps/microsoft/sccm/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/wsus/local/mode/computersstatus.pm b/src/apps/microsoft/wsus/local/mode/computersstatus.pm index 560323315..754efaeaf 100644 --- a/src/apps/microsoft/wsus/local/mode/computersstatus.pm +++ b/src/apps/microsoft/wsus/local/mode/computersstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/wsus/local/mode/serverstatistics.pm b/src/apps/microsoft/wsus/local/mode/serverstatistics.pm index 8c7b7542f..81b205151 100644 --- a/src/apps/microsoft/wsus/local/mode/serverstatistics.pm +++ b/src/apps/microsoft/wsus/local/mode/serverstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/wsus/local/mode/synchronisationstatus.pm b/src/apps/microsoft/wsus/local/mode/synchronisationstatus.pm index 5d24ba5e6..60f1010dc 100644 --- a/src/apps/microsoft/wsus/local/mode/synchronisationstatus.pm +++ b/src/apps/microsoft/wsus/local/mode/synchronisationstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/wsus/local/mode/updatesstatus.pm b/src/apps/microsoft/wsus/local/mode/updatesstatus.pm index bc1b570a9..7af63d0dd 100644 --- a/src/apps/microsoft/wsus/local/mode/updatesstatus.pm +++ b/src/apps/microsoft/wsus/local/mode/updatesstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/microsoft/wsus/local/plugin.pm b/src/apps/microsoft/wsus/local/plugin.pm index a0cd1e8a2..511923e11 100644 --- a/src/apps/microsoft/wsus/local/plugin.pm +++ b/src/apps/microsoft/wsus/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/alyvix/restapi/custom/api.pm b/src/apps/monitoring/alyvix/restapi/custom/api.pm index a8c561d49..9e15d033e 100644 --- a/src/apps/monitoring/alyvix/restapi/custom/api.pm +++ b/src/apps/monitoring/alyvix/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/alyvix/restapi/mode/listtestcases.pm b/src/apps/monitoring/alyvix/restapi/mode/listtestcases.pm index baac6367a..a5ceb872c 100644 --- a/src/apps/monitoring/alyvix/restapi/mode/listtestcases.pm +++ b/src/apps/monitoring/alyvix/restapi/mode/listtestcases.pm @@ -1,5 +1,5 @@ # -## Copyright 2023 Centreon (http://www.centreon.com/) +## Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/alyvix/restapi/mode/testcases.pm b/src/apps/monitoring/alyvix/restapi/mode/testcases.pm index af512ea3c..1fa209d45 100644 --- a/src/apps/monitoring/alyvix/restapi/mode/testcases.pm +++ b/src/apps/monitoring/alyvix/restapi/mode/testcases.pm @@ -1,5 +1,5 @@ # -## Copyright 2023 Centreon (http://www.centreon.com/) +## Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/alyvix/restapi/plugin.pm b/src/apps/monitoring/alyvix/restapi/plugin.pm index 29ba935c1..4f52a1964 100644 --- a/src/apps/monitoring/alyvix/restapi/plugin.pm +++ b/src/apps/monitoring/alyvix/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/dynatrace/restapi/custom/api.pm b/src/apps/monitoring/dynatrace/restapi/custom/api.pm index b59084d0c..744b3f4fc 100644 --- a/src/apps/monitoring/dynatrace/restapi/custom/api.pm +++ b/src/apps/monitoring/dynatrace/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/dynatrace/restapi/mode/apdex.pm b/src/apps/monitoring/dynatrace/restapi/mode/apdex.pm index 3e7192f64..120ce01ea 100644 --- a/src/apps/monitoring/dynatrace/restapi/mode/apdex.pm +++ b/src/apps/monitoring/dynatrace/restapi/mode/apdex.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/dynatrace/restapi/mode/availability.pm b/src/apps/monitoring/dynatrace/restapi/mode/availability.pm index 72ca87a4d..66e25024a 100644 --- a/src/apps/monitoring/dynatrace/restapi/mode/availability.pm +++ b/src/apps/monitoring/dynatrace/restapi/mode/availability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/dynatrace/restapi/mode/events.pm b/src/apps/monitoring/dynatrace/restapi/mode/events.pm index 5e100497c..edd2c0103 100644 --- a/src/apps/monitoring/dynatrace/restapi/mode/events.pm +++ b/src/apps/monitoring/dynatrace/restapi/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/dynatrace/restapi/mode/problems.pm b/src/apps/monitoring/dynatrace/restapi/mode/problems.pm index 9c1b594c4..8268f486a 100644 --- a/src/apps/monitoring/dynatrace/restapi/mode/problems.pm +++ b/src/apps/monitoring/dynatrace/restapi/mode/problems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/dynatrace/restapi/plugin.pm b/src/apps/monitoring/dynatrace/restapi/plugin.pm index d4ca82e78..a5a43c1d4 100644 --- a/src/apps/monitoring/dynatrace/restapi/plugin.pm +++ b/src/apps/monitoring/dynatrace/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/ekara/restapi/custom/api.pm b/src/apps/monitoring/iplabel/ekara/restapi/custom/api.pm index 32f91bbc0..2df88a48f 100644 --- a/src/apps/monitoring/iplabel/ekara/restapi/custom/api.pm +++ b/src/apps/monitoring/iplabel/ekara/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/ekara/restapi/mode/discovery.pm b/src/apps/monitoring/iplabel/ekara/restapi/mode/discovery.pm index 65bb886e3..723ce5594 100644 --- a/src/apps/monitoring/iplabel/ekara/restapi/mode/discovery.pm +++ b/src/apps/monitoring/iplabel/ekara/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/ekara/restapi/mode/incidents.pm b/src/apps/monitoring/iplabel/ekara/restapi/mode/incidents.pm index 08858bc8a..7953d98a8 100644 --- a/src/apps/monitoring/iplabel/ekara/restapi/mode/incidents.pm +++ b/src/apps/monitoring/iplabel/ekara/restapi/mode/incidents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm b/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm index 195978ca3..f92a754ec 100644 --- a/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm +++ b/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/ekara/restapi/plugin.pm b/src/apps/monitoring/iplabel/ekara/restapi/plugin.pm index 3239257de..3ebffc637 100644 --- a/src/apps/monitoring/iplabel/ekara/restapi/plugin.pm +++ b/src/apps/monitoring/iplabel/ekara/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/newtest/restapi/custom/api.pm b/src/apps/monitoring/iplabel/newtest/restapi/custom/api.pm index 5b4f456f2..04935d993 100644 --- a/src/apps/monitoring/iplabel/newtest/restapi/custom/api.pm +++ b/src/apps/monitoring/iplabel/newtest/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/newtest/restapi/mode/discovery.pm b/src/apps/monitoring/iplabel/newtest/restapi/mode/discovery.pm index 53df1f041..93dc11ff2 100644 --- a/src/apps/monitoring/iplabel/newtest/restapi/mode/discovery.pm +++ b/src/apps/monitoring/iplabel/newtest/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/newtest/restapi/mode/listinstances.pm b/src/apps/monitoring/iplabel/newtest/restapi/mode/listinstances.pm index 090d1f562..bc234e0bd 100644 --- a/src/apps/monitoring/iplabel/newtest/restapi/mode/listinstances.pm +++ b/src/apps/monitoring/iplabel/newtest/restapi/mode/listinstances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/newtest/restapi/mode/scenarios.pm b/src/apps/monitoring/iplabel/newtest/restapi/mode/scenarios.pm index 69acc8249..1610f0c87 100644 --- a/src/apps/monitoring/iplabel/newtest/restapi/mode/scenarios.pm +++ b/src/apps/monitoring/iplabel/newtest/restapi/mode/scenarios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/iplabel/newtest/restapi/plugin.pm b/src/apps/monitoring/iplabel/newtest/restapi/plugin.pm index c8453d59c..453866afc 100644 --- a/src/apps/monitoring/iplabel/newtest/restapi/plugin.pm +++ b/src/apps/monitoring/iplabel/newtest/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/custom/api.pm b/src/apps/monitoring/kadiska/custom/api.pm index 3c0db5bbe..29622b3d0 100644 --- a/src/apps/monitoring/kadiska/custom/api.pm +++ b/src/apps/monitoring/kadiska/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/alerts.pm b/src/apps/monitoring/kadiska/mode/alerts.pm index 47200050a..f22cae959 100644 --- a/src/apps/monitoring/kadiska/mode/alerts.pm +++ b/src/apps/monitoring/kadiska/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/listalertrules.pm b/src/apps/monitoring/kadiska/mode/listalertrules.pm index 1d398ac42..e1a5b2dd0 100644 --- a/src/apps/monitoring/kadiska/mode/listalertrules.pm +++ b/src/apps/monitoring/kadiska/mode/listalertrules.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/listrunners.pm b/src/apps/monitoring/kadiska/mode/listrunners.pm index a6838da51..eae897fba 100644 --- a/src/apps/monitoring/kadiska/mode/listrunners.pm +++ b/src/apps/monitoring/kadiska/mode/listrunners.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/listtargets.pm b/src/apps/monitoring/kadiska/mode/listtargets.pm index 5a2be8d51..d8f49ae47 100644 --- a/src/apps/monitoring/kadiska/mode/listtargets.pm +++ b/src/apps/monitoring/kadiska/mode/listtargets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/listwatchers.pm b/src/apps/monitoring/kadiska/mode/listwatchers.pm index 51433df0d..4ec227f70 100644 --- a/src/apps/monitoring/kadiska/mode/listwatchers.pm +++ b/src/apps/monitoring/kadiska/mode/listwatchers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/nettracerstatistics.pm b/src/apps/monitoring/kadiska/mode/nettracerstatistics.pm index bc71b7352..b03db167e 100644 --- a/src/apps/monitoring/kadiska/mode/nettracerstatistics.pm +++ b/src/apps/monitoring/kadiska/mode/nettracerstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/mode/watcherstatistics.pm b/src/apps/monitoring/kadiska/mode/watcherstatistics.pm index 99d5424f6..1636f2c6a 100644 --- a/src/apps/monitoring/kadiska/mode/watcherstatistics.pm +++ b/src/apps/monitoring/kadiska/mode/watcherstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged instry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/kadiska/plugin.pm b/src/apps/monitoring/kadiska/plugin.pm index 3eb31ac38..a4fbe8603 100644 --- a/src/apps/monitoring/kadiska/plugin.pm +++ b/src/apps/monitoring/kadiska/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/loggly/restapi/custom/api.pm b/src/apps/monitoring/loggly/restapi/custom/api.pm index 0dc217301..9cd2e704c 100644 --- a/src/apps/monitoring/loggly/restapi/custom/api.pm +++ b/src/apps/monitoring/loggly/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/loggly/restapi/mode/events.pm b/src/apps/monitoring/loggly/restapi/mode/events.pm index 28e309e05..c492a87f7 100644 --- a/src/apps/monitoring/loggly/restapi/mode/events.pm +++ b/src/apps/monitoring/loggly/restapi/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/loggly/restapi/mode/fields.pm b/src/apps/monitoring/loggly/restapi/mode/fields.pm index 302e9e4a8..5e32da01d 100644 --- a/src/apps/monitoring/loggly/restapi/mode/fields.pm +++ b/src/apps/monitoring/loggly/restapi/mode/fields.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/loggly/restapi/plugin.pm b/src/apps/monitoring/loggly/restapi/plugin.pm index baf5bd4d5..a09a8e48c 100644 --- a/src/apps/monitoring/loggly/restapi/plugin.pm +++ b/src/apps/monitoring/loggly/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/mip/restapi/custom/api.pm b/src/apps/monitoring/mip/restapi/custom/api.pm index 3d72c268f..1d962f47d 100644 --- a/src/apps/monitoring/mip/restapi/custom/api.pm +++ b/src/apps/monitoring/mip/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/mip/restapi/mode/listscenarios.pm b/src/apps/monitoring/mip/restapi/mode/listscenarios.pm index b562f9746..6f385c1ab 100644 --- a/src/apps/monitoring/mip/restapi/mode/listscenarios.pm +++ b/src/apps/monitoring/mip/restapi/mode/listscenarios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/mip/restapi/mode/scenarios.pm b/src/apps/monitoring/mip/restapi/mode/scenarios.pm index b112fa3e7..ffb16e6a2 100644 --- a/src/apps/monitoring/mip/restapi/mode/scenarios.pm +++ b/src/apps/monitoring/mip/restapi/mode/scenarios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/mip/restapi/plugin.pm b/src/apps/monitoring/mip/restapi/plugin.pm index 4e996f76a..392201166 100644 --- a/src/apps/monitoring/mip/restapi/plugin.pm +++ b/src/apps/monitoring/mip/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/custom/api.pm b/src/apps/monitoring/netdata/restapi/custom/api.pm index 7244ff0e6..98a8db476 100644 --- a/src/apps/monitoring/netdata/restapi/custom/api.pm +++ b/src/apps/monitoring/netdata/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/alarms.pm b/src/apps/monitoring/netdata/restapi/mode/alarms.pm index 9d17d7680..d694e57a1 100644 --- a/src/apps/monitoring/netdata/restapi/mode/alarms.pm +++ b/src/apps/monitoring/netdata/restapi/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/cpu.pm b/src/apps/monitoring/netdata/restapi/mode/cpu.pm index 71a8c0548..fa843d677 100644 --- a/src/apps/monitoring/netdata/restapi/mode/cpu.pm +++ b/src/apps/monitoring/netdata/restapi/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/disks.pm b/src/apps/monitoring/netdata/restapi/mode/disks.pm index 4cff7d896..b588cfac0 100644 --- a/src/apps/monitoring/netdata/restapi/mode/disks.pm +++ b/src/apps/monitoring/netdata/restapi/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/getchart.pm b/src/apps/monitoring/netdata/restapi/mode/getchart.pm index 058459673..b279a5174 100644 --- a/src/apps/monitoring/netdata/restapi/mode/getchart.pm +++ b/src/apps/monitoring/netdata/restapi/mode/getchart.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/inodes.pm b/src/apps/monitoring/netdata/restapi/mode/inodes.pm index 9c88c2210..66cdd340a 100644 --- a/src/apps/monitoring/netdata/restapi/mode/inodes.pm +++ b/src/apps/monitoring/netdata/restapi/mode/inodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/listcharts.pm b/src/apps/monitoring/netdata/restapi/mode/listcharts.pm index 795a325eb..caefa3e80 100644 --- a/src/apps/monitoring/netdata/restapi/mode/listcharts.pm +++ b/src/apps/monitoring/netdata/restapi/mode/listcharts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/listdisks.pm b/src/apps/monitoring/netdata/restapi/mode/listdisks.pm index 8f95b7040..3f2c43279 100644 --- a/src/apps/monitoring/netdata/restapi/mode/listdisks.pm +++ b/src/apps/monitoring/netdata/restapi/mode/listdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/listinterfaces.pm b/src/apps/monitoring/netdata/restapi/mode/listinterfaces.pm index be3004008..181d8214f 100644 --- a/src/apps/monitoring/netdata/restapi/mode/listinterfaces.pm +++ b/src/apps/monitoring/netdata/restapi/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/load.pm b/src/apps/monitoring/netdata/restapi/mode/load.pm index 214b4c439..352469546 100644 --- a/src/apps/monitoring/netdata/restapi/mode/load.pm +++ b/src/apps/monitoring/netdata/restapi/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/memory.pm b/src/apps/monitoring/netdata/restapi/mode/memory.pm index bf7ed3158..6e760287c 100644 --- a/src/apps/monitoring/netdata/restapi/mode/memory.pm +++ b/src/apps/monitoring/netdata/restapi/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/swap.pm b/src/apps/monitoring/netdata/restapi/mode/swap.pm index f18930e92..de808b17f 100644 --- a/src/apps/monitoring/netdata/restapi/mode/swap.pm +++ b/src/apps/monitoring/netdata/restapi/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/apps/monitoring/netdata/restapi/mode/traffic.pm b/src/apps/monitoring/netdata/restapi/mode/traffic.pm index ff6cf2450..0b4439f4f 100644 --- a/src/apps/monitoring/netdata/restapi/mode/traffic.pm +++ b/src/apps/monitoring/netdata/restapi/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/netdata/restapi/plugin.pm b/src/apps/monitoring/netdata/restapi/plugin.pm index 969b5fe48..6784e3655 100644 --- a/src/apps/monitoring/netdata/restapi/plugin.pm +++ b/src/apps/monitoring/netdata/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/cpu.pm b/src/apps/monitoring/nodeexporter/linux/mode/cpu.pm index 0ac6600f4..3ef0a6f51 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/cpu.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/listinterfaces.pm b/src/apps/monitoring/nodeexporter/linux/mode/listinterfaces.pm index a1a140aac..c3c144afa 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/listinterfaces.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/liststorages.pm b/src/apps/monitoring/nodeexporter/linux/mode/liststorages.pm index 1940467ac..0ccb116f7 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/liststorages.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/load.pm b/src/apps/monitoring/nodeexporter/linux/mode/load.pm index 2d3b32501..9b7f2b595 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/load.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/memory.pm b/src/apps/monitoring/nodeexporter/linux/mode/memory.pm index 6bbfcc370..8eaa40fe0 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/memory.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/storage.pm b/src/apps/monitoring/nodeexporter/linux/mode/storage.pm index f275468cf..2e956b809 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/storage.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/mode/traffic.pm b/src/apps/monitoring/nodeexporter/linux/mode/traffic.pm index 997d60b16..f67d64429 100644 --- a/src/apps/monitoring/nodeexporter/linux/mode/traffic.pm +++ b/src/apps/monitoring/nodeexporter/linux/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/linux/plugin.pm b/src/apps/monitoring/nodeexporter/linux/plugin.pm index 2bf2b5272..10209ad93 100644 --- a/src/apps/monitoring/nodeexporter/linux/plugin.pm +++ b/src/apps/monitoring/nodeexporter/linux/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/cpu.pm b/src/apps/monitoring/nodeexporter/windows/mode/cpu.pm index 5fda31b4f..3a52bb53a 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/cpu.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/listinterfaces.pm b/src/apps/monitoring/nodeexporter/windows/mode/listinterfaces.pm index bf1c892b6..e0dc14717 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/listinterfaces.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/listservices.pm b/src/apps/monitoring/nodeexporter/windows/mode/listservices.pm index 1be4c5f26..40c92b794 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/listservices.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/liststorages.pm b/src/apps/monitoring/nodeexporter/windows/mode/liststorages.pm index 896878ae5..8a279a053 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/liststorages.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/memory.pm b/src/apps/monitoring/nodeexporter/windows/mode/memory.pm index e3f13e66c..9ac746ff8 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/memory.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/services.pm b/src/apps/monitoring/nodeexporter/windows/mode/services.pm index f51aded51..0f91220fc 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/services.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/storage.pm b/src/apps/monitoring/nodeexporter/windows/mode/storage.pm index 0aa1dc27e..48c583e0d 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/storage.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/mode/traffic.pm b/src/apps/monitoring/nodeexporter/windows/mode/traffic.pm index e4a891399..954c53dc7 100644 --- a/src/apps/monitoring/nodeexporter/windows/mode/traffic.pm +++ b/src/apps/monitoring/nodeexporter/windows/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/nodeexporter/windows/plugin.pm b/src/apps/monitoring/nodeexporter/windows/plugin.pm index fb070ba78..602cce0c7 100644 --- a/src/apps/monitoring/nodeexporter/windows/plugin.pm +++ b/src/apps/monitoring/nodeexporter/windows/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/ntopng/restapi/custom/api.pm b/src/apps/monitoring/ntopng/restapi/custom/api.pm index 17023b8d3..c1ef8e5da 100644 --- a/src/apps/monitoring/ntopng/restapi/custom/api.pm +++ b/src/apps/monitoring/ntopng/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/ntopng/restapi/plugin.pm b/src/apps/monitoring/ntopng/restapi/plugin.pm index c28a4459b..e07bd7a18 100644 --- a/src/apps/monitoring/ntopng/restapi/plugin.pm +++ b/src/apps/monitoring/ntopng/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/openmetrics/mode/scrapemetrics.pm b/src/apps/monitoring/openmetrics/mode/scrapemetrics.pm index bf63d9e02..ef476d979 100644 --- a/src/apps/monitoring/openmetrics/mode/scrapemetrics.pm +++ b/src/apps/monitoring/openmetrics/mode/scrapemetrics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/openmetrics/plugin.pm b/src/apps/monitoring/openmetrics/plugin.pm index 82e5d5deb..ec06b7ae2 100644 --- a/src/apps/monitoring/openmetrics/plugin.pm +++ b/src/apps/monitoring/openmetrics/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/quanta/restapi/custom/api.pm b/src/apps/monitoring/quanta/restapi/custom/api.pm index 3b4ac4f50..7ce23bafc 100644 --- a/src/apps/monitoring/quanta/restapi/custom/api.pm +++ b/src/apps/monitoring/quanta/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm b/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm index 1f9ae66db..f94932bcd 100644 --- a/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm +++ b/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/quanta/restapi/plugin.pm b/src/apps/monitoring/quanta/restapi/plugin.pm index 8c2fb4782..d47636c78 100644 --- a/src/apps/monitoring/quanta/restapi/plugin.pm +++ b/src/apps/monitoring/quanta/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/scom/restapi/custom/api.pm b/src/apps/monitoring/scom/restapi/custom/api.pm index 703d133f0..7ea238db7 100644 --- a/src/apps/monitoring/scom/restapi/custom/api.pm +++ b/src/apps/monitoring/scom/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/scom/restapi/plugin.pm b/src/apps/monitoring/scom/restapi/plugin.pm index 5cb102201..d3209e935 100644 --- a/src/apps/monitoring/scom/restapi/plugin.pm +++ b/src/apps/monitoring/scom/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/speedtest/mode/internetbandwidth.pm b/src/apps/monitoring/speedtest/mode/internetbandwidth.pm index bfda5355c..6462cad9a 100644 --- a/src/apps/monitoring/speedtest/mode/internetbandwidth.pm +++ b/src/apps/monitoring/speedtest/mode/internetbandwidth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/speedtest/plugin.pm b/src/apps/monitoring/speedtest/plugin.pm index 216e74d2e..ba59a8886 100644 --- a/src/apps/monitoring/speedtest/plugin.pm +++ b/src/apps/monitoring/speedtest/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/splunk/custom/api.pm b/src/apps/monitoring/splunk/custom/api.pm index ea9089c82..689254a5c 100644 --- a/src/apps/monitoring/splunk/custom/api.pm +++ b/src/apps/monitoring/splunk/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/splunk/mode/indexupdate.pm b/src/apps/monitoring/splunk/mode/indexupdate.pm index 87c90e149..e65a792ed 100644 --- a/src/apps/monitoring/splunk/mode/indexupdate.pm +++ b/src/apps/monitoring/splunk/mode/indexupdate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/splunk/mode/query.pm b/src/apps/monitoring/splunk/mode/query.pm index 4da5752f5..00dbe25ac 100644 --- a/src/apps/monitoring/splunk/mode/query.pm +++ b/src/apps/monitoring/splunk/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/splunk/mode/splunkdhealth.pm b/src/apps/monitoring/splunk/mode/splunkdhealth.pm index 2aa17425e..7c938dd67 100644 --- a/src/apps/monitoring/splunk/mode/splunkdhealth.pm +++ b/src/apps/monitoring/splunk/mode/splunkdhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/monitoring/splunk/plugin.pm b/src/apps/monitoring/splunk/plugin.pm index 13a932334..258d61462 100644 --- a/src/apps/monitoring/splunk/plugin.pm +++ b/src/apps/monitoring/splunk/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/activemq/jmx/mode/brokers.pm b/src/apps/mq/activemq/jmx/mode/brokers.pm index 430d14a99..c79b790b5 100644 --- a/src/apps/mq/activemq/jmx/mode/brokers.pm +++ b/src/apps/mq/activemq/jmx/mode/brokers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/activemq/jmx/mode/listbrokers.pm b/src/apps/mq/activemq/jmx/mode/listbrokers.pm index b12a0a079..7a6013400 100644 --- a/src/apps/mq/activemq/jmx/mode/listbrokers.pm +++ b/src/apps/mq/activemq/jmx/mode/listbrokers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/activemq/jmx/plugin.pm b/src/apps/mq/activemq/jmx/plugin.pm index 59c3cea1c..2762d995b 100644 --- a/src/apps/mq/activemq/jmx/plugin.pm +++ b/src/apps/mq/activemq/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/custom/api.pm b/src/apps/mq/ibmmq/mqi/custom/api.pm index 5b2605958..8bf791313 100644 --- a/src/apps/mq/ibmmq/mqi/custom/api.pm +++ b/src/apps/mq/ibmmq/mqi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/mode/channels.pm b/src/apps/mq/ibmmq/mqi/mode/channels.pm index e6d4c4df6..e7c59cc8b 100644 --- a/src/apps/mq/ibmmq/mqi/mode/channels.pm +++ b/src/apps/mq/ibmmq/mqi/mode/channels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/mode/listchannels.pm b/src/apps/mq/ibmmq/mqi/mode/listchannels.pm index 0adbfffef..ba512ca4c 100644 --- a/src/apps/mq/ibmmq/mqi/mode/listchannels.pm +++ b/src/apps/mq/ibmmq/mqi/mode/listchannels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/mode/listqueues.pm b/src/apps/mq/ibmmq/mqi/mode/listqueues.pm index c3225bfa1..7f90491cc 100644 --- a/src/apps/mq/ibmmq/mqi/mode/listqueues.pm +++ b/src/apps/mq/ibmmq/mqi/mode/listqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/mode/queuemanager.pm b/src/apps/mq/ibmmq/mqi/mode/queuemanager.pm index f89d73c98..e925736fc 100644 --- a/src/apps/mq/ibmmq/mqi/mode/queuemanager.pm +++ b/src/apps/mq/ibmmq/mqi/mode/queuemanager.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/mode/queues.pm b/src/apps/mq/ibmmq/mqi/mode/queues.pm index acc644a1a..0d1f34abe 100644 --- a/src/apps/mq/ibmmq/mqi/mode/queues.pm +++ b/src/apps/mq/ibmmq/mqi/mode/queues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/mqi/plugin.pm b/src/apps/mq/ibmmq/mqi/plugin.pm index c3e70f291..9eaca6108 100644 --- a/src/apps/mq/ibmmq/mqi/plugin.pm +++ b/src/apps/mq/ibmmq/mqi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/restapi/custom/api.pm b/src/apps/mq/ibmmq/restapi/custom/api.pm index 990968ca5..cad4b558f 100644 --- a/src/apps/mq/ibmmq/restapi/custom/api.pm +++ b/src/apps/mq/ibmmq/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/restapi/mode/listqueuemanagers.pm b/src/apps/mq/ibmmq/restapi/mode/listqueuemanagers.pm index 41538259d..52817339c 100644 --- a/src/apps/mq/ibmmq/restapi/mode/listqueuemanagers.pm +++ b/src/apps/mq/ibmmq/restapi/mode/listqueuemanagers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/restapi/mode/listqueues.pm b/src/apps/mq/ibmmq/restapi/mode/listqueues.pm index 62890bdba..8354333cb 100644 --- a/src/apps/mq/ibmmq/restapi/mode/listqueues.pm +++ b/src/apps/mq/ibmmq/restapi/mode/listqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/restapi/mode/queuemanagers.pm b/src/apps/mq/ibmmq/restapi/mode/queuemanagers.pm index 82dfaaecc..90c57f16c 100644 --- a/src/apps/mq/ibmmq/restapi/mode/queuemanagers.pm +++ b/src/apps/mq/ibmmq/restapi/mode/queuemanagers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/restapi/mode/queues.pm b/src/apps/mq/ibmmq/restapi/mode/queues.pm index 33e503fbe..68c8e3df3 100644 --- a/src/apps/mq/ibmmq/restapi/mode/queues.pm +++ b/src/apps/mq/ibmmq/restapi/mode/queues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/ibmmq/restapi/plugin.pm b/src/apps/mq/ibmmq/restapi/plugin.pm index 4912a088b..948834666 100644 --- a/src/apps/mq/ibmmq/restapi/plugin.pm +++ b/src/apps/mq/ibmmq/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/custom/api.pm b/src/apps/mq/rabbitmq/restapi/custom/api.pm index ce5089230..9ed2f7979 100644 --- a/src/apps/mq/rabbitmq/restapi/custom/api.pm +++ b/src/apps/mq/rabbitmq/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/listnodes.pm b/src/apps/mq/rabbitmq/restapi/mode/listnodes.pm index 8b0709fe2..4eb3a39b6 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/listnodes.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/listqueues.pm b/src/apps/mq/rabbitmq/restapi/mode/listqueues.pm index e1e08fec8..dc1e21937 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/listqueues.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/listqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/listvhosts.pm b/src/apps/mq/rabbitmq/restapi/mode/listvhosts.pm index 910f94caf..64f568cf5 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/listvhosts.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/listvhosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/nodeusage.pm b/src/apps/mq/rabbitmq/restapi/mode/nodeusage.pm index 7c7dffa95..3ea5df2e3 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/nodeusage.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/nodeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/queueusage.pm b/src/apps/mq/rabbitmq/restapi/mode/queueusage.pm index 685c2132f..147cacf40 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/queueusage.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/queueusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/systemusage.pm b/src/apps/mq/rabbitmq/restapi/mode/systemusage.pm index 0ba47caaf..a73a6b96c 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/systemusage.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/systemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/mode/vhostusage.pm b/src/apps/mq/rabbitmq/restapi/mode/vhostusage.pm index 15ecd62b0..5b4966ca4 100644 --- a/src/apps/mq/rabbitmq/restapi/mode/vhostusage.pm +++ b/src/apps/mq/rabbitmq/restapi/mode/vhostusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/rabbitmq/restapi/plugin.pm b/src/apps/mq/rabbitmq/restapi/plugin.pm index 40e08372e..f24ae7861 100644 --- a/src/apps/mq/rabbitmq/restapi/plugin.pm +++ b/src/apps/mq/rabbitmq/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/vernemq/restapi/custom/api.pm b/src/apps/mq/vernemq/restapi/custom/api.pm index 2ef47b986..a8b8a2e0e 100644 --- a/src/apps/mq/vernemq/restapi/custom/api.pm +++ b/src/apps/mq/vernemq/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/vernemq/restapi/mode/clusters.pm b/src/apps/mq/vernemq/restapi/mode/clusters.pm index 923a97be2..92de4ce3e 100644 --- a/src/apps/mq/vernemq/restapi/mode/clusters.pm +++ b/src/apps/mq/vernemq/restapi/mode/clusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/vernemq/restapi/mode/listeners.pm b/src/apps/mq/vernemq/restapi/mode/listeners.pm index 574b516a3..377b8058b 100644 --- a/src/apps/mq/vernemq/restapi/mode/listeners.pm +++ b/src/apps/mq/vernemq/restapi/mode/listeners.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/vernemq/restapi/mode/plugins.pm b/src/apps/mq/vernemq/restapi/mode/plugins.pm index 706e424dc..c1e229dbf 100644 --- a/src/apps/mq/vernemq/restapi/mode/plugins.pm +++ b/src/apps/mq/vernemq/restapi/mode/plugins.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/vernemq/restapi/mode/sessions.pm b/src/apps/mq/vernemq/restapi/mode/sessions.pm index 65597e9e9..4863c2f9c 100644 --- a/src/apps/mq/vernemq/restapi/mode/sessions.pm +++ b/src/apps/mq/vernemq/restapi/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mq/vernemq/restapi/plugin.pm b/src/apps/mq/vernemq/restapi/plugin.pm index b377aa814..ff6d7aa0f 100644 --- a/src/apps/mq/vernemq/restapi/plugin.pm +++ b/src/apps/mq/vernemq/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mulesoft/restapi/custom/api.pm b/src/apps/mulesoft/restapi/custom/api.pm index d1f407328..00290e845 100644 --- a/src/apps/mulesoft/restapi/custom/api.pm +++ b/src/apps/mulesoft/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mulesoft/restapi/mode/applications.pm b/src/apps/mulesoft/restapi/mode/applications.pm index dc725d65f..f226540d4 100644 --- a/src/apps/mulesoft/restapi/mode/applications.pm +++ b/src/apps/mulesoft/restapi/mode/applications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mulesoft/restapi/mode/clusters.pm b/src/apps/mulesoft/restapi/mode/clusters.pm index 344da6fe6..b8d95c7f7 100644 --- a/src/apps/mulesoft/restapi/mode/clusters.pm +++ b/src/apps/mulesoft/restapi/mode/clusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and cluster monitoring for diff --git a/src/apps/mulesoft/restapi/mode/listapplications.pm b/src/apps/mulesoft/restapi/mode/listapplications.pm index ec780c89e..3123ea780 100644 --- a/src/apps/mulesoft/restapi/mode/listapplications.pm +++ b/src/apps/mulesoft/restapi/mode/listapplications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mulesoft/restapi/mode/listqueues.pm b/src/apps/mulesoft/restapi/mode/listqueues.pm index ca697e86f..177956d2c 100644 --- a/src/apps/mulesoft/restapi/mode/listqueues.pm +++ b/src/apps/mulesoft/restapi/mode/listqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mulesoft/restapi/mode/listservers.pm b/src/apps/mulesoft/restapi/mode/listservers.pm index ea126d70f..078f24b78 100644 --- a/src/apps/mulesoft/restapi/mode/listservers.pm +++ b/src/apps/mulesoft/restapi/mode/listservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and server monitoring for diff --git a/src/apps/mulesoft/restapi/mode/messages.pm b/src/apps/mulesoft/restapi/mode/messages.pm index 6df1ad3b6..215259f00 100644 --- a/src/apps/mulesoft/restapi/mode/messages.pm +++ b/src/apps/mulesoft/restapi/mode/messages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/mulesoft/restapi/mode/servers.pm b/src/apps/mulesoft/restapi/mode/servers.pm index a41ced647..c12066446 100644 --- a/src/apps/mulesoft/restapi/mode/servers.pm +++ b/src/apps/mulesoft/restapi/mode/servers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and server monitoring for diff --git a/src/apps/mulesoft/restapi/plugin.pm b/src/apps/mulesoft/restapi/plugin.pm index a364d93d2..9521ab52a 100644 --- a/src/apps/mulesoft/restapi/plugin.pm +++ b/src/apps/mulesoft/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/nginxplus/restapi/custom/api.pm b/src/apps/nginx/nginxplus/restapi/custom/api.pm index fc044d7d4..fc2cdab61 100644 --- a/src/apps/nginx/nginxplus/restapi/custom/api.pm +++ b/src/apps/nginx/nginxplus/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/nginxplus/restapi/mode/connections.pm b/src/apps/nginx/nginxplus/restapi/mode/connections.pm index c3a8afb7e..29b5ef3d1 100644 --- a/src/apps/nginx/nginxplus/restapi/mode/connections.pm +++ b/src/apps/nginx/nginxplus/restapi/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/nginxplus/restapi/mode/httpzones.pm b/src/apps/nginx/nginxplus/restapi/mode/httpzones.pm index a7a16ca78..e62dfdd81 100644 --- a/src/apps/nginx/nginxplus/restapi/mode/httpzones.pm +++ b/src/apps/nginx/nginxplus/restapi/mode/httpzones.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/nginxplus/restapi/mode/ssl.pm b/src/apps/nginx/nginxplus/restapi/mode/ssl.pm index 3e87d1fad..68f80c31c 100644 --- a/src/apps/nginx/nginxplus/restapi/mode/ssl.pm +++ b/src/apps/nginx/nginxplus/restapi/mode/ssl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/nginxplus/restapi/plugin.pm b/src/apps/nginx/nginxplus/restapi/plugin.pm index d1b1cb68f..0e4fa0a1f 100644 --- a/src/apps/nginx/nginxplus/restapi/plugin.pm +++ b/src/apps/nginx/nginxplus/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/serverstatus/custom/api.pm b/src/apps/nginx/serverstatus/custom/api.pm index c99ac37ab..99fc3452a 100644 --- a/src/apps/nginx/serverstatus/custom/api.pm +++ b/src/apps/nginx/serverstatus/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/serverstatus/mode/connections.pm b/src/apps/nginx/serverstatus/mode/connections.pm index 5a25ea7fb..281d2c03a 100644 --- a/src/apps/nginx/serverstatus/mode/connections.pm +++ b/src/apps/nginx/serverstatus/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/serverstatus/mode/requests.pm b/src/apps/nginx/serverstatus/mode/requests.pm index bcb0db193..c0b3549cc 100644 --- a/src/apps/nginx/serverstatus/mode/requests.pm +++ b/src/apps/nginx/serverstatus/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nginx/serverstatus/plugin.pm b/src/apps/nginx/serverstatus/plugin.pm index 8af99160d..58c1a263a 100644 --- a/src/apps/nginx/serverstatus/plugin.pm +++ b/src/apps/nginx/serverstatus/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nmap/cli/mode/discovery.pm b/src/apps/nmap/cli/mode/discovery.pm index 54f4e69b4..c2383ad38 100644 --- a/src/apps/nmap/cli/mode/discovery.pm +++ b/src/apps/nmap/cli/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nmap/cli/plugin.pm b/src/apps/nmap/cli/plugin.pm index 1c8321e9b..f3befba93 100644 --- a/src/apps/nmap/cli/plugin.pm +++ b/src/apps/nmap/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nsclient/restapi/mode/query.pm b/src/apps/nsclient/restapi/mode/query.pm index af3688a46..7ab9ad95f 100644 --- a/src/apps/nsclient/restapi/mode/query.pm +++ b/src/apps/nsclient/restapi/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/nsclient/restapi/plugin.pm b/src/apps/nsclient/restapi/plugin.pm index 257443ca0..682720c21 100644 --- a/src/apps/nsclient/restapi/plugin.pm +++ b/src/apps/nsclient/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openldap/ldap/mode/systemusage.pm b/src/apps/openldap/ldap/mode/systemusage.pm index 236147432..67937f243 100644 --- a/src/apps/openldap/ldap/mode/systemusage.pm +++ b/src/apps/openldap/ldap/mode/systemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openldap/ldap/plugin.pm b/src/apps/openldap/ldap/plugin.pm index 54d7cd8d7..34ba3982b 100644 --- a/src/apps/openldap/ldap/plugin.pm +++ b/src/apps/openldap/ldap/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openvpn/omi/custom/api.pm b/src/apps/openvpn/omi/custom/api.pm index 4bdbd1249..fb7828852 100644 --- a/src/apps/openvpn/omi/custom/api.pm +++ b/src/apps/openvpn/omi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openvpn/omi/mode/serverusage.pm b/src/apps/openvpn/omi/mode/serverusage.pm index 3ce9235f7..8968ad020 100644 --- a/src/apps/openvpn/omi/mode/serverusage.pm +++ b/src/apps/openvpn/omi/mode/serverusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openvpn/omi/plugin.pm b/src/apps/openvpn/omi/plugin.pm index 231fbfeac..b6bc3be82 100644 --- a/src/apps/openvpn/omi/plugin.pm +++ b/src/apps/openvpn/omi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openweathermap/restapi/custom/api.pm b/src/apps/openweathermap/restapi/custom/api.pm index c256b9f13..289dc33b8 100644 --- a/src/apps/openweathermap/restapi/custom/api.pm +++ b/src/apps/openweathermap/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openweathermap/restapi/mode/cityweather.pm b/src/apps/openweathermap/restapi/mode/cityweather.pm index a48e09b9b..d3dd3bd21 100644 --- a/src/apps/openweathermap/restapi/mode/cityweather.pm +++ b/src/apps/openweathermap/restapi/mode/cityweather.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/openweathermap/restapi/plugin.pm b/src/apps/openweathermap/restapi/plugin.pm index a7b5b460e..a29651f34 100644 --- a/src/apps/openweathermap/restapi/plugin.pm +++ b/src/apps/openweathermap/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/gg/local/custom/cli.pm b/src/apps/oracle/gg/local/custom/cli.pm index 217dc185a..08fd8e992 100644 --- a/src/apps/oracle/gg/local/custom/cli.pm +++ b/src/apps/oracle/gg/local/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/gg/local/mode/processes.pm b/src/apps/oracle/gg/local/mode/processes.pm index a270f6640..fa16d037a 100644 --- a/src/apps/oracle/gg/local/mode/processes.pm +++ b/src/apps/oracle/gg/local/mode/processes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/gg/local/plugin.pm b/src/apps/oracle/gg/local/plugin.pm index ab9759c19..e5e667ae5 100644 --- a/src/apps/oracle/gg/local/plugin.pm +++ b/src/apps/oracle/gg/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/custom/rest.pm b/src/apps/oracle/ovm/api/custom/rest.pm index 497351f23..21a429390 100644 --- a/src/apps/oracle/ovm/api/custom/rest.pm +++ b/src/apps/oracle/ovm/api/custom/rest.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/mode/discovery.pm b/src/apps/oracle/ovm/api/mode/discovery.pm index 0b43deb4d..bf28874e3 100644 --- a/src/apps/oracle/ovm/api/mode/discovery.pm +++ b/src/apps/oracle/ovm/api/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/mode/fileservers.pm b/src/apps/oracle/ovm/api/mode/fileservers.pm index 51ee042d3..de9820bdc 100644 --- a/src/apps/oracle/ovm/api/mode/fileservers.pm +++ b/src/apps/oracle/ovm/api/mode/fileservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/mode/manager.pm b/src/apps/oracle/ovm/api/mode/manager.pm index 46b76697e..3deabfe4f 100644 --- a/src/apps/oracle/ovm/api/mode/manager.pm +++ b/src/apps/oracle/ovm/api/mode/manager.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/mode/serverpools.pm b/src/apps/oracle/ovm/api/mode/serverpools.pm index 9ac1b5428..eb230d2c7 100644 --- a/src/apps/oracle/ovm/api/mode/serverpools.pm +++ b/src/apps/oracle/ovm/api/mode/serverpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/mode/servers.pm b/src/apps/oracle/ovm/api/mode/servers.pm index ee6219637..82e8b05fa 100644 --- a/src/apps/oracle/ovm/api/mode/servers.pm +++ b/src/apps/oracle/ovm/api/mode/servers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/mode/vm.pm b/src/apps/oracle/ovm/api/mode/vm.pm index 4441215bb..64b87db99 100644 --- a/src/apps/oracle/ovm/api/mode/vm.pm +++ b/src/apps/oracle/ovm/api/mode/vm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ovm/api/plugin.pm b/src/apps/oracle/ovm/api/plugin.pm index 297b3cd5d..c9f2dce77 100644 --- a/src/apps/oracle/ovm/api/plugin.pm +++ b/src/apps/oracle/ovm/api/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ucp/jmx/mode/connectionpools.pm b/src/apps/oracle/ucp/jmx/mode/connectionpools.pm index 83b82b5a8..2cee3d0da 100644 --- a/src/apps/oracle/ucp/jmx/mode/connectionpools.pm +++ b/src/apps/oracle/ucp/jmx/mode/connectionpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ucp/jmx/mode/listconnectionpools.pm b/src/apps/oracle/ucp/jmx/mode/listconnectionpools.pm index 0f68a81d8..c0aaf35bf 100644 --- a/src/apps/oracle/ucp/jmx/mode/listconnectionpools.pm +++ b/src/apps/oracle/ucp/jmx/mode/listconnectionpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/oracle/ucp/jmx/plugin.pm b/src/apps/oracle/ucp/jmx/plugin.pm index 8d504671b..a6dc391c1 100644 --- a/src/apps/oracle/ucp/jmx/plugin.pm +++ b/src/apps/oracle/ucp/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pacemaker/local/mode/clustat.pm b/src/apps/pacemaker/local/mode/clustat.pm index 0fd660748..23bae010d 100644 --- a/src/apps/pacemaker/local/mode/clustat.pm +++ b/src/apps/pacemaker/local/mode/clustat.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pacemaker/local/mode/constraints.pm b/src/apps/pacemaker/local/mode/constraints.pm index 5f39fea72..fc9efbdc9 100644 --- a/src/apps/pacemaker/local/mode/constraints.pm +++ b/src/apps/pacemaker/local/mode/constraints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pacemaker/local/mode/crm.pm b/src/apps/pacemaker/local/mode/crm.pm index 19053e235..884a274ce 100644 --- a/src/apps/pacemaker/local/mode/crm.pm +++ b/src/apps/pacemaker/local/mode/crm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pacemaker/local/plugin.pm b/src/apps/pacemaker/local/plugin.pm index e0376b197..750686de4 100644 --- a/src/apps/pacemaker/local/plugin.pm +++ b/src/apps/pacemaker/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/fauxapi/custom/api.pm b/src/apps/pfsense/fauxapi/custom/api.pm index 070dd7738..1affc8abd 100644 --- a/src/apps/pfsense/fauxapi/custom/api.pm +++ b/src/apps/pfsense/fauxapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/fauxapi/mode/backupfiles.pm b/src/apps/pfsense/fauxapi/mode/backupfiles.pm index b7bd8e476..058ac2923 100644 --- a/src/apps/pfsense/fauxapi/mode/backupfiles.pm +++ b/src/apps/pfsense/fauxapi/mode/backupfiles.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/fauxapi/mode/gateways.pm b/src/apps/pfsense/fauxapi/mode/gateways.pm index c92983a60..4e7b2728c 100644 --- a/src/apps/pfsense/fauxapi/mode/gateways.pm +++ b/src/apps/pfsense/fauxapi/mode/gateways.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/fauxapi/mode/rules.pm b/src/apps/pfsense/fauxapi/mode/rules.pm index a1e301501..3085c0a3f 100644 --- a/src/apps/pfsense/fauxapi/mode/rules.pm +++ b/src/apps/pfsense/fauxapi/mode/rules.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/fauxapi/mode/system.pm b/src/apps/pfsense/fauxapi/mode/system.pm index c9c363e81..e16089ee5 100644 --- a/src/apps/pfsense/fauxapi/mode/system.pm +++ b/src/apps/pfsense/fauxapi/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/fauxapi/plugin.pm b/src/apps/pfsense/fauxapi/plugin.pm index b703eb0eb..8c7c67cf1 100644 --- a/src/apps/pfsense/fauxapi/plugin.pm +++ b/src/apps/pfsense/fauxapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/snmp/mode/listpfinterfaces.pm b/src/apps/pfsense/snmp/mode/listpfinterfaces.pm index 0a93e35a4..6bca92d99 100644 --- a/src/apps/pfsense/snmp/mode/listpfinterfaces.pm +++ b/src/apps/pfsense/snmp/mode/listpfinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/snmp/mode/packetstats.pm b/src/apps/pfsense/snmp/mode/packetstats.pm index a697f9c00..670584984 100644 --- a/src/apps/pfsense/snmp/mode/packetstats.pm +++ b/src/apps/pfsense/snmp/mode/packetstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/snmp/mode/pfinterfaces.pm b/src/apps/pfsense/snmp/mode/pfinterfaces.pm index dcd932486..7408a7b46 100644 --- a/src/apps/pfsense/snmp/mode/pfinterfaces.pm +++ b/src/apps/pfsense/snmp/mode/pfinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/snmp/mode/runtime.pm b/src/apps/pfsense/snmp/mode/runtime.pm index fdf287e97..0f792e646 100644 --- a/src/apps/pfsense/snmp/mode/runtime.pm +++ b/src/apps/pfsense/snmp/mode/runtime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/snmp/mode/statetable.pm b/src/apps/pfsense/snmp/mode/statetable.pm index 1c4dd4c8d..79bd2079b 100644 --- a/src/apps/pfsense/snmp/mode/statetable.pm +++ b/src/apps/pfsense/snmp/mode/statetable.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pfsense/snmp/plugin.pm b/src/apps/pfsense/snmp/plugin.pm index dea92d0eb..ca7b208a3 100644 --- a/src/apps/pfsense/snmp/plugin.pm +++ b/src/apps/pfsense/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/php/apc/web/mode/filecache.pm b/src/apps/php/apc/web/mode/filecache.pm index c4d491cf9..cd7ec3521 100644 --- a/src/apps/php/apc/web/mode/filecache.pm +++ b/src/apps/php/apc/web/mode/filecache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/php/apc/web/mode/memory.pm b/src/apps/php/apc/web/mode/memory.pm index ed8920021..0d6301f12 100644 --- a/src/apps/php/apc/web/mode/memory.pm +++ b/src/apps/php/apc/web/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/php/apc/web/plugin.pm b/src/apps/php/apc/web/plugin.pm index 8474f3f2f..a608c59e8 100644 --- a/src/apps/php/apc/web/plugin.pm +++ b/src/apps/php/apc/web/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/php/fpm/web/mode/usage.pm b/src/apps/php/fpm/web/mode/usage.pm index 6698ac07f..83d95812b 100644 --- a/src/apps/php/fpm/web/mode/usage.pm +++ b/src/apps/php/fpm/web/mode/usage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/php/fpm/web/plugin.pm b/src/apps/php/fpm/web/plugin.pm index 00cda45c6..0df15d81c 100644 --- a/src/apps/php/fpm/web/plugin.pm +++ b/src/apps/php/fpm/web/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pineapp/securemail/snmp/mode/system.pm b/src/apps/pineapp/securemail/snmp/mode/system.pm index 0cdd0bf84..222884091 100644 --- a/src/apps/pineapp/securemail/snmp/mode/system.pm +++ b/src/apps/pineapp/securemail/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pineapp/securemail/snmp/plugin.pm b/src/apps/pineapp/securemail/snmp/plugin.pm index 5c1ebea82..2a3feadab 100644 --- a/src/apps/pineapp/securemail/snmp/plugin.pm +++ b/src/apps/pineapp/securemail/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/bgp/4/mode/bgppeerstate.pm b/src/apps/protocols/bgp/4/mode/bgppeerstate.pm index 737cc13fe..4e54ab45e 100644 --- a/src/apps/protocols/bgp/4/mode/bgppeerstate.pm +++ b/src/apps/protocols/bgp/4/mode/bgppeerstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/bgp/4/plugin.pm b/src/apps/protocols/bgp/4/plugin.pm index affbfa8ba..6f08472d2 100644 --- a/src/apps/protocols/bgp/4/plugin.pm +++ b/src/apps/protocols/bgp/4/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/custom/libcifs.pm b/src/apps/protocols/cifs/custom/libcifs.pm index 87ec3239d..9c14393de 100644 --- a/src/apps/protocols/cifs/custom/libcifs.pm +++ b/src/apps/protocols/cifs/custom/libcifs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/mode/connection.pm b/src/apps/protocols/cifs/mode/connection.pm index 166f3eb87..0fa4b67ff 100644 --- a/src/apps/protocols/cifs/mode/connection.pm +++ b/src/apps/protocols/cifs/mode/connection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/mode/files.pm b/src/apps/protocols/cifs/mode/files.pm index f0f034cda..c7b1cc599 100644 --- a/src/apps/protocols/cifs/mode/files.pm +++ b/src/apps/protocols/cifs/mode/files.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/mode/filescount.pm b/src/apps/protocols/cifs/mode/filescount.pm index d5564133e..28ae338f7 100644 --- a/src/apps/protocols/cifs/mode/filescount.pm +++ b/src/apps/protocols/cifs/mode/filescount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/mode/filesdate.pm b/src/apps/protocols/cifs/mode/filesdate.pm index 454746145..9817756d5 100644 --- a/src/apps/protocols/cifs/mode/filesdate.pm +++ b/src/apps/protocols/cifs/mode/filesdate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/mode/filessize.pm b/src/apps/protocols/cifs/mode/filessize.pm index bbb0cf611..18b72cd11 100644 --- a/src/apps/protocols/cifs/mode/filessize.pm +++ b/src/apps/protocols/cifs/mode/filessize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/mode/scenario.pm b/src/apps/protocols/cifs/mode/scenario.pm index 764aeb2b5..ec65aeea7 100644 --- a/src/apps/protocols/cifs/mode/scenario.pm +++ b/src/apps/protocols/cifs/mode/scenario.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/cifs/plugin.pm b/src/apps/protocols/cifs/plugin.pm index d827abcaf..787b8e183 100644 --- a/src/apps/protocols/cifs/plugin.pm +++ b/src/apps/protocols/cifs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/dhcp/mode/connection.pm b/src/apps/protocols/dhcp/mode/connection.pm index ab68b2016..7dbbebb03 100644 --- a/src/apps/protocols/dhcp/mode/connection.pm +++ b/src/apps/protocols/dhcp/mode/connection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/dhcp/plugin.pm b/src/apps/protocols/dhcp/plugin.pm index 1343d2d4f..93b6d609c 100644 --- a/src/apps/protocols/dhcp/plugin.pm +++ b/src/apps/protocols/dhcp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/dns/lib/dns.pm b/src/apps/protocols/dns/lib/dns.pm index 18b0af82a..3f2f62bfe 100644 --- a/src/apps/protocols/dns/lib/dns.pm +++ b/src/apps/protocols/dns/lib/dns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/dns/mode/request.pm b/src/apps/protocols/dns/mode/request.pm index a0552ae1f..d1cb83f3a 100644 --- a/src/apps/protocols/dns/mode/request.pm +++ b/src/apps/protocols/dns/mode/request.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/dns/plugin.pm b/src/apps/protocols/dns/plugin.pm index 5393c49ee..81e0721af 100644 --- a/src/apps/protocols/dns/plugin.pm +++ b/src/apps/protocols/dns/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ftp/lib/ftp.pm b/src/apps/protocols/ftp/lib/ftp.pm index 2eeab7d1b..097aae230 100644 --- a/src/apps/protocols/ftp/lib/ftp.pm +++ b/src/apps/protocols/ftp/lib/ftp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ftp/mode/commands.pm b/src/apps/protocols/ftp/mode/commands.pm index 0a183e778..f7c5d9180 100644 --- a/src/apps/protocols/ftp/mode/commands.pm +++ b/src/apps/protocols/ftp/mode/commands.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ftp/mode/date.pm b/src/apps/protocols/ftp/mode/date.pm index e3ff10740..d2f3fd1ab 100644 --- a/src/apps/protocols/ftp/mode/date.pm +++ b/src/apps/protocols/ftp/mode/date.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ftp/mode/filescount.pm b/src/apps/protocols/ftp/mode/filescount.pm index 69636855f..3345814fb 100644 --- a/src/apps/protocols/ftp/mode/filescount.pm +++ b/src/apps/protocols/ftp/mode/filescount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ftp/mode/login.pm b/src/apps/protocols/ftp/mode/login.pm index 04072d799..19c172793 100644 --- a/src/apps/protocols/ftp/mode/login.pm +++ b/src/apps/protocols/ftp/mode/login.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ftp/plugin.pm b/src/apps/protocols/ftp/plugin.pm index be6ce3177..1a54fd34f 100644 --- a/src/apps/protocols/ftp/plugin.pm +++ b/src/apps/protocols/ftp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 5f780b05c..1ddddb697 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -1957,7 +1957,7 @@ __END__ =head1 MODE -Collect and compute HTTP datas. +Collect and compute HTTP data. =over 8 diff --git a/src/apps/protocols/http/mode/expectedcontent.pm b/src/apps/protocols/http/mode/expectedcontent.pm index 28bbefb08..cbc352351 100644 --- a/src/apps/protocols/http/mode/expectedcontent.pm +++ b/src/apps/protocols/http/mode/expectedcontent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/http/mode/jsoncontent.pm b/src/apps/protocols/http/mode/jsoncontent.pm index ef241ef05..c09929a87 100644 --- a/src/apps/protocols/http/mode/jsoncontent.pm +++ b/src/apps/protocols/http/mode/jsoncontent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/http/mode/response.pm b/src/apps/protocols/http/mode/response.pm index 7302c9e20..c61720799 100644 --- a/src/apps/protocols/http/mode/response.pm +++ b/src/apps/protocols/http/mode/response.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/http/mode/soapcontent.pm b/src/apps/protocols/http/mode/soapcontent.pm index a407f6576..843133567 100644 --- a/src/apps/protocols/http/mode/soapcontent.pm +++ b/src/apps/protocols/http/mode/soapcontent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/http/plugin.pm b/src/apps/protocols/http/plugin.pm index e0e2e664c..cb2e328c7 100644 --- a/src/apps/protocols/http/plugin.pm +++ b/src/apps/protocols/http/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/imap/custom/imapclient.pm b/src/apps/protocols/imap/custom/imapclient.pm index 8b7815f1d..30b8d01d9 100644 --- a/src/apps/protocols/imap/custom/imapclient.pm +++ b/src/apps/protocols/imap/custom/imapclient.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/imap/mode/login.pm b/src/apps/protocols/imap/mode/login.pm index 56e5fb971..c33b24f0a 100644 --- a/src/apps/protocols/imap/mode/login.pm +++ b/src/apps/protocols/imap/mode/login.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/imap/mode/searchmessage.pm b/src/apps/protocols/imap/mode/searchmessage.pm index 316bf61f6..8935cb889 100644 --- a/src/apps/protocols/imap/mode/searchmessage.pm +++ b/src/apps/protocols/imap/mode/searchmessage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/imap/plugin.pm b/src/apps/protocols/imap/plugin.pm index 24d23ac0f..d2ec175bd 100644 --- a/src/apps/protocols/imap/plugin.pm +++ b/src/apps/protocols/imap/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/jmx/mode/listattributes.pm b/src/apps/protocols/jmx/mode/listattributes.pm index 17ac936e8..560d60cb6 100644 --- a/src/apps/protocols/jmx/mode/listattributes.pm +++ b/src/apps/protocols/jmx/mode/listattributes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/jmx/mode/numericvalue.pm b/src/apps/protocols/jmx/mode/numericvalue.pm index b2abee08d..cc83fddb1 100644 --- a/src/apps/protocols/jmx/mode/numericvalue.pm +++ b/src/apps/protocols/jmx/mode/numericvalue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/jmx/plugin.pm b/src/apps/protocols/jmx/plugin.pm index 8f7125cff..747feb371 100644 --- a/src/apps/protocols/jmx/plugin.pm +++ b/src/apps/protocols/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ldap/mode/login.pm b/src/apps/protocols/ldap/mode/login.pm index e321d2aad..9c654b65b 100644 --- a/src/apps/protocols/ldap/mode/login.pm +++ b/src/apps/protocols/ldap/mode/login.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ldap/mode/search.pm b/src/apps/protocols/ldap/mode/search.pm index 539ca6425..9e1ab1de7 100644 --- a/src/apps/protocols/ldap/mode/search.pm +++ b/src/apps/protocols/ldap/mode/search.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ldap/plugin.pm b/src/apps/protocols/ldap/plugin.pm index 0f12f8006..1cb0f6389 100644 --- a/src/apps/protocols/ldap/plugin.pm +++ b/src/apps/protocols/ldap/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/modbus/mode/numericvalue.pm b/src/apps/protocols/modbus/mode/numericvalue.pm index e2fce7c8d..91241ea29 100644 --- a/src/apps/protocols/modbus/mode/numericvalue.pm +++ b/src/apps/protocols/modbus/mode/numericvalue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/modbus/plugin.pm b/src/apps/protocols/modbus/plugin.pm index 76b144116..1de99336a 100644 --- a/src/apps/protocols/modbus/plugin.pm +++ b/src/apps/protocols/modbus/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/nrpe/custom/nrpe.pm b/src/apps/protocols/nrpe/custom/nrpe.pm index 76d4dd256..670a1490f 100644 --- a/src/apps/protocols/nrpe/custom/nrpe.pm +++ b/src/apps/protocols/nrpe/custom/nrpe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/nrpe/custom/nsclient.pm b/src/apps/protocols/nrpe/custom/nsclient.pm index c7e1cf01d..40f099484 100644 --- a/src/apps/protocols/nrpe/custom/nsclient.pm +++ b/src/apps/protocols/nrpe/custom/nsclient.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/nrpe/mode/query.pm b/src/apps/protocols/nrpe/mode/query.pm index fe67d2c0a..0bbb0b1b8 100644 --- a/src/apps/protocols/nrpe/mode/query.pm +++ b/src/apps/protocols/nrpe/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/nrpe/plugin.pm b/src/apps/protocols/nrpe/plugin.pm index 8824a77ba..84ce3a0eb 100644 --- a/src/apps/protocols/nrpe/plugin.pm +++ b/src/apps/protocols/nrpe/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ntp/mode/offset.pm b/src/apps/protocols/ntp/mode/offset.pm index 944948fea..d2eb141f8 100644 --- a/src/apps/protocols/ntp/mode/offset.pm +++ b/src/apps/protocols/ntp/mode/offset.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ntp/mode/responsetime.pm b/src/apps/protocols/ntp/mode/responsetime.pm index c978843ca..934e9ee8b 100644 --- a/src/apps/protocols/ntp/mode/responsetime.pm +++ b/src/apps/protocols/ntp/mode/responsetime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ntp/plugin.pm b/src/apps/protocols/ntp/plugin.pm index 49820fc99..f94c53631 100644 --- a/src/apps/protocols/ntp/plugin.pm +++ b/src/apps/protocols/ntp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ospf/snmp/mode/neighbor.pm b/src/apps/protocols/ospf/snmp/mode/neighbor.pm index 7145e692a..2d9136cca 100644 --- a/src/apps/protocols/ospf/snmp/mode/neighbor.pm +++ b/src/apps/protocols/ospf/snmp/mode/neighbor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ospf/snmp/plugin.pm b/src/apps/protocols/ospf/snmp/plugin.pm index 0453ed8ba..f97ddf126 100644 --- a/src/apps/protocols/ospf/snmp/plugin.pm +++ b/src/apps/protocols/ospf/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/radius/mode/login.pm b/src/apps/protocols/radius/mode/login.pm index 71eacab87..0213c7765 100644 --- a/src/apps/protocols/radius/mode/login.pm +++ b/src/apps/protocols/radius/mode/login.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/radius/plugin.pm b/src/apps/protocols/radius/plugin.pm index 9164c87c1..1ba105746 100644 --- a/src/apps/protocols/radius/plugin.pm +++ b/src/apps/protocols/radius/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/sftp/custom/libsftp.pm b/src/apps/protocols/sftp/custom/libsftp.pm index dd9d3835c..b8f575a9b 100644 --- a/src/apps/protocols/sftp/custom/libsftp.pm +++ b/src/apps/protocols/sftp/custom/libsftp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/sftp/mode/connection.pm b/src/apps/protocols/sftp/mode/connection.pm index 8af3bb173..052040b0d 100644 --- a/src/apps/protocols/sftp/mode/connection.pm +++ b/src/apps/protocols/sftp/mode/connection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/sftp/mode/filescount.pm b/src/apps/protocols/sftp/mode/filescount.pm index 7137184be..6d74c3567 100644 --- a/src/apps/protocols/sftp/mode/filescount.pm +++ b/src/apps/protocols/sftp/mode/filescount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/sftp/mode/filesdate.pm b/src/apps/protocols/sftp/mode/filesdate.pm index 58bb7dab6..da963c191 100644 --- a/src/apps/protocols/sftp/mode/filesdate.pm +++ b/src/apps/protocols/sftp/mode/filesdate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/sftp/mode/scenario.pm b/src/apps/protocols/sftp/mode/scenario.pm index 80c52939a..d182d598f 100644 --- a/src/apps/protocols/sftp/mode/scenario.pm +++ b/src/apps/protocols/sftp/mode/scenario.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/sftp/plugin.pm b/src/apps/protocols/sftp/plugin.pm index 0dd71c9d5..7b7365a1f 100644 --- a/src/apps/protocols/sftp/plugin.pm +++ b/src/apps/protocols/sftp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/smtp/lib/smtp.pm b/src/apps/protocols/smtp/lib/smtp.pm index a92523780..ca0cdd5c8 100644 --- a/src/apps/protocols/smtp/lib/smtp.pm +++ b/src/apps/protocols/smtp/lib/smtp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/smtp/mode/login.pm b/src/apps/protocols/smtp/mode/login.pm index 91dc1a293..847917e8d 100644 --- a/src/apps/protocols/smtp/mode/login.pm +++ b/src/apps/protocols/smtp/mode/login.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/smtp/mode/message.pm b/src/apps/protocols/smtp/mode/message.pm index d049c4dfd..beb32130f 100644 --- a/src/apps/protocols/smtp/mode/message.pm +++ b/src/apps/protocols/smtp/mode/message.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/smtp/plugin.pm b/src/apps/protocols/smtp/plugin.pm index 3993ad197..3f1a82642 100644 --- a/src/apps/protocols/smtp/plugin.pm +++ b/src/apps/protocols/smtp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/snmp/mode/cache.pm b/src/apps/protocols/snmp/mode/cache.pm index 73ea1578b..cfc6e0ddf 100644 --- a/src/apps/protocols/snmp/mode/cache.pm +++ b/src/apps/protocols/snmp/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -94,7 +94,7 @@ __END__ =head1 MODE -Cache SNMP datas in a JSON cache file. +Cache SNMP data in a JSON cache file. =over 8 diff --git a/src/apps/protocols/snmp/mode/collection.pm b/src/apps/protocols/snmp/mode/collection.pm index 13261bb47..625bbc531 100644 --- a/src/apps/protocols/snmp/mode/collection.pm +++ b/src/apps/protocols/snmp/mode/collection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -1646,7 +1646,7 @@ __END__ =head1 MODE -Collect and compute SNMP datas. +Collect and compute SNMP data. =over 8 diff --git a/src/apps/protocols/snmp/mode/responsetime.pm b/src/apps/protocols/snmp/mode/responsetime.pm index f8715bced..93d3afd59 100644 --- a/src/apps/protocols/snmp/mode/responsetime.pm +++ b/src/apps/protocols/snmp/mode/responsetime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/snmp/plugin.pm b/src/apps/protocols/snmp/plugin.pm index 9198225de..8790c8ad7 100644 --- a/src/apps/protocols/snmp/plugin.pm +++ b/src/apps/protocols/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ssh/mode/login.pm b/src/apps/protocols/ssh/mode/login.pm index 5a246a364..2f001eef9 100644 --- a/src/apps/protocols/ssh/mode/login.pm +++ b/src/apps/protocols/ssh/mode/login.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/ssh/plugin.pm b/src/apps/protocols/ssh/plugin.pm index e943bc191..e62e7109d 100644 --- a/src/apps/protocols/ssh/plugin.pm +++ b/src/apps/protocols/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/tcp/mode/connectionstatus.pm b/src/apps/protocols/tcp/mode/connectionstatus.pm index f8d55df02..c130baf7b 100644 --- a/src/apps/protocols/tcp/mode/connectionstatus.pm +++ b/src/apps/protocols/tcp/mode/connectionstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/tcp/mode/responsetime.pm b/src/apps/protocols/tcp/mode/responsetime.pm index 18afb4d3d..a606a568d 100644 --- a/src/apps/protocols/tcp/mode/responsetime.pm +++ b/src/apps/protocols/tcp/mode/responsetime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/tcp/plugin.pm b/src/apps/protocols/tcp/plugin.pm index 13259c084..03123fe9a 100644 --- a/src/apps/protocols/tcp/plugin.pm +++ b/src/apps/protocols/tcp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/telnet/mode/scenario.pm b/src/apps/protocols/telnet/mode/scenario.pm index 374122ede..64f791827 100644 --- a/src/apps/protocols/telnet/mode/scenario.pm +++ b/src/apps/protocols/telnet/mode/scenario.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/telnet/plugin.pm b/src/apps/protocols/telnet/plugin.pm index cdeb1ef3d..b828176f1 100644 --- a/src/apps/protocols/telnet/plugin.pm +++ b/src/apps/protocols/telnet/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/tftp/mode/commands.pm b/src/apps/protocols/tftp/mode/commands.pm index 8fe49a4f0..f3817279e 100644 --- a/src/apps/protocols/tftp/mode/commands.pm +++ b/src/apps/protocols/tftp/mode/commands.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/tftp/plugin.pm b/src/apps/protocols/tftp/plugin.pm index fc8333aba..1bdf1e231 100644 --- a/src/apps/protocols/tftp/plugin.pm +++ b/src/apps/protocols/tftp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/udp/mode/connection.pm b/src/apps/protocols/udp/mode/connection.pm index 3459819a9..dc7bdb910 100644 --- a/src/apps/protocols/udp/mode/connection.pm +++ b/src/apps/protocols/udp/mode/connection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/udp/plugin.pm b/src/apps/protocols/udp/plugin.pm index a76ab79e2..1400ef8d5 100644 --- a/src/apps/protocols/udp/plugin.pm +++ b/src/apps/protocols/udp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/whois/mode/domain.pm b/src/apps/protocols/whois/mode/domain.pm index 9751619ae..bbc4006b2 100644 --- a/src/apps/protocols/whois/mode/domain.pm +++ b/src/apps/protocols/whois/mode/domain.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/whois/plugin.pm b/src/apps/protocols/whois/plugin.pm index a1b15b42f..d6ddb8fc3 100644 --- a/src/apps/protocols/whois/plugin.pm +++ b/src/apps/protocols/whois/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/x509/custom/file.pm b/src/apps/protocols/x509/custom/file.pm index 40f87d86c..69e992fe6 100644 --- a/src/apps/protocols/x509/custom/file.pm +++ b/src/apps/protocols/x509/custom/file.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/x509/custom/https.pm b/src/apps/protocols/x509/custom/https.pm index e941e8622..064fe97a7 100644 --- a/src/apps/protocols/x509/custom/https.pm +++ b/src/apps/protocols/x509/custom/https.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/x509/custom/opensslcli.pm b/src/apps/protocols/x509/custom/opensslcli.pm index 19d374cb4..81a2e75fd 100644 --- a/src/apps/protocols/x509/custom/opensslcli.pm +++ b/src/apps/protocols/x509/custom/opensslcli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/x509/custom/tcp.pm b/src/apps/protocols/x509/custom/tcp.pm index 6e89ce051..6fb3281c6 100644 --- a/src/apps/protocols/x509/custom/tcp.pm +++ b/src/apps/protocols/x509/custom/tcp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/x509/mode/certificate.pm b/src/apps/protocols/x509/mode/certificate.pm index b88519417..9184451fd 100644 --- a/src/apps/protocols/x509/mode/certificate.pm +++ b/src/apps/protocols/x509/mode/certificate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/protocols/x509/plugin.pm b/src/apps/protocols/x509/plugin.pm index 1d973cfb6..1feae94ab 100644 --- a/src/apps/protocols/x509/plugin.pm +++ b/src/apps/protocols/x509/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/mg/restapi/custom/api.pm b/src/apps/proxmox/mg/restapi/custom/api.pm index 8489a52f0..281ede8f6 100644 --- a/src/apps/proxmox/mg/restapi/custom/api.pm +++ b/src/apps/proxmox/mg/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/mg/restapi/mode/mail.pm b/src/apps/proxmox/mg/restapi/mode/mail.pm index f0e299762..91193dba7 100644 --- a/src/apps/proxmox/mg/restapi/mode/mail.pm +++ b/src/apps/proxmox/mg/restapi/mode/mail.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/mg/restapi/mode/version.pm b/src/apps/proxmox/mg/restapi/mode/version.pm index 51db5c930..14c0399d1 100644 --- a/src/apps/proxmox/mg/restapi/mode/version.pm +++ b/src/apps/proxmox/mg/restapi/mode/version.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/mg/restapi/plugin.pm b/src/apps/proxmox/mg/restapi/plugin.pm index 991c35406..042ea7823 100644 --- a/src/apps/proxmox/mg/restapi/plugin.pm +++ b/src/apps/proxmox/mg/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/custom/api.pm b/src/apps/proxmox/ve/restapi/custom/api.pm index 7e6b3f131..872aebb3a 100644 --- a/src/apps/proxmox/ve/restapi/custom/api.pm +++ b/src/apps/proxmox/ve/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/discovery.pm b/src/apps/proxmox/ve/restapi/mode/discovery.pm index 4149f1545..11d0f83e0 100644 --- a/src/apps/proxmox/ve/restapi/mode/discovery.pm +++ b/src/apps/proxmox/ve/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/listnodes.pm b/src/apps/proxmox/ve/restapi/mode/listnodes.pm index 31c5e1a0a..4049eac51 100644 --- a/src/apps/proxmox/ve/restapi/mode/listnodes.pm +++ b/src/apps/proxmox/ve/restapi/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/liststorages.pm b/src/apps/proxmox/ve/restapi/mode/liststorages.pm index 3f2be2191..f8dec3c6e 100644 --- a/src/apps/proxmox/ve/restapi/mode/liststorages.pm +++ b/src/apps/proxmox/ve/restapi/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/listvms.pm b/src/apps/proxmox/ve/restapi/mode/listvms.pm index 15848c676..a16846853 100644 --- a/src/apps/proxmox/ve/restapi/mode/listvms.pm +++ b/src/apps/proxmox/ve/restapi/mode/listvms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/nodeusage.pm b/src/apps/proxmox/ve/restapi/mode/nodeusage.pm index 562db3ed6..8ceece073 100644 --- a/src/apps/proxmox/ve/restapi/mode/nodeusage.pm +++ b/src/apps/proxmox/ve/restapi/mode/nodeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/storageusage.pm b/src/apps/proxmox/ve/restapi/mode/storageusage.pm index 7ec8219e4..e9325f759 100644 --- a/src/apps/proxmox/ve/restapi/mode/storageusage.pm +++ b/src/apps/proxmox/ve/restapi/mode/storageusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/version.pm b/src/apps/proxmox/ve/restapi/mode/version.pm index 7cbf2694c..012a285d1 100644 --- a/src/apps/proxmox/ve/restapi/mode/version.pm +++ b/src/apps/proxmox/ve/restapi/mode/version.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/mode/vmusage.pm b/src/apps/proxmox/ve/restapi/mode/vmusage.pm index 54ba1ae28..6e2d8f719 100644 --- a/src/apps/proxmox/ve/restapi/mode/vmusage.pm +++ b/src/apps/proxmox/ve/restapi/mode/vmusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/proxmox/ve/restapi/plugin.pm b/src/apps/proxmox/ve/restapi/plugin.pm index edb4ea59f..0a32851d9 100644 --- a/src/apps/proxmox/ve/restapi/plugin.pm +++ b/src/apps/proxmox/ve/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pvx/restapi/custom/api.pm b/src/apps/pvx/restapi/custom/api.pm index 64df083ea..ae2d2ecc4 100644 --- a/src/apps/pvx/restapi/custom/api.pm +++ b/src/apps/pvx/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pvx/restapi/mode/httphits.pm b/src/apps/pvx/restapi/mode/httphits.pm index a70749f8d..73d8ad0b2 100644 --- a/src/apps/pvx/restapi/mode/httphits.pm +++ b/src/apps/pvx/restapi/mode/httphits.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pvx/restapi/mode/networkconnection.pm b/src/apps/pvx/restapi/mode/networkconnection.pm index 1d4145bc4..25b87032f 100644 --- a/src/apps/pvx/restapi/mode/networkconnection.pm +++ b/src/apps/pvx/restapi/mode/networkconnection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pvx/restapi/mode/networktraffic.pm b/src/apps/pvx/restapi/mode/networktraffic.pm index 81209c74b..7c647d78e 100644 --- a/src/apps/pvx/restapi/mode/networktraffic.pm +++ b/src/apps/pvx/restapi/mode/networktraffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pvx/restapi/mode/networkuserexperience.pm b/src/apps/pvx/restapi/mode/networkuserexperience.pm index 25cb77378..b101af96a 100644 --- a/src/apps/pvx/restapi/mode/networkuserexperience.pm +++ b/src/apps/pvx/restapi/mode/networkuserexperience.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/pvx/restapi/plugin.pm b/src/apps/pvx/restapi/plugin.pm index afe59209b..53e33c20e 100644 --- a/src/apps/pvx/restapi/plugin.pm +++ b/src/apps/pvx/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/custom/api.pm b/src/apps/redis/rlec/restapi/custom/api.pm index 1b0e9dc16..889146f47 100644 --- a/src/apps/redis/rlec/restapi/custom/api.pm +++ b/src/apps/redis/rlec/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/clusterstats.pm b/src/apps/redis/rlec/restapi/mode/clusterstats.pm index 2a70c1ded..0387985ca 100644 --- a/src/apps/redis/rlec/restapi/mode/clusterstats.pm +++ b/src/apps/redis/rlec/restapi/mode/clusterstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/databasesstats.pm b/src/apps/redis/rlec/restapi/mode/databasesstats.pm index 24941fc59..23226b7e0 100644 --- a/src/apps/redis/rlec/restapi/mode/databasesstats.pm +++ b/src/apps/redis/rlec/restapi/mode/databasesstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/listdatabases.pm b/src/apps/redis/rlec/restapi/mode/listdatabases.pm index d41ac0996..aba1a66f3 100644 --- a/src/apps/redis/rlec/restapi/mode/listdatabases.pm +++ b/src/apps/redis/rlec/restapi/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/listnodes.pm b/src/apps/redis/rlec/restapi/mode/listnodes.pm index 212b221f0..deda07959 100644 --- a/src/apps/redis/rlec/restapi/mode/listnodes.pm +++ b/src/apps/redis/rlec/restapi/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/listshards.pm b/src/apps/redis/rlec/restapi/mode/listshards.pm index bafc99096..2e234a307 100644 --- a/src/apps/redis/rlec/restapi/mode/listshards.pm +++ b/src/apps/redis/rlec/restapi/mode/listshards.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/nodesstats.pm b/src/apps/redis/rlec/restapi/mode/nodesstats.pm index 14fc25546..50259101b 100644 --- a/src/apps/redis/rlec/restapi/mode/nodesstats.pm +++ b/src/apps/redis/rlec/restapi/mode/nodesstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/mode/shardsstats.pm b/src/apps/redis/rlec/restapi/mode/shardsstats.pm index 3c835df6c..e14669534 100644 --- a/src/apps/redis/rlec/restapi/mode/shardsstats.pm +++ b/src/apps/redis/rlec/restapi/mode/shardsstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/rlec/restapi/plugin.pm b/src/apps/redis/rlec/restapi/plugin.pm index eb19582c1..f193f1180 100644 --- a/src/apps/redis/rlec/restapi/plugin.pm +++ b/src/apps/redis/rlec/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/sentinel/custom/cli.pm b/src/apps/redis/sentinel/custom/cli.pm index 38a9f832c..1b5a59b40 100644 --- a/src/apps/redis/sentinel/custom/cli.pm +++ b/src/apps/redis/sentinel/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/sentinel/mode/listclusters.pm b/src/apps/redis/sentinel/mode/listclusters.pm index bb88ed9b5..6113f61b4 100644 --- a/src/apps/redis/sentinel/mode/listclusters.pm +++ b/src/apps/redis/sentinel/mode/listclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/sentinel/mode/redisclusters.pm b/src/apps/redis/sentinel/mode/redisclusters.pm index f43c209e8..7655301ba 100644 --- a/src/apps/redis/sentinel/mode/redisclusters.pm +++ b/src/apps/redis/sentinel/mode/redisclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/sentinel/mode/sentinelclusters.pm b/src/apps/redis/sentinel/mode/sentinelclusters.pm index 8cb3ba8b9..56f270591 100644 --- a/src/apps/redis/sentinel/mode/sentinelclusters.pm +++ b/src/apps/redis/sentinel/mode/sentinelclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/redis/sentinel/plugin.pm b/src/apps/redis/sentinel/plugin.pm index beecb25cf..9bd0a709c 100644 --- a/src/apps/redis/sentinel/plugin.pm +++ b/src/apps/redis/sentinel/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rrdcached/mode/stats.pm b/src/apps/rrdcached/mode/stats.pm index 0e2870a83..10d56baa3 100644 --- a/src/apps/rrdcached/mode/stats.pm +++ b/src/apps/rrdcached/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rrdcached/plugin.pm b/src/apps/rrdcached/plugin.pm index 492090adc..3f3765bb0 100644 --- a/src/apps/rrdcached/plugin.pm +++ b/src/apps/rrdcached/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/custom/api.pm b/src/apps/rudder/restapi/custom/api.pm index d8664eac5..835faedbe 100644 --- a/src/apps/rudder/restapi/custom/api.pm +++ b/src/apps/rudder/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/discovery.pm b/src/apps/rudder/restapi/mode/discovery.pm index 72f6e2ff7..f52d579ab 100644 --- a/src/apps/rudder/restapi/mode/discovery.pm +++ b/src/apps/rudder/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/globalcompliance.pm b/src/apps/rudder/restapi/mode/globalcompliance.pm index a10f28dab..05c2127c8 100644 --- a/src/apps/rudder/restapi/mode/globalcompliance.pm +++ b/src/apps/rudder/restapi/mode/globalcompliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/listnodes.pm b/src/apps/rudder/restapi/mode/listnodes.pm index d8af18ef7..48a91fb9e 100644 --- a/src/apps/rudder/restapi/mode/listnodes.pm +++ b/src/apps/rudder/restapi/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/listrules.pm b/src/apps/rudder/restapi/mode/listrules.pm index 2c54351e5..3fe47a860 100644 --- a/src/apps/rudder/restapi/mode/listrules.pm +++ b/src/apps/rudder/restapi/mode/listrules.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/nodecompliance.pm b/src/apps/rudder/restapi/mode/nodecompliance.pm index 4573f2c73..d98371e8f 100644 --- a/src/apps/rudder/restapi/mode/nodecompliance.pm +++ b/src/apps/rudder/restapi/mode/nodecompliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/nodesoverallcompliance.pm b/src/apps/rudder/restapi/mode/nodesoverallcompliance.pm index 4f390f351..5121f2f44 100644 --- a/src/apps/rudder/restapi/mode/nodesoverallcompliance.pm +++ b/src/apps/rudder/restapi/mode/nodesoverallcompliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/rulecompliance.pm b/src/apps/rudder/restapi/mode/rulecompliance.pm index 4f9db1662..a1a0b1510 100644 --- a/src/apps/rudder/restapi/mode/rulecompliance.pm +++ b/src/apps/rudder/restapi/mode/rulecompliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/mode/statistics.pm b/src/apps/rudder/restapi/mode/statistics.pm index 9c32178b5..3fd7d47d0 100644 --- a/src/apps/rudder/restapi/mode/statistics.pm +++ b/src/apps/rudder/restapi/mode/statistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/rudder/restapi/plugin.pm b/src/apps/rudder/restapi/plugin.pm index 192d41818..1e70ab84d 100644 --- a/src/apps/rudder/restapi/plugin.pm +++ b/src/apps/rudder/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sahipro/restapi/mode/scenario.pm b/src/apps/sahipro/restapi/mode/scenario.pm index 21189569b..5f348f7db 100644 --- a/src/apps/sahipro/restapi/mode/scenario.pm +++ b/src/apps/sahipro/restapi/mode/scenario.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sahipro/restapi/plugin.pm b/src/apps/sahipro/restapi/plugin.pm index e3d85cf3e..d85e09297 100644 --- a/src/apps/sahipro/restapi/plugin.pm +++ b/src/apps/sahipro/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sailpoint/identitynow/restapi/custom/api.pm b/src/apps/sailpoint/identitynow/restapi/custom/api.pm index 29a085e4e..f2aeccbcf 100644 --- a/src/apps/sailpoint/identitynow/restapi/custom/api.pm +++ b/src/apps/sailpoint/identitynow/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sailpoint/identitynow/restapi/mode/listsources.pm b/src/apps/sailpoint/identitynow/restapi/mode/listsources.pm index 48a9c5056..6ec88cd91 100644 --- a/src/apps/sailpoint/identitynow/restapi/mode/listsources.pm +++ b/src/apps/sailpoint/identitynow/restapi/mode/listsources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sailpoint/identitynow/restapi/mode/searchcount.pm b/src/apps/sailpoint/identitynow/restapi/mode/searchcount.pm index 559a35e8e..68034ba2c 100644 --- a/src/apps/sailpoint/identitynow/restapi/mode/searchcount.pm +++ b/src/apps/sailpoint/identitynow/restapi/mode/searchcount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sailpoint/identitynow/restapi/mode/sourcehealth.pm b/src/apps/sailpoint/identitynow/restapi/mode/sourcehealth.pm index 9052e5937..31bb7d052 100644 --- a/src/apps/sailpoint/identitynow/restapi/mode/sourcehealth.pm +++ b/src/apps/sailpoint/identitynow/restapi/mode/sourcehealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sailpoint/identitynow/restapi/plugin.pm b/src/apps/sailpoint/identitynow/restapi/plugin.pm index 3685fe079..826992705 100644 --- a/src/apps/sailpoint/identitynow/restapi/plugin.pm +++ b/src/apps/sailpoint/identitynow/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/salesforce/restapi/custom/api.pm b/src/apps/salesforce/restapi/custom/api.pm index 079778384..bdf40e0f5 100644 --- a/src/apps/salesforce/restapi/custom/api.pm +++ b/src/apps/salesforce/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/salesforce/restapi/mode/sfdcinstance.pm b/src/apps/salesforce/restapi/mode/sfdcinstance.pm index 1a4ff7746..55e13ad78 100644 --- a/src/apps/salesforce/restapi/mode/sfdcinstance.pm +++ b/src/apps/salesforce/restapi/mode/sfdcinstance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/salesforce/restapi/plugin.pm b/src/apps/salesforce/restapi/plugin.pm index 8d99ca601..062337fdb 100644 --- a/src/apps/salesforce/restapi/plugin.pm +++ b/src/apps/salesforce/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/selenium/mode/scenario.pm b/src/apps/selenium/mode/scenario.pm index 4cc5c2d21..56aa1bc2b 100644 --- a/src/apps/selenium/mode/scenario.pm +++ b/src/apps/selenium/mode/scenario.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/selenium/mode/scenariokatalon.pm b/src/apps/selenium/mode/scenariokatalon.pm index 0e3680667..3a9bc7f74 100644 --- a/src/apps/selenium/mode/scenariokatalon.pm +++ b/src/apps/selenium/mode/scenariokatalon.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/selenium/plugin.pm b/src/apps/selenium/plugin.pm index 1f6c4e5d0..19fb0ec21 100644 --- a/src/apps/selenium/plugin.pm +++ b/src/apps/selenium/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/sendmail/snmp/plugin.pm b/src/apps/sendmail/snmp/plugin.pm index 97b738eec..36835b88e 100644 --- a/src/apps/sendmail/snmp/plugin.pm +++ b/src/apps/sendmail/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/slack/restapi/custom/api.pm b/src/apps/slack/restapi/custom/api.pm index ee1d01344..0bfc4083f 100644 --- a/src/apps/slack/restapi/custom/api.pm +++ b/src/apps/slack/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/slack/restapi/mode/countchannels.pm b/src/apps/slack/restapi/mode/countchannels.pm index 35df48aff..cc03492ef 100644 --- a/src/apps/slack/restapi/mode/countchannels.pm +++ b/src/apps/slack/restapi/mode/countchannels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/slack/restapi/mode/countmembers.pm b/src/apps/slack/restapi/mode/countmembers.pm index 0b24fd595..8896241db 100644 --- a/src/apps/slack/restapi/mode/countmembers.pm +++ b/src/apps/slack/restapi/mode/countmembers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/slack/restapi/mode/listservices.pm b/src/apps/slack/restapi/mode/listservices.pm index e8b26035a..a2a53d9ae 100644 --- a/src/apps/slack/restapi/mode/listservices.pm +++ b/src/apps/slack/restapi/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/slack/restapi/mode/services.pm b/src/apps/slack/restapi/mode/services.pm index a278ca704..b867aa2f8 100644 --- a/src/apps/slack/restapi/mode/services.pm +++ b/src/apps/slack/restapi/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/slack/restapi/plugin.pm b/src/apps/slack/restapi/plugin.pm index ed3f62f86..60885f997 100644 --- a/src/apps/slack/restapi/plugin.pm +++ b/src/apps/slack/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/smartermail/restapi/custom/api.pm b/src/apps/smartermail/restapi/custom/api.pm index 0089a3de0..028e38405 100644 --- a/src/apps/smartermail/restapi/custom/api.pm +++ b/src/apps/smartermail/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/smartermail/restapi/mode/licenses.pm b/src/apps/smartermail/restapi/mode/licenses.pm index 5c172cc6e..3ed6a83e0 100644 --- a/src/apps/smartermail/restapi/mode/licenses.pm +++ b/src/apps/smartermail/restapi/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/smartermail/restapi/mode/services.pm b/src/apps/smartermail/restapi/mode/services.pm index 57e406cd9..964e22a33 100644 --- a/src/apps/smartermail/restapi/mode/services.pm +++ b/src/apps/smartermail/restapi/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/smartermail/restapi/mode/spools.pm b/src/apps/smartermail/restapi/mode/spools.pm index b84f5be66..9ef779407 100644 --- a/src/apps/smartermail/restapi/mode/spools.pm +++ b/src/apps/smartermail/restapi/mode/spools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/smartermail/restapi/plugin.pm b/src/apps/smartermail/restapi/plugin.pm index 3f73d878c..d66140abb 100644 --- a/src/apps/smartermail/restapi/plugin.pm +++ b/src/apps/smartermail/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/squid/snmp/mode/cacheusage.pm b/src/apps/squid/snmp/mode/cacheusage.pm index ba3db7424..c5ed124aa 100644 --- a/src/apps/squid/snmp/mode/cacheusage.pm +++ b/src/apps/squid/snmp/mode/cacheusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/squid/snmp/mode/protocolstats.pm b/src/apps/squid/snmp/mode/protocolstats.pm index f0987466a..d8377cce1 100644 --- a/src/apps/squid/snmp/mode/protocolstats.pm +++ b/src/apps/squid/snmp/mode/protocolstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/squid/snmp/plugin.pm b/src/apps/squid/snmp/plugin.pm index 1f7e1cf43..39de9ac3f 100644 --- a/src/apps/squid/snmp/plugin.pm +++ b/src/apps/squid/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/custom/api.pm b/src/apps/thales/mistral/vs9/restapi/custom/api.pm index e53fd1167..fd1febf66 100644 --- a/src/apps/thales/mistral/vs9/restapi/custom/api.pm +++ b/src/apps/thales/mistral/vs9/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/mode/clusters.pm b/src/apps/thales/mistral/vs9/restapi/mode/clusters.pm index cdb0c6d9e..a592a8752 100644 --- a/src/apps/thales/mistral/vs9/restapi/mode/clusters.pm +++ b/src/apps/thales/mistral/vs9/restapi/mode/clusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/mode/devices.pm b/src/apps/thales/mistral/vs9/restapi/mode/devices.pm index 921cba2da..23446974f 100644 --- a/src/apps/thales/mistral/vs9/restapi/mode/devices.pm +++ b/src/apps/thales/mistral/vs9/restapi/mode/devices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/mode/discovery.pm b/src/apps/thales/mistral/vs9/restapi/mode/discovery.pm index d707caa91..17d9e861d 100644 --- a/src/apps/thales/mistral/vs9/restapi/mode/discovery.pm +++ b/src/apps/thales/mistral/vs9/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/mode/mmccertificates.pm b/src/apps/thales/mistral/vs9/restapi/mode/mmccertificates.pm index d45bef329..ca45151b5 100644 --- a/src/apps/thales/mistral/vs9/restapi/mode/mmccertificates.pm +++ b/src/apps/thales/mistral/vs9/restapi/mode/mmccertificates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/mode/mmccluster.pm b/src/apps/thales/mistral/vs9/restapi/mode/mmccluster.pm index 6aad94a91..5fa4f641e 100644 --- a/src/apps/thales/mistral/vs9/restapi/mode/mmccluster.pm +++ b/src/apps/thales/mistral/vs9/restapi/mode/mmccluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/thales/mistral/vs9/restapi/plugin.pm b/src/apps/thales/mistral/vs9/restapi/plugin.pm index 89ebefc49..a5d952a9d 100644 --- a/src/apps/thales/mistral/vs9/restapi/plugin.pm +++ b/src/apps/thales/mistral/vs9/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/jmx/mode/connectorusage.pm b/src/apps/tomcat/jmx/mode/connectorusage.pm index efff6b681..62c8c872b 100644 --- a/src/apps/tomcat/jmx/mode/connectorusage.pm +++ b/src/apps/tomcat/jmx/mode/connectorusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/jmx/mode/datasourceusage.pm b/src/apps/tomcat/jmx/mode/datasourceusage.pm index 4025c34f1..9b6d02b65 100644 --- a/src/apps/tomcat/jmx/mode/datasourceusage.pm +++ b/src/apps/tomcat/jmx/mode/datasourceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/jmx/mode/listdatasources.pm b/src/apps/tomcat/jmx/mode/listdatasources.pm index 0d1ac52b9..339ec5e6d 100644 --- a/src/apps/tomcat/jmx/mode/listdatasources.pm +++ b/src/apps/tomcat/jmx/mode/listdatasources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/jmx/mode/listwebapps.pm b/src/apps/tomcat/jmx/mode/listwebapps.pm index 59cda8c31..7501750d8 100644 --- a/src/apps/tomcat/jmx/mode/listwebapps.pm +++ b/src/apps/tomcat/jmx/mode/listwebapps.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/jmx/mode/webappssessions.pm b/src/apps/tomcat/jmx/mode/webappssessions.pm index 1a3df85f2..98ee54cbc 100644 --- a/src/apps/tomcat/jmx/mode/webappssessions.pm +++ b/src/apps/tomcat/jmx/mode/webappssessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/jmx/plugin.pm b/src/apps/tomcat/jmx/plugin.pm index c3e9830fa..02dadd58d 100644 --- a/src/apps/tomcat/jmx/plugin.pm +++ b/src/apps/tomcat/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/web/mode/applications.pm b/src/apps/tomcat/web/mode/applications.pm index a246bf384..7d6f4ad4a 100644 --- a/src/apps/tomcat/web/mode/applications.pm +++ b/src/apps/tomcat/web/mode/applications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/web/mode/connectors.pm b/src/apps/tomcat/web/mode/connectors.pm index 3d45610b2..988bc4d18 100644 --- a/src/apps/tomcat/web/mode/connectors.pm +++ b/src/apps/tomcat/web/mode/connectors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/web/mode/listapplication.pm b/src/apps/tomcat/web/mode/listapplication.pm index 584bcca2d..bb07ffe26 100644 --- a/src/apps/tomcat/web/mode/listapplication.pm +++ b/src/apps/tomcat/web/mode/listapplication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/web/mode/memory.pm b/src/apps/tomcat/web/mode/memory.pm index a3e4ea518..994bc01f2 100644 --- a/src/apps/tomcat/web/mode/memory.pm +++ b/src/apps/tomcat/web/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tomcat/web/plugin.pm b/src/apps/tomcat/web/plugin.pm index e546bc075..996fff91e 100644 --- a/src/apps/tomcat/web/plugin.pm +++ b/src/apps/tomcat/web/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tosca/restapi/custom/api.pm b/src/apps/tosca/restapi/custom/api.pm index 3717d63b8..e5d7956db 100644 --- a/src/apps/tosca/restapi/custom/api.pm +++ b/src/apps/tosca/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tosca/restapi/mode/executionliststatus.pm b/src/apps/tosca/restapi/mode/executionliststatus.pm index c4b630a6d..f7fcb2adb 100644 --- a/src/apps/tosca/restapi/mode/executionliststatus.pm +++ b/src/apps/tosca/restapi/mode/executionliststatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tosca/restapi/mode/scenariostatus.pm b/src/apps/tosca/restapi/mode/scenariostatus.pm index 044c73df3..94a19c9fa 100644 --- a/src/apps/tosca/restapi/mode/scenariostatus.pm +++ b/src/apps/tosca/restapi/mode/scenariostatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/tosca/restapi/plugin.pm b/src/apps/tosca/restapi/plugin.pm index e06f79732..9326f1281 100644 --- a/src/apps/tosca/restapi/plugin.pm +++ b/src/apps/tosca/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/toshiba/storemate/sql/mode/maintenanceplan.pm b/src/apps/toshiba/storemate/sql/mode/maintenanceplan.pm index 4d885ff7d..5151fd8d5 100644 --- a/src/apps/toshiba/storemate/sql/mode/maintenanceplan.pm +++ b/src/apps/toshiba/storemate/sql/mode/maintenanceplan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/toshiba/storemate/sql/mode/posstatus.pm b/src/apps/toshiba/storemate/sql/mode/posstatus.pm index a38cb4496..96e2e0d9d 100644 --- a/src/apps/toshiba/storemate/sql/mode/posstatus.pm +++ b/src/apps/toshiba/storemate/sql/mode/posstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/varnish/local/mode/stats.pm b/src/apps/varnish/local/mode/stats.pm index d60f92ec0..bb40a14ed 100644 --- a/src/apps/varnish/local/mode/stats.pm +++ b/src/apps/varnish/local/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/varnish/local/plugin.pm b/src/apps/varnish/local/plugin.pm index e6d546914..7e8c48d32 100644 --- a/src/apps/varnish/local/plugin.pm +++ b/src/apps/varnish/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/openheadend/snmp/mode/nodeusage.pm b/src/apps/video/openheadend/snmp/mode/nodeusage.pm index 652423cae..0c1740919 100644 --- a/src/apps/video/openheadend/snmp/mode/nodeusage.pm +++ b/src/apps/video/openheadend/snmp/mode/nodeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/openheadend/snmp/mode/operationstatus.pm b/src/apps/video/openheadend/snmp/mode/operationstatus.pm index 146264e55..abdb64188 100644 --- a/src/apps/video/openheadend/snmp/mode/operationstatus.pm +++ b/src/apps/video/openheadend/snmp/mode/operationstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/openheadend/snmp/plugin.pm b/src/apps/video/openheadend/snmp/plugin.pm index daa9d8c72..f7ea6b481 100644 --- a/src/apps/video/openheadend/snmp/plugin.pm +++ b/src/apps/video/openheadend/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/custom/api.pm b/src/apps/video/zixi/restapi/custom/api.pm index 864713360..281a8fd5c 100644 --- a/src/apps/video/zixi/restapi/custom/api.pm +++ b/src/apps/video/zixi/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/mode/broadcasterinputusage.pm b/src/apps/video/zixi/restapi/mode/broadcasterinputusage.pm index e0582e098..b29792b53 100644 --- a/src/apps/video/zixi/restapi/mode/broadcasterinputusage.pm +++ b/src/apps/video/zixi/restapi/mode/broadcasterinputusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/mode/broadcasterlicenseusage.pm b/src/apps/video/zixi/restapi/mode/broadcasterlicenseusage.pm index 9ae2d803b..2ec2f45fb 100644 --- a/src/apps/video/zixi/restapi/mode/broadcasterlicenseusage.pm +++ b/src/apps/video/zixi/restapi/mode/broadcasterlicenseusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/mode/broadcasteroutputusage.pm b/src/apps/video/zixi/restapi/mode/broadcasteroutputusage.pm index 50b818b61..9c32e29be 100644 --- a/src/apps/video/zixi/restapi/mode/broadcasteroutputusage.pm +++ b/src/apps/video/zixi/restapi/mode/broadcasteroutputusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/mode/broadcastersystemusage.pm b/src/apps/video/zixi/restapi/mode/broadcastersystemusage.pm index dae842421..01d20cbc8 100644 --- a/src/apps/video/zixi/restapi/mode/broadcastersystemusage.pm +++ b/src/apps/video/zixi/restapi/mode/broadcastersystemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/mode/feederinputusage.pm b/src/apps/video/zixi/restapi/mode/feederinputusage.pm index 217f519b8..42ce81fcc 100644 --- a/src/apps/video/zixi/restapi/mode/feederinputusage.pm +++ b/src/apps/video/zixi/restapi/mode/feederinputusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/mode/feederoutputusage.pm b/src/apps/video/zixi/restapi/mode/feederoutputusage.pm index 5fbe02fe9..9bd80f0ee 100644 --- a/src/apps/video/zixi/restapi/mode/feederoutputusage.pm +++ b/src/apps/video/zixi/restapi/mode/feederoutputusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/video/zixi/restapi/plugin.pm b/src/apps/video/zixi/restapi/plugin.pm index 1cde638f7..e714ab5f0 100644 --- a/src/apps/video/zixi/restapi/plugin.pm +++ b/src/apps/video/zixi/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/custom/api.pm b/src/apps/virtualization/hpe/simplivity/restapi/custom/api.pm index ad853e2de..677940d67 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/custom/api.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/mode/discovery.pm b/src/apps/virtualization/hpe/simplivity/restapi/mode/discovery.pm index 3b82b7b99..62cca3deb 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/mode/discovery.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/mode/hosts.pm b/src/apps/virtualization/hpe/simplivity/restapi/mode/hosts.pm index c0273f5a0..89ec629dc 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/mode/hosts.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/mode/hosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/mode/listhosts.pm b/src/apps/virtualization/hpe/simplivity/restapi/mode/listhosts.pm index 90f18cce3..14f942a82 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/mode/listhosts.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/mode/listhosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/mode/omnistackclusters.pm b/src/apps/virtualization/hpe/simplivity/restapi/mode/omnistackclusters.pm index 5a401fd80..cb99f60c2 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/mode/omnistackclusters.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/mode/omnistackclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/mode/virtualmachines.pm b/src/apps/virtualization/hpe/simplivity/restapi/mode/virtualmachines.pm index b4a4c401f..5baa728ac 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/mode/virtualmachines.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/mode/virtualmachines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/hpe/simplivity/restapi/plugin.pm b/src/apps/virtualization/hpe/simplivity/restapi/plugin.pm index 3b187d30d..d5cf7b6c5 100644 --- a/src/apps/virtualization/hpe/simplivity/restapi/plugin.pm +++ b/src/apps/virtualization/hpe/simplivity/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/ovirt/custom/api.pm b/src/apps/virtualization/ovirt/custom/api.pm index e1c81852f..5be3ece0c 100644 --- a/src/apps/virtualization/ovirt/custom/api.pm +++ b/src/apps/virtualization/ovirt/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/ovirt/mode/cpuhost.pm b/src/apps/virtualization/ovirt/mode/cpuhost.pm index 05d27142c..5077ad417 100644 --- a/src/apps/virtualization/ovirt/mode/cpuhost.pm +++ b/src/apps/virtualization/ovirt/mode/cpuhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -111,7 +111,7 @@ __END__ =head1 MODE -Check host cpu utilization. +Check host CPU utilization. =over 8 diff --git a/src/apps/virtualization/ovirt/mode/listclusters.pm b/src/apps/virtualization/ovirt/mode/listclusters.pm index 9464ed02a..ab4edbcb7 100644 --- a/src/apps/virtualization/ovirt/mode/listclusters.pm +++ b/src/apps/virtualization/ovirt/mode/listclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/ovirt/mode/listdatacenters.pm b/src/apps/virtualization/ovirt/mode/listdatacenters.pm index ef06763e4..6704cf277 100644 --- a/src/apps/virtualization/ovirt/mode/listdatacenters.pm +++ b/src/apps/virtualization/ovirt/mode/listdatacenters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/ovirt/mode/listhosts.pm b/src/apps/virtualization/ovirt/mode/listhosts.pm index 739d854fc..6a7728b0d 100644 --- a/src/apps/virtualization/ovirt/mode/listhosts.pm +++ b/src/apps/virtualization/ovirt/mode/listhosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/virtualization/ovirt/plugin.pm b/src/apps/virtualization/ovirt/plugin.pm index e8310bfb8..8a36ca893 100644 --- a/src/apps/virtualization/ovirt/plugin.pm +++ b/src/apps/virtualization/ovirt/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/custom/connector.pm b/src/apps/vmware/connector/custom/connector.pm index b81c6edce..e93207c4e 100644 --- a/src/apps/vmware/connector/custom/connector.pm +++ b/src/apps/vmware/connector/custom/connector.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/alarmdatacenter.pm b/src/apps/vmware/connector/mode/alarmdatacenter.pm index 96610a1af..2c0310260 100644 --- a/src/apps/vmware/connector/mode/alarmdatacenter.pm +++ b/src/apps/vmware/connector/mode/alarmdatacenter.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/alarmhost.pm b/src/apps/vmware/connector/mode/alarmhost.pm index 18dce5c1f..d54c211ae 100644 --- a/src/apps/vmware/connector/mode/alarmhost.pm +++ b/src/apps/vmware/connector/mode/alarmhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/countvmhost.pm b/src/apps/vmware/connector/mode/countvmhost.pm index b18c81572..2258547a4 100644 --- a/src/apps/vmware/connector/mode/countvmhost.pm +++ b/src/apps/vmware/connector/mode/countvmhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/cpucluster.pm b/src/apps/vmware/connector/mode/cpucluster.pm index a699c0c26..9f522d33f 100644 --- a/src/apps/vmware/connector/mode/cpucluster.pm +++ b/src/apps/vmware/connector/mode/cpucluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -115,7 +115,7 @@ __END__ =head1 MODE -Check cluster cpu usage. +Check cluster CPU usage. =over 8 diff --git a/src/apps/vmware/connector/mode/cpuhost.pm b/src/apps/vmware/connector/mode/cpuhost.pm index 3c5efdbc2..810a9315d 100644 --- a/src/apps/vmware/connector/mode/cpuhost.pm +++ b/src/apps/vmware/connector/mode/cpuhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ __END__ =head1 MODE -Check ESX cpu usage. +Check ESX CPU usage. =over 8 diff --git a/src/apps/vmware/connector/mode/cpuvm.pm b/src/apps/vmware/connector/mode/cpuvm.pm index 439ea6d5a..6ca365380 100644 --- a/src/apps/vmware/connector/mode/cpuvm.pm +++ b/src/apps/vmware/connector/mode/cpuvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -197,7 +197,7 @@ __END__ =head1 MODE -Check virtual machine cpu usage. +Check virtual machine CPU usage. =over 8 diff --git a/src/apps/vmware/connector/mode/datastorecountvm.pm b/src/apps/vmware/connector/mode/datastorecountvm.pm index 6a39c781d..3df8e70bd 100644 --- a/src/apps/vmware/connector/mode/datastorecountvm.pm +++ b/src/apps/vmware/connector/mode/datastorecountvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/datastorehost.pm b/src/apps/vmware/connector/mode/datastorehost.pm index e1fa4bdd9..50509dabc 100644 --- a/src/apps/vmware/connector/mode/datastorehost.pm +++ b/src/apps/vmware/connector/mode/datastorehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/datastoreio.pm b/src/apps/vmware/connector/mode/datastoreio.pm index 17ffabc72..9b2c432c1 100644 --- a/src/apps/vmware/connector/mode/datastoreio.pm +++ b/src/apps/vmware/connector/mode/datastoreio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/datastoreiops.pm b/src/apps/vmware/connector/mode/datastoreiops.pm index ada9cd1c3..32674f4ce 100644 --- a/src/apps/vmware/connector/mode/datastoreiops.pm +++ b/src/apps/vmware/connector/mode/datastoreiops.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/datastoresnapshot.pm b/src/apps/vmware/connector/mode/datastoresnapshot.pm index 8c122b9bb..3917ad265 100644 --- a/src/apps/vmware/connector/mode/datastoresnapshot.pm +++ b/src/apps/vmware/connector/mode/datastoresnapshot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/datastoreusage.pm b/src/apps/vmware/connector/mode/datastoreusage.pm index 599cb35c9..c6157f023 100644 --- a/src/apps/vmware/connector/mode/datastoreusage.pm +++ b/src/apps/vmware/connector/mode/datastoreusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/datastorevm.pm b/src/apps/vmware/connector/mode/datastorevm.pm index 40fd8c01c..a5941212e 100644 --- a/src/apps/vmware/connector/mode/datastorevm.pm +++ b/src/apps/vmware/connector/mode/datastorevm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/devicevm.pm b/src/apps/vmware/connector/mode/devicevm.pm index 7c2ae4b7e..16a19ef05 100644 --- a/src/apps/vmware/connector/mode/devicevm.pm +++ b/src/apps/vmware/connector/mode/devicevm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/discovery.pm b/src/apps/vmware/connector/mode/discovery.pm index b765fd802..b30e47e23 100644 --- a/src/apps/vmware/connector/mode/discovery.pm +++ b/src/apps/vmware/connector/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/getmap.pm b/src/apps/vmware/connector/mode/getmap.pm index d0e6b0873..b3ea35439 100644 --- a/src/apps/vmware/connector/mode/getmap.pm +++ b/src/apps/vmware/connector/mode/getmap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/healthhost.pm b/src/apps/vmware/connector/mode/healthhost.pm index bb4840159..f87742ba7 100644 --- a/src/apps/vmware/connector/mode/healthhost.pm +++ b/src/apps/vmware/connector/mode/healthhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/licenses.pm b/src/apps/vmware/connector/mode/licenses.pm index c5f5630d5..bf453f8bf 100644 --- a/src/apps/vmware/connector/mode/licenses.pm +++ b/src/apps/vmware/connector/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/limitvm.pm b/src/apps/vmware/connector/mode/limitvm.pm index da7aaada8..bad373eca 100644 --- a/src/apps/vmware/connector/mode/limitvm.pm +++ b/src/apps/vmware/connector/mode/limitvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/listclusters.pm b/src/apps/vmware/connector/mode/listclusters.pm index d3e4909a6..759cd393d 100644 --- a/src/apps/vmware/connector/mode/listclusters.pm +++ b/src/apps/vmware/connector/mode/listclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/listdatacenters.pm b/src/apps/vmware/connector/mode/listdatacenters.pm index 4b415a0a2..8de58d559 100644 --- a/src/apps/vmware/connector/mode/listdatacenters.pm +++ b/src/apps/vmware/connector/mode/listdatacenters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/listdatastores.pm b/src/apps/vmware/connector/mode/listdatastores.pm index 1dadc844a..95709786d 100644 --- a/src/apps/vmware/connector/mode/listdatastores.pm +++ b/src/apps/vmware/connector/mode/listdatastores.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/listnichost.pm b/src/apps/vmware/connector/mode/listnichost.pm index abe1f902f..f79a9b5cf 100644 --- a/src/apps/vmware/connector/mode/listnichost.pm +++ b/src/apps/vmware/connector/mode/listnichost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/maintenancehost.pm b/src/apps/vmware/connector/mode/maintenancehost.pm index 452292849..17272f6bd 100644 --- a/src/apps/vmware/connector/mode/maintenancehost.pm +++ b/src/apps/vmware/connector/mode/maintenancehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/memoryhost.pm b/src/apps/vmware/connector/mode/memoryhost.pm index 950462238..50b385311 100644 --- a/src/apps/vmware/connector/mode/memoryhost.pm +++ b/src/apps/vmware/connector/mode/memoryhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/memoryvm.pm b/src/apps/vmware/connector/mode/memoryvm.pm index e0f5e6a41..430204bad 100644 --- a/src/apps/vmware/connector/mode/memoryvm.pm +++ b/src/apps/vmware/connector/mode/memoryvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/nethost.pm b/src/apps/vmware/connector/mode/nethost.pm index ee6e18a07..0c9e8f888 100644 --- a/src/apps/vmware/connector/mode/nethost.pm +++ b/src/apps/vmware/connector/mode/nethost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/netvm.pm b/src/apps/vmware/connector/mode/netvm.pm index a2c09861e..70d3d5780 100644 --- a/src/apps/vmware/connector/mode/netvm.pm +++ b/src/apps/vmware/connector/mode/netvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/servicehost.pm b/src/apps/vmware/connector/mode/servicehost.pm index 9250cdb35..9e078a9a0 100644 --- a/src/apps/vmware/connector/mode/servicehost.pm +++ b/src/apps/vmware/connector/mode/servicehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/snapshotvm.pm b/src/apps/vmware/connector/mode/snapshotvm.pm index 385902824..1694ec7e6 100644 --- a/src/apps/vmware/connector/mode/snapshotvm.pm +++ b/src/apps/vmware/connector/mode/snapshotvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/statconnectors.pm b/src/apps/vmware/connector/mode/statconnectors.pm index d61bc6f0e..37583cbff 100644 --- a/src/apps/vmware/connector/mode/statconnectors.pm +++ b/src/apps/vmware/connector/mode/statconnectors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/statuscluster.pm b/src/apps/vmware/connector/mode/statuscluster.pm index bf7ab8c50..02e4a4bb9 100644 --- a/src/apps/vmware/connector/mode/statuscluster.pm +++ b/src/apps/vmware/connector/mode/statuscluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/statushost.pm b/src/apps/vmware/connector/mode/statushost.pm index ad12d7dce..79ea83e45 100644 --- a/src/apps/vmware/connector/mode/statushost.pm +++ b/src/apps/vmware/connector/mode/statushost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/statusvm.pm b/src/apps/vmware/connector/mode/statusvm.pm index c4821812c..f70449ebe 100644 --- a/src/apps/vmware/connector/mode/statusvm.pm +++ b/src/apps/vmware/connector/mode/statusvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/storagehost.pm b/src/apps/vmware/connector/mode/storagehost.pm index aa947de24..6c3ce20d7 100644 --- a/src/apps/vmware/connector/mode/storagehost.pm +++ b/src/apps/vmware/connector/mode/storagehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/swaphost.pm b/src/apps/vmware/connector/mode/swaphost.pm index 0fc11f7d3..1a5029c15 100644 --- a/src/apps/vmware/connector/mode/swaphost.pm +++ b/src/apps/vmware/connector/mode/swaphost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/swapvm.pm b/src/apps/vmware/connector/mode/swapvm.pm index e963bf469..a61b60170 100644 --- a/src/apps/vmware/connector/mode/swapvm.pm +++ b/src/apps/vmware/connector/mode/swapvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/thinprovisioningvm.pm b/src/apps/vmware/connector/mode/thinprovisioningvm.pm index a16130fc4..727bec474 100644 --- a/src/apps/vmware/connector/mode/thinprovisioningvm.pm +++ b/src/apps/vmware/connector/mode/thinprovisioningvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/timehost.pm b/src/apps/vmware/connector/mode/timehost.pm index c6ea9bc5e..3259f61ed 100644 --- a/src/apps/vmware/connector/mode/timehost.pm +++ b/src/apps/vmware/connector/mode/timehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/toolsvm.pm b/src/apps/vmware/connector/mode/toolsvm.pm index 03f7d4be9..d659c49bb 100644 --- a/src/apps/vmware/connector/mode/toolsvm.pm +++ b/src/apps/vmware/connector/mode/toolsvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/uptimehost.pm b/src/apps/vmware/connector/mode/uptimehost.pm index 2a7b40136..206adf183 100644 --- a/src/apps/vmware/connector/mode/uptimehost.pm +++ b/src/apps/vmware/connector/mode/uptimehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/vmoperationcluster.pm b/src/apps/vmware/connector/mode/vmoperationcluster.pm index c9a22df82..f9d3980a0 100644 --- a/src/apps/vmware/connector/mode/vmoperationcluster.pm +++ b/src/apps/vmware/connector/mode/vmoperationcluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/mode/vsanclusterusage.pm b/src/apps/vmware/connector/mode/vsanclusterusage.pm index 579e8bebd..16d622863 100644 --- a/src/apps/vmware/connector/mode/vsanclusterusage.pm +++ b/src/apps/vmware/connector/mode/vsanclusterusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/connector/plugin.pm b/src/apps/vmware/connector/plugin.pm index dc3987022..2734e45a9 100644 --- a/src/apps/vmware/connector/plugin.pm +++ b/src/apps/vmware/connector/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/restapi/custom/api.pm b/src/apps/vmware/vcsa/restapi/custom/api.pm index 1d0839634..ea799420a 100644 --- a/src/apps/vmware/vcsa/restapi/custom/api.pm +++ b/src/apps/vmware/vcsa/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/restapi/mode/health.pm b/src/apps/vmware/vcsa/restapi/mode/health.pm index baed21513..7498dce2b 100644 --- a/src/apps/vmware/vcsa/restapi/mode/health.pm +++ b/src/apps/vmware/vcsa/restapi/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/restapi/plugin.pm b/src/apps/vmware/vcsa/restapi/plugin.pm index 6ee8007f8..d8b49a877 100644 --- a/src/apps/vmware/vcsa/restapi/plugin.pm +++ b/src/apps/vmware/vcsa/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/snmp/mode/cpu.pm b/src/apps/vmware/vcsa/snmp/mode/cpu.pm index e9f3c584f..893514e41 100644 --- a/src/apps/vmware/vcsa/snmp/mode/cpu.pm +++ b/src/apps/vmware/vcsa/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -39,7 +39,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU. =over 8 diff --git a/src/apps/vmware/vcsa/snmp/mode/interfaces.pm b/src/apps/vmware/vcsa/snmp/mode/interfaces.pm index 24d89fb30..193b4bbf8 100644 --- a/src/apps/vmware/vcsa/snmp/mode/interfaces.pm +++ b/src/apps/vmware/vcsa/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -177,7 +177,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/apps/vmware/vcsa/snmp/mode/listinterfaces.pm b/src/apps/vmware/vcsa/snmp/mode/listinterfaces.pm index dda210e0d..279c23f9b 100644 --- a/src/apps/vmware/vcsa/snmp/mode/listinterfaces.pm +++ b/src/apps/vmware/vcsa/snmp/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/snmp/mode/memory.pm b/src/apps/vmware/vcsa/snmp/mode/memory.pm index f4b1a0d2a..a431fe04a 100644 --- a/src/apps/vmware/vcsa/snmp/mode/memory.pm +++ b/src/apps/vmware/vcsa/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/snmp/mode/storage.pm b/src/apps/vmware/vcsa/snmp/mode/storage.pm index 7f6581494..2775517fc 100644 --- a/src/apps/vmware/vcsa/snmp/mode/storage.pm +++ b/src/apps/vmware/vcsa/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -110,7 +110,7 @@ Example: adding --display-transform-src='dev' --display-transform-dst='run' wil =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--space-reservation> diff --git a/src/apps/vmware/vcsa/snmp/mode/uptime.pm b/src/apps/vmware/vcsa/snmp/mode/uptime.pm index 95022970f..641e108d9 100644 --- a/src/apps/vmware/vcsa/snmp/mode/uptime.pm +++ b/src/apps/vmware/vcsa/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/vcsa/snmp/plugin.pm b/src/apps/vmware/vcsa/snmp/plugin.pm index 7f7920649..3a4d112cb 100644 --- a/src/apps/vmware/vcsa/snmp/plugin.pm +++ b/src/apps/vmware/vcsa/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/cim_card.pm b/src/apps/vmware/wsman/mode/components/cim_card.pm index e02cdd488..ee05dc8ca 100644 --- a/src/apps/vmware/wsman/mode/components/cim_card.pm +++ b/src/apps/vmware/wsman/mode/components/cim_card.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/cim_computersystem.pm b/src/apps/vmware/wsman/mode/components/cim_computersystem.pm index 8d5caeba6..27ed2c917 100644 --- a/src/apps/vmware/wsman/mode/components/cim_computersystem.pm +++ b/src/apps/vmware/wsman/mode/components/cim_computersystem.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/cim_memory.pm b/src/apps/vmware/wsman/mode/components/cim_memory.pm index 4c3cb4b75..93698c782 100644 --- a/src/apps/vmware/wsman/mode/components/cim_memory.pm +++ b/src/apps/vmware/wsman/mode/components/cim_memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/cim_numericsensor.pm b/src/apps/vmware/wsman/mode/components/cim_numericsensor.pm index 6d787e17c..fc4ab053b 100644 --- a/src/apps/vmware/wsman/mode/components/cim_numericsensor.pm +++ b/src/apps/vmware/wsman/mode/components/cim_numericsensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/cim_processor.pm b/src/apps/vmware/wsman/mode/components/cim_processor.pm index a76c89123..55d5a5e69 100644 --- a/src/apps/vmware/wsman/mode/components/cim_processor.pm +++ b/src/apps/vmware/wsman/mode/components/cim_processor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/cim_recordlog.pm b/src/apps/vmware/wsman/mode/components/cim_recordlog.pm index 37cf8ec74..08f14b0dc 100644 --- a/src/apps/vmware/wsman/mode/components/cim_recordlog.pm +++ b/src/apps/vmware/wsman/mode/components/cim_recordlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/omc_discretesensor.pm b/src/apps/vmware/wsman/mode/components/omc_discretesensor.pm index 3e84d3c4d..abe79f5ac 100644 --- a/src/apps/vmware/wsman/mode/components/omc_discretesensor.pm +++ b/src/apps/vmware/wsman/mode/components/omc_discretesensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/omc_fan.pm b/src/apps/vmware/wsman/mode/components/omc_fan.pm index 3ebe5d40d..6365d1681 100644 --- a/src/apps/vmware/wsman/mode/components/omc_fan.pm +++ b/src/apps/vmware/wsman/mode/components/omc_fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/omc_psu.pm b/src/apps/vmware/wsman/mode/components/omc_psu.pm index 9285df07b..529ee0d93 100644 --- a/src/apps/vmware/wsman/mode/components/omc_psu.pm +++ b/src/apps/vmware/wsman/mode/components/omc_psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/resources.pm b/src/apps/vmware/wsman/mode/components/resources.pm index 05a174d1b..8d4f330d3 100644 --- a/src/apps/vmware/wsman/mode/components/resources.pm +++ b/src/apps/vmware/wsman/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/vmware_battery.pm b/src/apps/vmware/wsman/mode/components/vmware_battery.pm index 0b2a0597e..3b8c40307 100644 --- a/src/apps/vmware/wsman/mode/components/vmware_battery.pm +++ b/src/apps/vmware/wsman/mode/components/vmware_battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/vmware_controller.pm b/src/apps/vmware/wsman/mode/components/vmware_controller.pm index d29abede1..c600853bf 100644 --- a/src/apps/vmware/wsman/mode/components/vmware_controller.pm +++ b/src/apps/vmware/wsman/mode/components/vmware_controller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/vmware_sassataport.pm b/src/apps/vmware/wsman/mode/components/vmware_sassataport.pm index 79c1cb3f0..3576cf8c7 100644 --- a/src/apps/vmware/wsman/mode/components/vmware_sassataport.pm +++ b/src/apps/vmware/wsman/mode/components/vmware_sassataport.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/vmware_storageextent.pm b/src/apps/vmware/wsman/mode/components/vmware_storageextent.pm index a99123fc7..59767d965 100644 --- a/src/apps/vmware/wsman/mode/components/vmware_storageextent.pm +++ b/src/apps/vmware/wsman/mode/components/vmware_storageextent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/components/vmware_storagevolume.pm b/src/apps/vmware/wsman/mode/components/vmware_storagevolume.pm index 66ab0a493..977fe5f0d 100644 --- a/src/apps/vmware/wsman/mode/components/vmware_storagevolume.pm +++ b/src/apps/vmware/wsman/mode/components/vmware_storagevolume.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/mode/hardware.pm b/src/apps/vmware/wsman/mode/hardware.pm index 7915cb2b7..5016e1a9b 100644 --- a/src/apps/vmware/wsman/mode/hardware.pm +++ b/src/apps/vmware/wsman/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vmware/wsman/plugin.pm b/src/apps/vmware/wsman/plugin.pm index 6e8fe1f42..db46374b4 100644 --- a/src/apps/vmware/wsman/plugin.pm +++ b/src/apps/vmware/wsman/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/3cx/restapi/custom/api.pm b/src/apps/voip/3cx/restapi/custom/api.pm index b5e9cc092..d00b71ce1 100644 --- a/src/apps/voip/3cx/restapi/custom/api.pm +++ b/src/apps/voip/3cx/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/3cx/restapi/mode/extension.pm b/src/apps/voip/3cx/restapi/mode/extension.pm index 81d2796e4..f7e934bc9 100644 --- a/src/apps/voip/3cx/restapi/mode/extension.pm +++ b/src/apps/voip/3cx/restapi/mode/extension.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/3cx/restapi/mode/system.pm b/src/apps/voip/3cx/restapi/mode/system.pm index 3422ae13f..5d3d018ed 100644 --- a/src/apps/voip/3cx/restapi/mode/system.pm +++ b/src/apps/voip/3cx/restapi/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/3cx/restapi/plugin.pm b/src/apps/voip/3cx/restapi/plugin.pm index c4408292f..1eb2f2f8c 100644 --- a/src/apps/voip/3cx/restapi/plugin.pm +++ b/src/apps/voip/3cx/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/ami/custom/api.pm b/src/apps/voip/asterisk/ami/custom/api.pm index cc25309e1..a1c440aad 100644 --- a/src/apps/voip/asterisk/ami/custom/api.pm +++ b/src/apps/voip/asterisk/ami/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/ami/mode/channelusage.pm b/src/apps/voip/asterisk/ami/mode/channelusage.pm index e783d59f8..cdcdef927 100644 --- a/src/apps/voip/asterisk/ami/mode/channelusage.pm +++ b/src/apps/voip/asterisk/ami/mode/channelusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/ami/mode/dahdistatus.pm b/src/apps/voip/asterisk/ami/mode/dahdistatus.pm index 2267f4a4e..2823bc63a 100644 --- a/src/apps/voip/asterisk/ami/mode/dahdistatus.pm +++ b/src/apps/voip/asterisk/ami/mode/dahdistatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/ami/mode/sippeersusage.pm b/src/apps/voip/asterisk/ami/mode/sippeersusage.pm index 5552087d3..b5d60dfe0 100644 --- a/src/apps/voip/asterisk/ami/mode/sippeersusage.pm +++ b/src/apps/voip/asterisk/ami/mode/sippeersusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/ami/plugin.pm b/src/apps/voip/asterisk/ami/plugin.pm index 61d515bb3..c78033261 100644 --- a/src/apps/voip/asterisk/ami/plugin.pm +++ b/src/apps/voip/asterisk/ami/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/snmp/mode/channelusage.pm b/src/apps/voip/asterisk/snmp/mode/channelusage.pm index 2b70855eb..68b0ce0b1 100644 --- a/src/apps/voip/asterisk/snmp/mode/channelusage.pm +++ b/src/apps/voip/asterisk/snmp/mode/channelusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/asterisk/snmp/plugin.pm b/src/apps/voip/asterisk/snmp/plugin.pm index 395cffeb4..9f2cbb716 100644 --- a/src/apps/voip/asterisk/snmp/plugin.pm +++ b/src/apps/voip/asterisk/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/cisco/meetingplace/mode/audiolicenses.pm b/src/apps/voip/cisco/meetingplace/mode/audiolicenses.pm index c27b9f1f2..1ed174176 100644 --- a/src/apps/voip/cisco/meetingplace/mode/audiolicenses.pm +++ b/src/apps/voip/cisco/meetingplace/mode/audiolicenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/cisco/meetingplace/mode/audioports.pm b/src/apps/voip/cisco/meetingplace/mode/audioports.pm index 950c07179..590a2e66e 100644 --- a/src/apps/voip/cisco/meetingplace/mode/audioports.pm +++ b/src/apps/voip/cisco/meetingplace/mode/audioports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/cisco/meetingplace/mode/videolicenses.pm b/src/apps/voip/cisco/meetingplace/mode/videolicenses.pm index f7d708ef4..f1b827d51 100644 --- a/src/apps/voip/cisco/meetingplace/mode/videolicenses.pm +++ b/src/apps/voip/cisco/meetingplace/mode/videolicenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/cisco/meetingplace/mode/videoports.pm b/src/apps/voip/cisco/meetingplace/mode/videoports.pm index f608d7b73..490807172 100644 --- a/src/apps/voip/cisco/meetingplace/mode/videoports.pm +++ b/src/apps/voip/cisco/meetingplace/mode/videoports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/voip/cisco/meetingplace/plugin.pm b/src/apps/voip/cisco/meetingplace/plugin.pm index 811619db9..e3d0856b2 100644 --- a/src/apps/voip/cisco/meetingplace/plugin.pm +++ b/src/apps/voip/cisco/meetingplace/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vtom/restapi/custom/api.pm b/src/apps/vtom/restapi/custom/api.pm index b3a1b93a9..dcda982d9 100644 --- a/src/apps/vtom/restapi/custom/api.pm +++ b/src/apps/vtom/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vtom/restapi/custom/legacy.pm b/src/apps/vtom/restapi/custom/legacy.pm index defa8dcdf..b229e93db 100644 --- a/src/apps/vtom/restapi/custom/legacy.pm +++ b/src/apps/vtom/restapi/custom/legacy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vtom/restapi/mode/cache.pm b/src/apps/vtom/restapi/mode/cache.pm index c272f78a3..65215ff78 100644 --- a/src/apps/vtom/restapi/mode/cache.pm +++ b/src/apps/vtom/restapi/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vtom/restapi/mode/jobs.pm b/src/apps/vtom/restapi/mode/jobs.pm index c1054b951..f41100d71 100644 --- a/src/apps/vtom/restapi/mode/jobs.pm +++ b/src/apps/vtom/restapi/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vtom/restapi/mode/listjobs.pm b/src/apps/vtom/restapi/mode/listjobs.pm index ed10b68d1..beb978b2e 100644 --- a/src/apps/vtom/restapi/mode/listjobs.pm +++ b/src/apps/vtom/restapi/mode/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/vtom/restapi/plugin.pm b/src/apps/vtom/restapi/plugin.pm index a8dc582f5..d1fee5538 100644 --- a/src/apps/vtom/restapi/plugin.pm +++ b/src/apps/vtom/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wallix/bastion/snmp/mode/license.pm b/src/apps/wallix/bastion/snmp/mode/license.pm index 4bbc36024..76ebb363f 100644 --- a/src/apps/wallix/bastion/snmp/mode/license.pm +++ b/src/apps/wallix/bastion/snmp/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wallix/bastion/snmp/mode/system.pm b/src/apps/wallix/bastion/snmp/mode/system.pm index 3ca2c6672..2c5ee5d27 100644 --- a/src/apps/wallix/bastion/snmp/mode/system.pm +++ b/src/apps/wallix/bastion/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wallix/bastion/snmp/plugin.pm b/src/apps/wallix/bastion/snmp/plugin.pm index f12b2b880..b9a97cde2 100644 --- a/src/apps/wallix/bastion/snmp/plugin.pm +++ b/src/apps/wallix/bastion/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wazuh/restapi/custom/api.pm b/src/apps/wazuh/restapi/custom/api.pm index 0cf8513dc..596bcff88 100644 --- a/src/apps/wazuh/restapi/custom/api.pm +++ b/src/apps/wazuh/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wazuh/restapi/mode/agents.pm b/src/apps/wazuh/restapi/mode/agents.pm index 335f4f94e..a66a96b9d 100644 --- a/src/apps/wazuh/restapi/mode/agents.pm +++ b/src/apps/wazuh/restapi/mode/agents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wazuh/restapi/mode/manager.pm b/src/apps/wazuh/restapi/mode/manager.pm index 195f4abec..b6a62cf8f 100644 --- a/src/apps/wazuh/restapi/mode/manager.pm +++ b/src/apps/wazuh/restapi/mode/manager.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/wazuh/restapi/plugin.pm b/src/apps/wazuh/restapi/plugin.pm index b69b4237b..1a95860e2 100644 --- a/src/apps/wazuh/restapi/plugin.pm +++ b/src/apps/wazuh/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/zoom/restapi/custom/api.pm b/src/apps/zoom/restapi/custom/api.pm index 7b2be016e..c2398088b 100644 --- a/src/apps/zoom/restapi/custom/api.pm +++ b/src/apps/zoom/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/zoom/restapi/mode/listusers.pm b/src/apps/zoom/restapi/mode/listusers.pm index cc2e1521e..ad3a70e39 100644 --- a/src/apps/zoom/restapi/mode/listusers.pm +++ b/src/apps/zoom/restapi/mode/listusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/apps/zoom/restapi/plugin.pm b/src/apps/zoom/restapi/plugin.pm index 16fc820a4..d15bb27b2 100644 --- a/src/apps/zoom/restapi/plugin.pm +++ b/src/apps/zoom/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/hyperledger/exporter/mode/channels.pm b/src/blockchain/hyperledger/exporter/mode/channels.pm index ec645f00f..42847cb71 100644 --- a/src/blockchain/hyperledger/exporter/mode/channels.pm +++ b/src/blockchain/hyperledger/exporter/mode/channels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/hyperledger/exporter/plugin.pm b/src/blockchain/hyperledger/exporter/plugin.pm index 34174dada..0324be68b 100644 --- a/src/blockchain/hyperledger/exporter/plugin.pm +++ b/src/blockchain/hyperledger/exporter/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/ethpoller/custom/api.pm b/src/blockchain/parity/ethpoller/custom/api.pm index faecf183c..cb49f3ecc 100644 --- a/src/blockchain/parity/ethpoller/custom/api.pm +++ b/src/blockchain/parity/ethpoller/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/ethpoller/mode/disk.pm b/src/blockchain/parity/ethpoller/mode/disk.pm index 5b9813b5c..bdaad2254 100644 --- a/src/blockchain/parity/ethpoller/mode/disk.pm +++ b/src/blockchain/parity/ethpoller/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/ethpoller/mode/stats.pm b/src/blockchain/parity/ethpoller/mode/stats.pm index 7a6c17150..156d5373d 100644 --- a/src/blockchain/parity/ethpoller/mode/stats.pm +++ b/src/blockchain/parity/ethpoller/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/ethpoller/mode/tracking.pm b/src/blockchain/parity/ethpoller/mode/tracking.pm index bdd860a2d..83b7f7bdb 100644 --- a/src/blockchain/parity/ethpoller/mode/tracking.pm +++ b/src/blockchain/parity/ethpoller/mode/tracking.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/ethpoller/plugin.pm b/src/blockchain/parity/ethpoller/plugin.pm index f10cf5727..ce7420853 100644 --- a/src/blockchain/parity/ethpoller/plugin.pm +++ b/src/blockchain/parity/ethpoller/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/restapi/custom/api.pm b/src/blockchain/parity/restapi/custom/api.pm index ef6803f3c..69124d464 100644 --- a/src/blockchain/parity/restapi/custom/api.pm +++ b/src/blockchain/parity/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/restapi/mode/eth.pm b/src/blockchain/parity/restapi/mode/eth.pm index a7025ef12..8242493bb 100644 --- a/src/blockchain/parity/restapi/mode/eth.pm +++ b/src/blockchain/parity/restapi/mode/eth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/restapi/mode/infos.pm b/src/blockchain/parity/restapi/mode/infos.pm index 2b54d554d..1228f4aa7 100644 --- a/src/blockchain/parity/restapi/mode/infos.pm +++ b/src/blockchain/parity/restapi/mode/infos.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/restapi/mode/net.pm b/src/blockchain/parity/restapi/mode/net.pm index acf41f5d2..2c6087626 100644 --- a/src/blockchain/parity/restapi/mode/net.pm +++ b/src/blockchain/parity/restapi/mode/net.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/restapi/mode/parity.pm b/src/blockchain/parity/restapi/mode/parity.pm index 555f74425..05cc85213 100644 --- a/src/blockchain/parity/restapi/mode/parity.pm +++ b/src/blockchain/parity/restapi/mode/parity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/blockchain/parity/restapi/plugin.pm b/src/blockchain/parity/restapi/plugin.pm index 3885848ac..9c6d4a4da 100644 --- a/src/blockchain/parity/restapi/plugin.pm +++ b/src/blockchain/parity/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/components/component.pm b/src/centreon/common/adic/tape/snmp/mode/components/component.pm index 17575fb9d..6ae12bb85 100644 --- a/src/centreon/common/adic/tape/snmp/mode/components/component.pm +++ b/src/centreon/common/adic/tape/snmp/mode/components/component.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/components/fan.pm b/src/centreon/common/adic/tape/snmp/mode/components/fan.pm index 7a621a374..de8db770d 100644 --- a/src/centreon/common/adic/tape/snmp/mode/components/fan.pm +++ b/src/centreon/common/adic/tape/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/components/global.pm b/src/centreon/common/adic/tape/snmp/mode/components/global.pm index ae8ccc201..8c4c2e882 100644 --- a/src/centreon/common/adic/tape/snmp/mode/components/global.pm +++ b/src/centreon/common/adic/tape/snmp/mode/components/global.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/components/physicaldrive.pm b/src/centreon/common/adic/tape/snmp/mode/components/physicaldrive.pm index 7cb4e07f1..ab5166a22 100644 --- a/src/centreon/common/adic/tape/snmp/mode/components/physicaldrive.pm +++ b/src/centreon/common/adic/tape/snmp/mode/components/physicaldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/components/subsystem.pm b/src/centreon/common/adic/tape/snmp/mode/components/subsystem.pm index 596573d48..8eaf5d94a 100644 --- a/src/centreon/common/adic/tape/snmp/mode/components/subsystem.pm +++ b/src/centreon/common/adic/tape/snmp/mode/components/subsystem.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/components/temperature.pm b/src/centreon/common/adic/tape/snmp/mode/components/temperature.pm index f432ffb33..8b6306057 100644 --- a/src/centreon/common/adic/tape/snmp/mode/components/temperature.pm +++ b/src/centreon/common/adic/tape/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/adic/tape/snmp/mode/hardware.pm b/src/centreon/common/adic/tape/snmp/mode/hardware.pm index d1aa83d3b..68c6c3e55 100644 --- a/src/centreon/common/adic/tape/snmp/mode/hardware.pm +++ b/src/centreon/common/adic/tape/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/apchannelinterference.pm b/src/centreon/common/airespace/snmp/mode/apchannelinterference.pm index 63b54cdc6..593b1d93e 100644 --- a/src/centreon/common/airespace/snmp/mode/apchannelinterference.pm +++ b/src/centreon/common/airespace/snmp/mode/apchannelinterference.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/apchannelnoise.pm b/src/centreon/common/airespace/snmp/mode/apchannelnoise.pm index 91d864fd9..7e4e93d1d 100644 --- a/src/centreon/common/airespace/snmp/mode/apchannelnoise.pm +++ b/src/centreon/common/airespace/snmp/mode/apchannelnoise.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/apstatus.pm b/src/centreon/common/airespace/snmp/mode/apstatus.pm index 6c5be3d77..4900b344a 100644 --- a/src/centreon/common/airespace/snmp/mode/apstatus.pm +++ b/src/centreon/common/airespace/snmp/mode/apstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/apusers.pm b/src/centreon/common/airespace/snmp/mode/apusers.pm index 4e6f7034c..a8d17ab5b 100644 --- a/src/centreon/common/airespace/snmp/mode/apusers.pm +++ b/src/centreon/common/airespace/snmp/mode/apusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/components/psu.pm b/src/centreon/common/airespace/snmp/mode/components/psu.pm index 428ee6eb7..4929a7ea2 100644 --- a/src/centreon/common/airespace/snmp/mode/components/psu.pm +++ b/src/centreon/common/airespace/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/cpu.pm b/src/centreon/common/airespace/snmp/mode/cpu.pm index 02def5bf0..61b5983bb 100644 --- a/src/centreon/common/airespace/snmp/mode/cpu.pm +++ b/src/centreon/common/airespace/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -73,7 +73,7 @@ __END__ =head1 MODE -Check cpu usage (AIRESPACE-SWITCHING-MIB). +Check CPU usage (AIRESPACE-SWITCHING-MIB). =over 8 diff --git a/src/centreon/common/airespace/snmp/mode/discovery.pm b/src/centreon/common/airespace/snmp/mode/discovery.pm index 4b006adc9..48018f415 100644 --- a/src/centreon/common/airespace/snmp/mode/discovery.pm +++ b/src/centreon/common/airespace/snmp/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/hardware.pm b/src/centreon/common/airespace/snmp/mode/hardware.pm index 0a8e276bf..ef4e0dfe4 100644 --- a/src/centreon/common/airespace/snmp/mode/hardware.pm +++ b/src/centreon/common/airespace/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/listaps.pm b/src/centreon/common/airespace/snmp/mode/listaps.pm index 25713863b..1b6916401 100644 --- a/src/centreon/common/airespace/snmp/mode/listaps.pm +++ b/src/centreon/common/airespace/snmp/mode/listaps.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/listgroups.pm b/src/centreon/common/airespace/snmp/mode/listgroups.pm index ecc93e1f4..2a8c1c0ce 100644 --- a/src/centreon/common/airespace/snmp/mode/listgroups.pm +++ b/src/centreon/common/airespace/snmp/mode/listgroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/listradiusaccservers.pm b/src/centreon/common/airespace/snmp/mode/listradiusaccservers.pm index 6d14c9b80..426400bad 100644 --- a/src/centreon/common/airespace/snmp/mode/listradiusaccservers.pm +++ b/src/centreon/common/airespace/snmp/mode/listradiusaccservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/listradiusauthservers.pm b/src/centreon/common/airespace/snmp/mode/listradiusauthservers.pm index 4deba68e0..105f406a6 100644 --- a/src/centreon/common/airespace/snmp/mode/listradiusauthservers.pm +++ b/src/centreon/common/airespace/snmp/mode/listradiusauthservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/memory.pm b/src/centreon/common/airespace/snmp/mode/memory.pm index 34fcb7cf5..d267012ef 100644 --- a/src/centreon/common/airespace/snmp/mode/memory.pm +++ b/src/centreon/common/airespace/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/radiusaccservers.pm b/src/centreon/common/airespace/snmp/mode/radiusaccservers.pm index 195c1b62c..77b5b5a06 100644 --- a/src/centreon/common/airespace/snmp/mode/radiusaccservers.pm +++ b/src/centreon/common/airespace/snmp/mode/radiusaccservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/airespace/snmp/mode/radiusauthservers.pm b/src/centreon/common/airespace/snmp/mode/radiusauthservers.pm index c708d0fec..0b985e501 100644 --- a/src/centreon/common/airespace/snmp/mode/radiusauthservers.pm +++ b/src/centreon/common/airespace/snmp/mode/radiusauthservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/apconnections.pm b/src/centreon/common/aruba/snmp/mode/apconnections.pm index 5efe3102f..c22a441fd 100644 --- a/src/centreon/common/aruba/snmp/mode/apconnections.pm +++ b/src/centreon/common/aruba/snmp/mode/apconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/apssidstatistics.pm b/src/centreon/common/aruba/snmp/mode/apssidstatistics.pm index 753497e3d..12dfaf3b2 100644 --- a/src/centreon/common/aruba/snmp/mode/apssidstatistics.pm +++ b/src/centreon/common/aruba/snmp/mode/apssidstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/apstatus.pm b/src/centreon/common/aruba/snmp/mode/apstatus.pm index 29b9cb4de..2022c25a6 100644 --- a/src/centreon/common/aruba/snmp/mode/apstatus.pm +++ b/src/centreon/common/aruba/snmp/mode/apstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/apusers.pm b/src/centreon/common/aruba/snmp/mode/apusers.pm index 16ec6189b..0519968cf 100644 --- a/src/centreon/common/aruba/snmp/mode/apusers.pm +++ b/src/centreon/common/aruba/snmp/mode/apusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/components/fan.pm b/src/centreon/common/aruba/snmp/mode/components/fan.pm index 939a44442..1c0e313dc 100644 --- a/src/centreon/common/aruba/snmp/mode/components/fan.pm +++ b/src/centreon/common/aruba/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/components/module.pm b/src/centreon/common/aruba/snmp/mode/components/module.pm index d5ea4e9c0..7d88af145 100644 --- a/src/centreon/common/aruba/snmp/mode/components/module.pm +++ b/src/centreon/common/aruba/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/components/psu.pm b/src/centreon/common/aruba/snmp/mode/components/psu.pm index d39274b3c..fd899df66 100644 --- a/src/centreon/common/aruba/snmp/mode/components/psu.pm +++ b/src/centreon/common/aruba/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/controllerstatus.pm b/src/centreon/common/aruba/snmp/mode/controllerstatus.pm index ab5389104..40446a0ef 100644 --- a/src/centreon/common/aruba/snmp/mode/controllerstatus.pm +++ b/src/centreon/common/aruba/snmp/mode/controllerstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/cpu.pm b/src/centreon/common/aruba/snmp/mode/cpu.pm index f786eb3b9..8e1269f30 100644 --- a/src/centreon/common/aruba/snmp/mode/cpu.pm +++ b/src/centreon/common/aruba/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/discovery.pm b/src/centreon/common/aruba/snmp/mode/discovery.pm index b5c89574d..77f1abd0e 100644 --- a/src/centreon/common/aruba/snmp/mode/discovery.pm +++ b/src/centreon/common/aruba/snmp/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/hardware.pm b/src/centreon/common/aruba/snmp/mode/hardware.pm index 2707a97f6..1e0713187 100644 --- a/src/centreon/common/aruba/snmp/mode/hardware.pm +++ b/src/centreon/common/aruba/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/license.pm b/src/centreon/common/aruba/snmp/mode/license.pm index 13860ebb6..fcce0b5d2 100644 --- a/src/centreon/common/aruba/snmp/mode/license.pm +++ b/src/centreon/common/aruba/snmp/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/memory.pm b/src/centreon/common/aruba/snmp/mode/memory.pm index 4a2e4df7a..80106d0c9 100644 --- a/src/centreon/common/aruba/snmp/mode/memory.pm +++ b/src/centreon/common/aruba/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/aruba/snmp/mode/storage.pm b/src/centreon/common/aruba/snmp/mode/storage.pm index 70d519302..9d8c9c230 100644 --- a/src/centreon/common/aruba/snmp/mode/storage.pm +++ b/src/centreon/common/aruba/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/avaya/snmp/mode/cpu.pm b/src/centreon/common/avaya/snmp/mode/cpu.pm index 2de06f2be..1395a5875 100644 --- a/src/centreon/common/avaya/snmp/mode/cpu.pm +++ b/src/centreon/common/avaya/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/avaya/snmp/mode/memory.pm b/src/centreon/common/avaya/snmp/mode/memory.pm index 808a57c21..771e5ee53 100644 --- a/src/centreon/common/avaya/snmp/mode/memory.pm +++ b/src/centreon/common/avaya/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/clusterstatus.pm b/src/centreon/common/bluearc/snmp/mode/clusterstatus.pm index e5962f860..62ca90f90 100644 --- a/src/centreon/common/bluearc/snmp/mode/clusterstatus.pm +++ b/src/centreon/common/bluearc/snmp/mode/clusterstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/components/battery.pm b/src/centreon/common/bluearc/snmp/mode/components/battery.pm index d64b36e06..1f6247830 100644 --- a/src/centreon/common/bluearc/snmp/mode/components/battery.pm +++ b/src/centreon/common/bluearc/snmp/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/components/fan.pm b/src/centreon/common/bluearc/snmp/mode/components/fan.pm index ccc5757ae..b288629b0 100644 --- a/src/centreon/common/bluearc/snmp/mode/components/fan.pm +++ b/src/centreon/common/bluearc/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/components/psu.pm b/src/centreon/common/bluearc/snmp/mode/components/psu.pm index 4c82e2ab3..af9164000 100644 --- a/src/centreon/common/bluearc/snmp/mode/components/psu.pm +++ b/src/centreon/common/bluearc/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/components/sysdrive.pm b/src/centreon/common/bluearc/snmp/mode/components/sysdrive.pm index 0e0b2b3ae..aa95fa6b6 100644 --- a/src/centreon/common/bluearc/snmp/mode/components/sysdrive.pm +++ b/src/centreon/common/bluearc/snmp/mode/components/sysdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/components/temperature.pm b/src/centreon/common/bluearc/snmp/mode/components/temperature.pm index b51c91e08..eda4c37ca 100644 --- a/src/centreon/common/bluearc/snmp/mode/components/temperature.pm +++ b/src/centreon/common/bluearc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/hardware.pm b/src/centreon/common/bluearc/snmp/mode/hardware.pm index 4bb5bb177..6769df172 100644 --- a/src/centreon/common/bluearc/snmp/mode/hardware.pm +++ b/src/centreon/common/bluearc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/interfaces.pm b/src/centreon/common/bluearc/snmp/mode/interfaces.pm index 62550ccd1..70b499717 100644 --- a/src/centreon/common/bluearc/snmp/mode/interfaces.pm +++ b/src/centreon/common/bluearc/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -185,7 +185,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/centreon/common/bluearc/snmp/mode/listinterfaces.pm b/src/centreon/common/bluearc/snmp/mode/listinterfaces.pm index 377c77f2c..8174d154c 100644 --- a/src/centreon/common/bluearc/snmp/mode/listinterfaces.pm +++ b/src/centreon/common/bluearc/snmp/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/listvolumes.pm b/src/centreon/common/bluearc/snmp/mode/listvolumes.pm index a129c4039..19cd80a0b 100644 --- a/src/centreon/common/bluearc/snmp/mode/listvolumes.pm +++ b/src/centreon/common/bluearc/snmp/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/virtualvolumesquotas.pm b/src/centreon/common/bluearc/snmp/mode/virtualvolumesquotas.pm index 29852961b..8ed0d34f5 100644 --- a/src/centreon/common/bluearc/snmp/mode/virtualvolumesquotas.pm +++ b/src/centreon/common/bluearc/snmp/mode/virtualvolumesquotas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/bluearc/snmp/mode/volumeusage.pm b/src/centreon/common/bluearc/snmp/mode/volumeusage.pm index 9c1903da6..ddc3eff63 100644 --- a/src/centreon/common/bluearc/snmp/mode/volumeusage.pm +++ b/src/centreon/common/bluearc/snmp/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/fastpath/snmp/mode/components/fan.pm b/src/centreon/common/broadcom/fastpath/snmp/mode/components/fan.pm index 527467076..1fd2a38c6 100644 --- a/src/centreon/common/broadcom/fastpath/snmp/mode/components/fan.pm +++ b/src/centreon/common/broadcom/fastpath/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/fastpath/snmp/mode/components/psu.pm b/src/centreon/common/broadcom/fastpath/snmp/mode/components/psu.pm index 3814e2b1a..84cfb9019 100644 --- a/src/centreon/common/broadcom/fastpath/snmp/mode/components/psu.pm +++ b/src/centreon/common/broadcom/fastpath/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/fastpath/snmp/mode/components/temperature.pm b/src/centreon/common/broadcom/fastpath/snmp/mode/components/temperature.pm index f6954d100..50556d820 100644 --- a/src/centreon/common/broadcom/fastpath/snmp/mode/components/temperature.pm +++ b/src/centreon/common/broadcom/fastpath/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/fastpath/snmp/mode/cpu.pm b/src/centreon/common/broadcom/fastpath/snmp/mode/cpu.pm index 7146aeb0f..79a8a9310 100644 --- a/src/centreon/common/broadcom/fastpath/snmp/mode/cpu.pm +++ b/src/centreon/common/broadcom/fastpath/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/fastpath/snmp/mode/hardware.pm b/src/centreon/common/broadcom/fastpath/snmp/mode/hardware.pm index 516c2d347..c3c63724b 100644 --- a/src/centreon/common/broadcom/fastpath/snmp/mode/hardware.pm +++ b/src/centreon/common/broadcom/fastpath/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/fastpath/snmp/mode/memory.pm b/src/centreon/common/broadcom/fastpath/snmp/mode/memory.pm index af311a900..b27d52ac6 100644 --- a/src/centreon/common/broadcom/fastpath/snmp/mode/memory.pm +++ b/src/centreon/common/broadcom/fastpath/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/alarm.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/alarm.pm index f77036770..2940de478 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/alarm.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/alarm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/fan.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/fan.pm index dd42ef0fc..be2da51d2 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/fan.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/pdrive.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/pdrive.pm index 1591619a3..47df36955 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/pdrive.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/pdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/psu.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/psu.pm index 5747f4d40..7c6ef13ae 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/psu.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/sim.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/sim.pm index 05fb7b251..4a58440f6 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/sim.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/sim.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/slot.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/slot.pm index c858ce4ed..5eea7e1cb 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/slot.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/slot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/temperature.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/temperature.pm index baddf50b2..23b5ea3bb 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/temperature.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/components/vdrive.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/components/vdrive.pm index f8957798b..5b17bc2f1 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/components/vdrive.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/components/vdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/broadcom/megaraid/snmp/mode/hardware.pm b/src/centreon/common/broadcom/megaraid/snmp/mode/hardware.pm index 4af1aa247..d2b311e03 100644 --- a/src/centreon/common/broadcom/megaraid/snmp/mode/hardware.pm +++ b/src/centreon/common/broadcom/megaraid/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/components/fan.pm b/src/centreon/common/cisco/ironport/snmp/mode/components/fan.pm index 6970ae420..ce46e1157 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/components/fan.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/components/psu.pm b/src/centreon/common/cisco/ironport/snmp/mode/components/psu.pm index f23396e5d..eecfccc4c 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/components/psu.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/components/raid.pm b/src/centreon/common/cisco/ironport/snmp/mode/components/raid.pm index 2e233561f..9219c0771 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/components/raid.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/components/temperature.pm b/src/centreon/common/cisco/ironport/snmp/mode/components/temperature.pm index 49064fb2b..117071162 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/components/temperature.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/cpu.pm b/src/centreon/common/cisco/ironport/snmp/mode/cpu.pm index 8c99fd64d..8df319dd2 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/cpu.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -84,7 +84,7 @@ __END__ =head1 MODE -Check cpu usage of web security and mail (ASYNCOS-MAIL-MIB, ASYNCOSWEBSECURITYAPPLIANCE-MIB). +Check CPU usage of web security and mail (ASYNCOS-MAIL-MIB, ASYNCOSWEBSECURITYAPPLIANCE-MIB). =over 8 diff --git a/src/centreon/common/cisco/ironport/snmp/mode/hardware.pm b/src/centreon/common/cisco/ironport/snmp/mode/hardware.pm index cabc43b6f..f7c99b8c1 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/hardware.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/mailusage.pm b/src/centreon/common/cisco/ironport/snmp/mode/mailusage.pm index 840d9e0e5..a0f8872ce 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/mailusage.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/mailusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/memory.pm b/src/centreon/common/cisco/ironport/snmp/mode/memory.pm index a9f4280e6..64a813214 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/memory.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/snmp/mode/proxyusage.pm b/src/centreon/common/cisco/ironport/snmp/mode/proxyusage.pm index a72abcacd..e8edc8b91 100644 --- a/src/centreon/common/cisco/ironport/snmp/mode/proxyusage.pm +++ b/src/centreon/common/cisco/ironport/snmp/mode/proxyusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/ironport/xmlapi/mode/systemusage.pm b/src/centreon/common/cisco/ironport/xmlapi/mode/systemusage.pm index 76a346fba..13b161617 100644 --- a/src/centreon/common/cisco/ironport/xmlapi/mode/systemusage.pm +++ b/src/centreon/common/cisco/ironport/xmlapi/mode/systemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/fan.pm b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/fan.pm index cb6985f97..c4833081e 100644 --- a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/fan.pm +++ b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/psu.pm b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/psu.pm index 3e377071b..c3d354365 100644 --- a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/psu.pm +++ b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/resources.pm b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/resources.pm index 2f5447f69..b503d54c6 100644 --- a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/resources.pm +++ b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/temperature.pm b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/temperature.pm index e0235cf41..c42bb2fb4 100644 --- a/src/centreon/common/cisco/smallbusiness/snmp/mode/components/temperature.pm +++ b/src/centreon/common/cisco/smallbusiness/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/smallbusiness/snmp/mode/cpu.pm b/src/centreon/common/cisco/smallbusiness/snmp/mode/cpu.pm index 86b00cdbe..7fc89033d 100644 --- a/src/centreon/common/cisco/smallbusiness/snmp/mode/cpu.pm +++ b/src/centreon/common/cisco/smallbusiness/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -126,7 +126,7 @@ __END__ =head1 MODE -Check cpu usage (CISCOSBmng.mib). +Check CPU usage (CISCOSBmng.mib). =over 8 diff --git a/src/centreon/common/cisco/smallbusiness/snmp/mode/environment.pm b/src/centreon/common/cisco/smallbusiness/snmp/mode/environment.pm index cb9b02b95..3c25b6085 100644 --- a/src/centreon/common/cisco/smallbusiness/snmp/mode/environment.pm +++ b/src/centreon/common/cisco/smallbusiness/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/aaaservers.pm b/src/centreon/common/cisco/standard/snmp/mode/aaaservers.pm index 354d89bd5..8c1472078 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/aaaservers.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/aaaservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/bgp.pm b/src/centreon/common/cisco/standard/snmp/mode/bgp.pm index 43bfe7ac9..16a7f49e2 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/bgp.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/bgp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/fan.pm b/src/centreon/common/cisco/standard/snmp/mode/components/fan.pm index 875f14ad8..be0b7abd1 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/fan.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/module.pm b/src/centreon/common/cisco/standard/snmp/mode/components/module.pm index e36d3e691..9a848f1e4 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/module.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/physical.pm b/src/centreon/common/cisco/standard/snmp/mode/components/physical.pm index 2d023ecb0..6a0c38f90 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/physical.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/physical.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/psu.pm b/src/centreon/common/cisco/standard/snmp/mode/components/psu.pm index 03d803919..4e833a8f7 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/psu.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/sensor.pm b/src/centreon/common/cisco/standard/snmp/mode/components/sensor.pm index 6e0e217cd..fc37909a3 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/sensor.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/temperature.pm b/src/centreon/common/cisco/standard/snmp/mode/components/temperature.pm index 0906079b0..f4f12634d 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/temperature.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/components/voltage.pm b/src/centreon/common/cisco/standard/snmp/mode/components/voltage.pm index df9a5231e..df7254c76 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/components/voltage.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/configuration.pm b/src/centreon/common/cisco/standard/snmp/mode/configuration.pm index a3c304560..ef725981d 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/configuration.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/configuration.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/cpu.pm b/src/centreon/common/cisco/standard/snmp/mode/cpu.pm index 556322236..b845d8e2d 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/cpu.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -265,13 +265,13 @@ __END__ =head1 MODE -Check cpu usage (CISCO-PROCESS-MIB and CISCO-SYSTEM-EXT-MIB). +Check CPU usage (CISCO-PROCESS-MIB and CISCO-SYSTEM-EXT-MIB). =over 8 =item B<--check-order> -Check cpu in standard cisco mib. If you have some issue (wrong cpu information in a specific mib), you can change the order +Check CPU in standard cisco mib. If you have some issue (wrong CPU information in a specific mib), you can change the order (default: 'process,old_sys,system_ext'). =item B<--warning-*> B<--critical-*> diff --git a/src/centreon/common/cisco/standard/snmp/mode/environment.pm b/src/centreon/common/cisco/standard/snmp/mode/environment.pm index 9b1a607d6..b8b95818a 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/environment.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/hsrp.pm b/src/centreon/common/cisco/standard/snmp/mode/hsrp.pm index f4700e8c0..4cc5996b0 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/hsrp.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/hsrp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/interfaces.pm b/src/centreon/common/cisco/standard/snmp/mode/interfaces.pm index 5917b1d8f..8fddf4a3f 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/interfaces.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -456,7 +456,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/centreon/common/cisco/standard/snmp/mode/ipsectunnel.pm b/src/centreon/common/cisco/standard/snmp/mode/ipsectunnel.pm index 6e953e5b7..1fc434aa3 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/ipsectunnel.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/ipsectunnel.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/ipsla.pm b/src/centreon/common/cisco/standard/snmp/mode/ipsla.pm index 480971aa3..b995458dd 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/ipsla.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/ipsla.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/listaaaservers.pm b/src/centreon/common/cisco/standard/snmp/mode/listaaaservers.pm index 7e13069b1..98e2e964e 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/listaaaservers.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/listaaaservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/load.pm b/src/centreon/common/cisco/standard/snmp/mode/load.pm index 437bc9fba..9bee27b9f 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/load.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -128,7 +128,7 @@ __END__ =head1 MODE -Check cpu load usage. +Check CPU load. =over 8 diff --git a/src/centreon/common/cisco/standard/snmp/mode/memory.pm b/src/centreon/common/cisco/standard/snmp/mode/memory.pm index 4129cb80c..d4ba5fd3b 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/memory.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/memoryflash.pm b/src/centreon/common/cisco/standard/snmp/mode/memoryflash.pm index 35222e794..3443b60f5 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/memoryflash.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/memoryflash.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/qosusage.pm b/src/centreon/common/cisco/standard/snmp/mode/qosusage.pm index 98517a0b9..df514a3cb 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/qosusage.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/qosusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/sessions.pm b/src/centreon/common/cisco/standard/snmp/mode/sessions.pm index 434b14860..9acc8454e 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/sessions.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/stack.pm b/src/centreon/common/cisco/standard/snmp/mode/stack.pm index b4f779893..fd333f809 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/stack.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/voicecall.pm b/src/centreon/common/cisco/standard/snmp/mode/voicecall.pm index 70dc9ee77..9b1107e55 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/voicecall.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/voicecall.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/vpc.pm b/src/centreon/common/cisco/standard/snmp/mode/vpc.pm index fab0c34cf..f03691f76 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/vpc.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/vpc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/vss.pm b/src/centreon/common/cisco/standard/snmp/mode/vss.pm index 15f7755b9..b0add78c4 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/vss.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/vss.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cisco/standard/snmp/mode/wan3g.pm b/src/centreon/common/cisco/standard/snmp/mode/wan3g.pm index 0ac93a444..863857c38 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/wan3g.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/wan3g.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cps/ups/snmp/mode/batterystatus.pm b/src/centreon/common/cps/ups/snmp/mode/batterystatus.pm index e4807ce12..eed8df0fa 100644 --- a/src/centreon/common/cps/ups/snmp/mode/batterystatus.pm +++ b/src/centreon/common/cps/ups/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cps/ups/snmp/mode/inputlines.pm b/src/centreon/common/cps/ups/snmp/mode/inputlines.pm index 98d319c54..ebeae7d19 100644 --- a/src/centreon/common/cps/ups/snmp/mode/inputlines.pm +++ b/src/centreon/common/cps/ups/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/cps/ups/snmp/mode/outputlines.pm b/src/centreon/common/cps/ups/snmp/mode/outputlines.pm index 2b2276e82..aa2a1ed36 100644 --- a/src/centreon/common/cps/ups/snmp/mode/outputlines.pm +++ b/src/centreon/common/cps/ups/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/dell/fastpath/snmp/mode/components/fan.pm b/src/centreon/common/dell/fastpath/snmp/mode/components/fan.pm index c0a80b37e..b0bcb1917 100644 --- a/src/centreon/common/dell/fastpath/snmp/mode/components/fan.pm +++ b/src/centreon/common/dell/fastpath/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/dell/fastpath/snmp/mode/components/psu.pm b/src/centreon/common/dell/fastpath/snmp/mode/components/psu.pm index e4facf4c1..393ce1af1 100644 --- a/src/centreon/common/dell/fastpath/snmp/mode/components/psu.pm +++ b/src/centreon/common/dell/fastpath/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/dell/fastpath/snmp/mode/components/temperature.pm b/src/centreon/common/dell/fastpath/snmp/mode/components/temperature.pm index d7697344f..d86b377ef 100644 --- a/src/centreon/common/dell/fastpath/snmp/mode/components/temperature.pm +++ b/src/centreon/common/dell/fastpath/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/dell/fastpath/snmp/mode/cpu.pm b/src/centreon/common/dell/fastpath/snmp/mode/cpu.pm index 8efc2d93d..85dc7e181 100644 --- a/src/centreon/common/dell/fastpath/snmp/mode/cpu.pm +++ b/src/centreon/common/dell/fastpath/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -161,7 +161,7 @@ __END__ =head1 MODE -Check cpu usage (FASTPATH-SWITCHING-MIB). +Check CPU usage (FASTPATH-SWITCHING-MIB). =over 8 diff --git a/src/centreon/common/dell/fastpath/snmp/mode/environment.pm b/src/centreon/common/dell/fastpath/snmp/mode/environment.pm index 882a421c6..5b8f6c17d 100644 --- a/src/centreon/common/dell/fastpath/snmp/mode/environment.pm +++ b/src/centreon/common/dell/fastpath/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/dell/fastpath/snmp/mode/memory.pm b/src/centreon/common/dell/fastpath/snmp/mode/memory.pm index 864eeb44f..ad89bb798 100644 --- a/src/centreon/common/dell/fastpath/snmp/mode/memory.pm +++ b/src/centreon/common/dell/fastpath/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/dell/powerconnect3000/mode/globalstatus.pm b/src/centreon/common/dell/powerconnect3000/mode/globalstatus.pm index 26a52b0cf..7cd4ed102 100644 --- a/src/centreon/common/dell/powerconnect3000/mode/globalstatus.pm +++ b/src/centreon/common/dell/powerconnect3000/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/custom/custom.pm b/src/centreon/common/emc/navisphere/custom/custom.pm index b20e244fd..6bfd95308 100644 --- a/src/centreon/common/emc/navisphere/custom/custom.pm +++ b/src/centreon/common/emc/navisphere/custom/custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/cache.pm b/src/centreon/common/emc/navisphere/mode/cache.pm index 5239a3aa4..4d758c84c 100644 --- a/src/centreon/common/emc/navisphere/mode/cache.pm +++ b/src/centreon/common/emc/navisphere/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/controller.pm b/src/centreon/common/emc/navisphere/mode/controller.pm index 4d72abb6d..515cd6d04 100644 --- a/src/centreon/common/emc/navisphere/mode/controller.pm +++ b/src/centreon/common/emc/navisphere/mode/controller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/disk.pm b/src/centreon/common/emc/navisphere/mode/disk.pm index 8507e13d3..b0ba92ab1 100644 --- a/src/centreon/common/emc/navisphere/mode/disk.pm +++ b/src/centreon/common/emc/navisphere/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/faults.pm b/src/centreon/common/emc/navisphere/mode/faults.pm index 4bc1f5901..cbd47bfe2 100644 --- a/src/centreon/common/emc/navisphere/mode/faults.pm +++ b/src/centreon/common/emc/navisphere/mode/faults.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/hbastate.pm b/src/centreon/common/emc/navisphere/mode/hbastate.pm index d1772567a..337db690e 100644 --- a/src/centreon/common/emc/navisphere/mode/hbastate.pm +++ b/src/centreon/common/emc/navisphere/mode/hbastate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/listluns.pm b/src/centreon/common/emc/navisphere/mode/listluns.pm index ec5a5503a..ee07d5f5b 100644 --- a/src/centreon/common/emc/navisphere/mode/listluns.pm +++ b/src/centreon/common/emc/navisphere/mode/listluns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/portstate.pm b/src/centreon/common/emc/navisphere/mode/portstate.pm index 9b0bfe81f..be6904de6 100644 --- a/src/centreon/common/emc/navisphere/mode/portstate.pm +++ b/src/centreon/common/emc/navisphere/mode/portstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/sp.pm b/src/centreon/common/emc/navisphere/mode/sp.pm index 68432488c..c63fa372c 100644 --- a/src/centreon/common/emc/navisphere/mode/sp.pm +++ b/src/centreon/common/emc/navisphere/mode/sp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/battery.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/battery.pm index 6f7829f4c..64f281f3e 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/battery.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/cable.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/cable.pm index d19578dd1..781f95707 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/cable.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/cable.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/cpu.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/cpu.pm index c0971bb5b..c71e54547 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/cpu.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/fan.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/fan.pm index 3822cf2ad..06aca82e8 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/fan.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/iomodule.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/iomodule.pm index 5d6a20430..371f3f261 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/iomodule.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/iomodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/lcc.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/lcc.pm index 44f488c08..b449fb277 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/lcc.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/lcc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/memory.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/memory.pm index 8dda35584..4ae168cb6 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/memory.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/psu.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/psu.pm index 691ca5194..9ee2c14ea 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/psu.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spcomponents/sp.pm b/src/centreon/common/emc/navisphere/mode/spcomponents/sp.pm index 7c6b74569..249bb7f87 100644 --- a/src/centreon/common/emc/navisphere/mode/spcomponents/sp.pm +++ b/src/centreon/common/emc/navisphere/mode/spcomponents/sp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/emc/navisphere/mode/spinfo.pm b/src/centreon/common/emc/navisphere/mode/spinfo.pm index 67c0c3d3a..b250ea41e 100644 --- a/src/centreon/common/emc/navisphere/mode/spinfo.pm +++ b/src/centreon/common/emc/navisphere/mode/spinfo.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/force10/snmp/mode/components/fan.pm b/src/centreon/common/force10/snmp/mode/components/fan.pm index 24b1a9503..1def70018 100644 --- a/src/centreon/common/force10/snmp/mode/components/fan.pm +++ b/src/centreon/common/force10/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/force10/snmp/mode/components/psu.pm b/src/centreon/common/force10/snmp/mode/components/psu.pm index 71390c6e7..0cd9fd833 100644 --- a/src/centreon/common/force10/snmp/mode/components/psu.pm +++ b/src/centreon/common/force10/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/force10/snmp/mode/components/stack.pm b/src/centreon/common/force10/snmp/mode/components/stack.pm index a58548976..63928e10f 100644 --- a/src/centreon/common/force10/snmp/mode/components/stack.pm +++ b/src/centreon/common/force10/snmp/mode/components/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/force10/snmp/mode/cpu.pm b/src/centreon/common/force10/snmp/mode/cpu.pm index ba5d55ddd..e7b4d5f08 100644 --- a/src/centreon/common/force10/snmp/mode/cpu.pm +++ b/src/centreon/common/force10/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -177,7 +177,7 @@ __END__ =head1 MODE -Check cpu usages. +Check CPU usage. =over 8 diff --git a/src/centreon/common/force10/snmp/mode/hardware.pm b/src/centreon/common/force10/snmp/mode/hardware.pm index a1bb4b986..496dba083 100644 --- a/src/centreon/common/force10/snmp/mode/hardware.pm +++ b/src/centreon/common/force10/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/force10/snmp/mode/memory.pm b/src/centreon/common/force10/snmp/mode/memory.pm index 5e9dc7187..a1abe03fc 100644 --- a/src/centreon/common/force10/snmp/mode/memory.pm +++ b/src/centreon/common/force10/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/apusage.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/apusage.pm index 15aa4c61a..ea46fb534 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/apusage.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/apusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/clusterstatus.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/clusterstatus.pm index e63889a98..10a2f0145 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/clusterstatus.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/clusterstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/cpu.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/cpu.pm index 6bd700afc..09b841c53 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/cpu.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -168,7 +168,7 @@ __END__ =head1 MODE -Check system cpu usage (FORTINET-FORTIGATE-MIB). +Check system CPU usage (FORTINET-FORTIGATE-MIB). =over 8 @@ -179,11 +179,11 @@ Can be: 'core', 'average', 'cluster-average'. =item B<--cluster> -Add cluster cpu informations. +Add cluster CPU informations. =item B<--filter-core> -Core cpu to monitor (can be a regexp). +Core CPU to monitor (can be a regexp). =back diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/disk.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/disk.pm index a2fa3b423..b7c8c47e0 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/disk.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/hardware.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/hardware.pm index 6cb83518c..1f81c343e 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/hardware.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/interfaces.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/interfaces.pm index 0cf73615c..8cfffe38f 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/interfaces.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -184,7 +184,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/ipsstats.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/ipsstats.pm index 45a99a61a..6502e39fc 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/ipsstats.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/ipsstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/linkmonitor.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/linkmonitor.pm new file mode 100644 index 000000000..93491259f --- /dev/null +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/linkmonitor.pm @@ -0,0 +1,246 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 centreon::common::fortinet::fortigate::snmp::mode::linkmonitor; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use Digest::MD5 qw(md5_hex); + +sub prefix_output { + my ($self, %options) = @_; + + return sprintf( + "Link monitor '%s' [vdom: %s] [id: %s] ", + $options{instance_value}->{name}, + $options{instance_value}->{vdom}, + $options{instance_value}->{id} + ); +} + +sub custom_signal_perfdata { + my ($self) = @_; + + my $instances = []; + foreach (@{$self->{instance_mode}->{custom_perfdata_instances}}) { + push @$instances, $self->{result_values}->{$_}; + } + + $self->{output}->perfdata_add( + nlabel => $self->{nlabel}, + instances => $instances, + value => $self->{result_values}->{ $self->{key_values}->[0]->{name} }, + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), + min => 0 + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'linkmonitor', type => 1, cb_prefix_output => 'prefix_output', message_multiple => 'All link monitors are ok' } + ]; + + $self->{maps_counters}->{linkmonitor} = [ + { label => 'status', + type => 2, + critical_default => '%{state} eq "dead"', + set => { + key_values => [ { name => 'state' }, { name => 'vdom' }, { name => 'name' }, { name => 'id' } ], + output_template => 'state: %s', + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + }, + { label => 'latency', nlabel => 'linkmonitor.latency.milliseconds', set => { + key_values => [ { name => 'latency' }, { name => 'vdom' }, { name => 'name' }, { name => 'id' } ], + output_template => 'latency: %sms', + closure_custom_perfdata => $self->can('custom_signal_perfdata') + } + }, + { label => 'jitter', nlabel => 'linkmonitor.jitter.milliseconds', set => { + key_values => [ { name => 'jitter' }, { name => 'vdom' }, { name => 'name' }, { name => 'id' } ], + output_template => 'jitter: %sms', + closure_custom_perfdata => $self->can('custom_signal_perfdata') + } + }, + { label => 'packet-loss', nlabel => 'linkmonitor.packet.loss.percentage', set => { + key_values => [ { name => 'packet_loss' }, { name => 'vdom' }, { name => 'name' }, { name => 'id' } ], + output_template => 'packet loss: %.3f%%', + closure_custom_perfdata => $self->can('custom_signal_perfdata') + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-id:s' => { name => 'filter_id' }, + 'filter-name:s' => { name => 'filter_name' }, + 'filter-vdom:s' => { name => 'filter_vdom' }, + 'custom-perfdata-instances:s' => { name => 'custom_perfdata_instances' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + if (!defined($self->{option_results}->{custom_perfdata_instances}) || $self->{option_results}->{custom_perfdata_instances} eq '') { + $self->{option_results}->{custom_perfdata_instances} = '%(name) %(vdom)'; + } + + $self->{custom_perfdata_instances} = $self->custom_perfdata_instances( + option_name => '--custom-perfdata-instances', + instances => $self->{option_results}->{custom_perfdata_instances}, + labels => { name => 1, vdom => 1, id=>1 } + ); +} + +my $mapping_status = { 0 => 'alive', 1 => 'dead' }; + +my $mapping = { + name => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.2' }, # fgLinkMonitorName + state => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.3', map => $mapping_status }, # fgLinkMonitorState + latency => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.4' }, # fgLinkMonitorLatency + jitter => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.5' }, # fgLinkMonitorJitter + packet_loss => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.8' }, # fgLinkMonitorPacketLoss + vdom => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.9' }, # fgLinkMonitorVdom +}; + +my $oid_MappingEntry = '.1.3.6.1.4.1.12356.101.4.8.2.1'; + +sub manage_selection { + my ($self, %options) = @_; + + if ($options{snmp}->is_snmpv1()) { + $self->{output}->add_option_msg(short_msg => "Need to use SNMP v2c or v3."); + $self->{output}->option_exit(); + } + + my $snmp_result = $options{snmp}->get_table( + oid => $oid_MappingEntry, + nothing_quit => 1 + ); + + $self->{linkmonitor} = {}; + foreach my $oid (keys %$snmp_result) { + next if ($oid !~ /^$mapping->{name}->{oid}\.(.*)$/); + my $instance = $1; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + + if (defined($self->{option_results}->{filter_id}) && $self->{option_results}->{filter_id} ne '' && + $instance !~ /$self->{option_results}->{filter_id}/) { + $self->{output}->output_add(long_msg => "With filter-id: $self->{option_results}->{filter_id} - Skipping link monitor '" . $snmp_result->{$oid} . " with id '" . $instance . "'.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $snmp_result->{$oid} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add(long_msg => "With filter-name: $self->{option_results}->{filter_name} - Skipping link monitor '" . $snmp_result->{$oid} . " with id '" . $instance . "'.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_vdom}) && $self->{option_results}->{filter_vdom} ne '' && + $result->{vdom} !~ /$self->{option_results}->{filter_vdom}/) { + $self->{output}->output_add(long_msg => "With filter-vdom: $self->{option_results}->{filter_vdom} - Skipping vdom '" . $result->{vdom} . "'.", debug => 1); + next; + } + + # Remoove the "%" at the end of the result. + chop($result->{packet_loss}); + + $self->{linkmonitor}->{ $instance } = { + id => $instance, + name => $result->{name}, + state => $result->{state}, + latency => $result->{latency}, + jitter => $result->{jitter}, + packet_loss => $result->{packet_loss}, + vdom => $result->{vdom} + }; + + } + + return if (scalar(keys %{$self->{linkmonitor}}) <= 0); + # Returns : OK: if empty => User needs to set up filters to avoid this mysterious OK result. + +} + +1; + +__END__ + +=head1 MODE + +Check link monitor. + +=over 8 + +=item B<--filter-id> + +Filter link monitor by ID (can be a regexp). + +=item B<--filter-name> + +Filter link monitor by name (can be a regexp). + +=item B<--filter-vdom> + +Filter link monitor by virtual domain name (can be a regexp). + +=item B<--custom-perfdata-instances> + +Define perfdata instance (default: '%(name) %(vdom)'). +You can use the following variables: %{name}, %{vdom}, %{id} + +=item B<--unknown-status> + +Define the conditions to match for the status to be UNKNOWN. +You can use the following variables: %{state}, %{vdom}, %{id}, %{name} + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING. +You can use the following variables: %{state}, %{vdom}, %{id}, %{name} + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (Default: '%{state} eq "dead"'). +You can use the following variables: %{state}, %{vdom}, %{id}, %{name} + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'latency', 'jitter', 'packet-loss'. + +=back + +=cut \ No newline at end of file diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/listlinkmonitors.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/listlinkmonitors.pm new file mode 100644 index 000000000..e38675631 --- /dev/null +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/listlinkmonitors.pm @@ -0,0 +1,147 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 centreon::common::fortinet::fortigate::snmp::mode::listlinkmonitors; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; + +my $mapping_status = { 0 => 'alive', 1 => 'dead' }; +my $mapping = { + name => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.2' }, # fgLinkMonitorName + state => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.3', map => $mapping_status }, # fgLinkMonitorState + vdom => { oid => '.1.3.6.1.4.1.12356.101.4.8.2.1.9' } # fgLinkMonitorVdom +}; +my $oid_table = '.1.3.6.1.4.1.12356.101.4.8.2'; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-name:s' => { name => 'filter_name' }, + 'filter-state:s' => { name => 'filter_state' }, + 'filter-vdom:s' => { name => 'filter_vdom' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_table(oid => $oid_table, start => $mapping->{name}, end => $mapping->{state}, nothing_quit => 1); + + foreach my $oid ($options{snmp}->oid_lex_sort(keys %{$snmp_result})) { + next if ($oid !~ /^$mapping->{name}->{oid}\.(.*)$/); + my $instance = $1; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{name} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{name} . "': no matching filter.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_state}) && $self->{option_results}->{filter_state} ne '' && + $result->{state} !~ /$self->{option_results}->{filter_state}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{state} . "': no matching filter.", debug => 1); + next; + } + if (defined($self->{option_results}->{filter_vdom}) && $self->{option_results}->{filter_vdom} ne '' && + $result->{vdom} !~ /$self->{option_results}->{filter_vdom}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{vdom} . "': no matching filter.", debug => 1); + next; + } + push @{$self->{linkmonitor}}, $result; + } +} + +sub run { + my ($self, %options) = @_; + + $self->manage_selection(%options); + + if (scalar(keys @{$self->{linkmonitor}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No link monitor found matching."); + $self->{output}->option_exit(); + } + + foreach (sort @{$self->{linkmonitor}}) { + $self->{output}->output_add(long_msg => sprintf("[Name = %s] [Vdom = %s] [State = %s]", $_->{name}, $_->{vdom}, $_->{state})); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List link monitors:' + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => ['name', 'vdom', 'state']); +} + +sub disco_show { + my ($self, %options) = @_; + + $self->manage_selection(%options); + + foreach (sort @{$self->{linkmonitor}}) { + $self->{output}->add_disco_entry(name => $_->{name}, vdom => $_->{vdom}, state => $_->{state}); + } +} + +1; + +__END__ + +=head1 MODE + +List link monitors. + +=over 8 + +=item B<--filter-name> + +Filter link monitor by name (can be a regexp). + +=item B<--filter-state> + +Filter link monitor by state (can be a regexp). + +=item B<--filter-vdom> + +Filter link monitor by virtual domain name (can be a regexp). + +=back + +=cut \ No newline at end of file diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/listvirtualdomains.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/listvirtualdomains.pm index 543ec0c03..93a8ad6c6 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/listvirtualdomains.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/listvirtualdomains.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/memory.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/memory.pm index 141fcf88c..a731af50a 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/memory.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/sdwan.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/sdwan.pm index 6fc1aa401..7fb29f166 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/sdwan.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/sdwan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/sessions.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/sessions.pm index 1a83de2bb..afd272d19 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/sessions.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/signatures.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/signatures.pm index a7442adda..6960866bd 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/signatures.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/signatures.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/vdomusage.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/vdomusage.pm index b5537b9b2..7927fd72b 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/vdomusage.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/vdomusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/virus.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/virus.pm index 36988e1d3..fb70ca64a 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/virus.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/virus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/vpn.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/vpn.pm index 5d706f1cf..ab87fb8a6 100644 --- a/src/centreon/common/fortinet/fortigate/snmp/mode/vpn.pm +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/vpn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/components/board.pm b/src/centreon/common/foundry/snmp/mode/components/board.pm index edef9ae46..06d023b26 100644 --- a/src/centreon/common/foundry/snmp/mode/components/board.pm +++ b/src/centreon/common/foundry/snmp/mode/components/board.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/components/fan.pm b/src/centreon/common/foundry/snmp/mode/components/fan.pm index 9621510ad..d24aa1359 100644 --- a/src/centreon/common/foundry/snmp/mode/components/fan.pm +++ b/src/centreon/common/foundry/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/components/psu.pm b/src/centreon/common/foundry/snmp/mode/components/psu.pm index 510eb1884..af95501f0 100644 --- a/src/centreon/common/foundry/snmp/mode/components/psu.pm +++ b/src/centreon/common/foundry/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/components/resources.pm b/src/centreon/common/foundry/snmp/mode/components/resources.pm index 853871267..50451609f 100644 --- a/src/centreon/common/foundry/snmp/mode/components/resources.pm +++ b/src/centreon/common/foundry/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/components/temperature.pm b/src/centreon/common/foundry/snmp/mode/components/temperature.pm index 149912c5e..38f5ca7d6 100644 --- a/src/centreon/common/foundry/snmp/mode/components/temperature.pm +++ b/src/centreon/common/foundry/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/cpu.pm b/src/centreon/common/foundry/snmp/mode/cpu.pm index 653ac7096..1e946271b 100644 --- a/src/centreon/common/foundry/snmp/mode/cpu.pm +++ b/src/centreon/common/foundry/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/hardware.pm b/src/centreon/common/foundry/snmp/mode/hardware.pm index bd07d3549..dd6f073da 100644 --- a/src/centreon/common/foundry/snmp/mode/hardware.pm +++ b/src/centreon/common/foundry/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/foundry/snmp/mode/memory.pm b/src/centreon/common/foundry/snmp/mode/memory.pm index 9adf2a55f..e72e04fd7 100644 --- a/src/centreon/common/foundry/snmp/mode/memory.pm +++ b/src/centreon/common/foundry/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/frogfoot/snmp/mode/load.pm b/src/centreon/common/frogfoot/snmp/mode/load.pm index 186772c67..4230b240e 100644 --- a/src/centreon/common/frogfoot/snmp/mode/load.pm +++ b/src/centreon/common/frogfoot/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/centreon/common/frogfoot/snmp/mode/memory.pm b/src/centreon/common/frogfoot/snmp/mode/memory.pm index 1e72ee1b0..16aaed630 100644 --- a/src/centreon/common/frogfoot/snmp/mode/memory.pm +++ b/src/centreon/common/frogfoot/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/components/default.pm b/src/centreon/common/h3c/snmp/mode/components/default.pm index e33ae02cb..5b3131442 100644 --- a/src/centreon/common/h3c/snmp/mode/components/default.pm +++ b/src/centreon/common/h3c/snmp/mode/components/default.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/components/fan.pm b/src/centreon/common/h3c/snmp/mode/components/fan.pm index 94d1e11f4..0488d3781 100644 --- a/src/centreon/common/h3c/snmp/mode/components/fan.pm +++ b/src/centreon/common/h3c/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/components/psu.pm b/src/centreon/common/h3c/snmp/mode/components/psu.pm index 2e4aa0262..64d7f8044 100644 --- a/src/centreon/common/h3c/snmp/mode/components/psu.pm +++ b/src/centreon/common/h3c/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/components/sensor.pm b/src/centreon/common/h3c/snmp/mode/components/sensor.pm index 5584a5ec6..e0892a10c 100644 --- a/src/centreon/common/h3c/snmp/mode/components/sensor.pm +++ b/src/centreon/common/h3c/snmp/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/cpu.pm b/src/centreon/common/h3c/snmp/mode/cpu.pm index 2d4bb8b58..39104c55a 100644 --- a/src/centreon/common/h3c/snmp/mode/cpu.pm +++ b/src/centreon/common/h3c/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/hardware.pm b/src/centreon/common/h3c/snmp/mode/hardware.pm index 93d6487a2..f16566e20 100644 --- a/src/centreon/common/h3c/snmp/mode/hardware.pm +++ b/src/centreon/common/h3c/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/h3c/snmp/mode/interfaces.pm b/src/centreon/common/h3c/snmp/mode/interfaces.pm index 026bd1743..d7263afee 100644 --- a/src/centreon/common/h3c/snmp/mode/interfaces.pm +++ b/src/centreon/common/h3c/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -307,7 +307,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/centreon/common/h3c/snmp/mode/memory.pm b/src/centreon/common/h3c/snmp/mode/memory.pm index 4ed0da687..2674b4c9d 100644 --- a/src/centreon/common/h3c/snmp/mode/memory.pm +++ b/src/centreon/common/h3c/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/nos/snmp/mode/components/faultled.pm b/src/centreon/common/ibm/nos/snmp/mode/components/faultled.pm index d62835230..561093953 100644 --- a/src/centreon/common/ibm/nos/snmp/mode/components/faultled.pm +++ b/src/centreon/common/ibm/nos/snmp/mode/components/faultled.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/nos/snmp/mode/components/temperature.pm b/src/centreon/common/ibm/nos/snmp/mode/components/temperature.pm index eec91f2a2..0942972b5 100644 --- a/src/centreon/common/ibm/nos/snmp/mode/components/temperature.pm +++ b/src/centreon/common/ibm/nos/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/nos/snmp/mode/cpu.pm b/src/centreon/common/ibm/nos/snmp/mode/cpu.pm index 3ec0bdff5..d6b86cb37 100644 --- a/src/centreon/common/ibm/nos/snmp/mode/cpu.pm +++ b/src/centreon/common/ibm/nos/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/nos/snmp/mode/disk.pm b/src/centreon/common/ibm/nos/snmp/mode/disk.pm index 53b9a585f..b30b3f1b5 100644 --- a/src/centreon/common/ibm/nos/snmp/mode/disk.pm +++ b/src/centreon/common/ibm/nos/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -93,7 +93,7 @@ Time in minutes before reloading cache file (default: 180). =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--filter-storage-type> diff --git a/src/centreon/common/ibm/nos/snmp/mode/environment.pm b/src/centreon/common/ibm/nos/snmp/mode/environment.pm index 3cb43ad75..2699a7556 100644 --- a/src/centreon/common/ibm/nos/snmp/mode/environment.pm +++ b/src/centreon/common/ibm/nos/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/nos/snmp/mode/memory.pm b/src/centreon/common/ibm/nos/snmp/mode/memory.pm index 7fdf57b97..fc67f6c3a 100644 --- a/src/centreon/common/ibm/nos/snmp/mode/memory.pm +++ b/src/centreon/common/ibm/nos/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/changer.pm b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/changer.pm index 900742ec6..b1e1981e9 100644 --- a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/changer.pm +++ b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/changer.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/chassis.pm b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/chassis.pm index 951e643e5..209d91bc0 100644 --- a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/chassis.pm +++ b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/drive.pm b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/drive.pm index f5afce09f..fb0091ed1 100644 --- a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/drive.pm +++ b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/drive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/psu.pm b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/psu.pm index 6276bbb5e..a53088095 100644 --- a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/psu.pm +++ b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/resources.pm b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/resources.pm index 87078f3d3..fd60697fd 100644 --- a/src/centreon/common/ibm/tapelibrary/snmp/mode/components/resources.pm +++ b/src/centreon/common/ibm/tapelibrary/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ibm/tapelibrary/snmp/mode/hardware.pm b/src/centreon/common/ibm/tapelibrary/snmp/mode/hardware.pm index e1445e443..a404dc0d5 100644 --- a/src/centreon/common/ibm/tapelibrary/snmp/mode/hardware.pm +++ b/src/centreon/common/ibm/tapelibrary/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ingrian/snmp/mode/connections.pm b/src/centreon/common/ingrian/snmp/mode/connections.pm index 6cf32f2fe..ec4011009 100644 --- a/src/centreon/common/ingrian/snmp/mode/connections.pm +++ b/src/centreon/common/ingrian/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ingrian/snmp/mode/cpu.pm b/src/centreon/common/ingrian/snmp/mode/cpu.pm index 9ceda4cf1..99856b869 100644 --- a/src/centreon/common/ingrian/snmp/mode/cpu.pm +++ b/src/centreon/common/ingrian/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ingrian/snmp/mode/disk.pm b/src/centreon/common/ingrian/snmp/mode/disk.pm index dcf2f60b8..5542bdf38 100644 --- a/src/centreon/common/ingrian/snmp/mode/disk.pm +++ b/src/centreon/common/ingrian/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ingrian/snmp/mode/memory.pm b/src/centreon/common/ingrian/snmp/mode/memory.pm index c950625f5..7694795be 100644 --- a/src/centreon/common/ingrian/snmp/mode/memory.pm +++ b/src/centreon/common/ingrian/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/ingrian/snmp/mode/requeststats.pm b/src/centreon/common/ingrian/snmp/mode/requeststats.pm index 27a4e0ae0..3186bdfc4 100644 --- a/src/centreon/common/ingrian/snmp/mode/requeststats.pm +++ b/src/centreon/common/ingrian/snmp/mode/requeststats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/classcount.pm b/src/centreon/common/jvm/mode/classcount.pm index feb745ad4..b5be11063 100644 --- a/src/centreon/common/jvm/mode/classcount.pm +++ b/src/centreon/common/jvm/mode/classcount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/cpuload.pm b/src/centreon/common/jvm/mode/cpuload.pm index 1d6b7bf95..2b2308e18 100644 --- a/src/centreon/common/jvm/mode/cpuload.pm +++ b/src/centreon/common/jvm/mode/cpuload.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -94,19 +94,19 @@ perl centreon_plugins.pl --plugin=apps::tomcat::jmx::plugin --custommode=jolokia =item B<--warning-system> -Warning threshold of System cpuload +Warning threshold of system CPU load. =item B<--critical-system> -Critical threshold of System cpuload +Critical threshold of system CPU load. =item B<--warning-process> -Warning threshold of Process cpuload +Warning threshold of process CPU load. =item B<--critical-process> -Critical threshold of Process cpuload +Critical threshold of process CPU load. =back diff --git a/src/centreon/common/jvm/mode/fdusage.pm b/src/centreon/common/jvm/mode/fdusage.pm index e1967640f..30c1575e2 100644 --- a/src/centreon/common/jvm/mode/fdusage.pm +++ b/src/centreon/common/jvm/mode/fdusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/gcusage.pm b/src/centreon/common/jvm/mode/gcusage.pm index 642703cd9..da5cf81f5 100644 --- a/src/centreon/common/jvm/mode/gcusage.pm +++ b/src/centreon/common/jvm/mode/gcusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/loadaverage.pm b/src/centreon/common/jvm/mode/loadaverage.pm index b6c00e48f..b73a67bba 100644 --- a/src/centreon/common/jvm/mode/loadaverage.pm +++ b/src/centreon/common/jvm/mode/loadaverage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/memory.pm b/src/centreon/common/jvm/mode/memory.pm index 415373301..b0ee5f786 100644 --- a/src/centreon/common/jvm/mode/memory.pm +++ b/src/centreon/common/jvm/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/memorydetailed.pm b/src/centreon/common/jvm/mode/memorydetailed.pm index 9e037e55d..37a5577ed 100644 --- a/src/centreon/common/jvm/mode/memorydetailed.pm +++ b/src/centreon/common/jvm/mode/memorydetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/jvm/mode/threads.pm b/src/centreon/common/jvm/mode/threads.pm index 3e62d16e4..92dc871ef 100644 --- a/src/centreon/common/jvm/mode/threads.pm +++ b/src/centreon/common/jvm/mode/threads.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/microsoft/skype/mssql/mode/appsharingqoe.pm b/src/centreon/common/microsoft/skype/mssql/mode/appsharingqoe.pm index 94e6b0199..5159e8651 100644 --- a/src/centreon/common/microsoft/skype/mssql/mode/appsharingqoe.pm +++ b/src/centreon/common/microsoft/skype/mssql/mode/appsharingqoe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/microsoft/skype/mssql/mode/audioqoe.pm b/src/centreon/common/microsoft/skype/mssql/mode/audioqoe.pm index 8818ad978..5891986e1 100644 --- a/src/centreon/common/microsoft/skype/mssql/mode/audioqoe.pm +++ b/src/centreon/common/microsoft/skype/mssql/mode/audioqoe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/microsoft/skype/mssql/mode/poorcalls.pm b/src/centreon/common/microsoft/skype/mssql/mode/poorcalls.pm index cd89af264..964f0b41c 100644 --- a/src/centreon/common/microsoft/skype/mssql/mode/poorcalls.pm +++ b/src/centreon/common/microsoft/skype/mssql/mode/poorcalls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/microsoft/skype/mssql/mode/sessionstypes.pm b/src/centreon/common/microsoft/skype/mssql/mode/sessionstypes.pm index 79d55851b..ec8e84581 100644 --- a/src/centreon/common/microsoft/skype/mssql/mode/sessionstypes.pm +++ b/src/centreon/common/microsoft/skype/mssql/mode/sessionstypes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/monitoring/openmetrics/custom/file.pm b/src/centreon/common/monitoring/openmetrics/custom/file.pm index 9e259cc6f..cbaab0a71 100644 --- a/src/centreon/common/monitoring/openmetrics/custom/file.pm +++ b/src/centreon/common/monitoring/openmetrics/custom/file.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/monitoring/openmetrics/custom/web.pm b/src/centreon/common/monitoring/openmetrics/custom/web.pm index 34a2da331..ccdef0a2d 100644 --- a/src/centreon/common/monitoring/openmetrics/custom/web.pm +++ b/src/centreon/common/monitoring/openmetrics/custom/web.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/monitoring/openmetrics/scrape.pm b/src/centreon/common/monitoring/openmetrics/scrape.pm index 6800ea3ae..8718c0178 100644 --- a/src/centreon/common/monitoring/openmetrics/scrape.pm +++ b/src/centreon/common/monitoring/openmetrics/scrape.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/board.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/board.pm index 3501dafec..82776316c 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/board.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/board.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/camera.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/camera.pm index 48b22cc98..f2b1e8a91 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/camera.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/camera.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/global.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/global.pm index 685b7e157..fa64eea2c 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/global.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/global.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/microphone.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/microphone.pm index f8731fb28..a9e5ea5a7 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/microphone.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/microphone.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/nic.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/nic.pm index a83ecd56e..6438a4782 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/nic.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/nic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/ptc.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/ptc.pm index b1246b0bc..a232dda7e 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/ptc.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/ptc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/components/resources.pm b/src/centreon/common/polycom/endpoint/snmp/mode/components/resources.pm index b17b95340..e06c664d0 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/components/resources.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/hardware.pm b/src/centreon/common/polycom/endpoint/snmp/mode/hardware.pm index d8552b1eb..27069f64b 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/hardware.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/polycom/endpoint/snmp/mode/videoconferencing.pm b/src/centreon/common/polycom/endpoint/snmp/mode/videoconferencing.pm index a4a896bef..eee24c1b3 100644 --- a/src/centreon/common/polycom/endpoint/snmp/mode/videoconferencing.pm +++ b/src/centreon/common/polycom/endpoint/snmp/mode/videoconferencing.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/backupexec/alerts.pm b/src/centreon/common/powershell/backupexec/alerts.pm index cc9c63ebd..69b9c5516 100644 --- a/src/centreon/common/powershell/backupexec/alerts.pm +++ b/src/centreon/common/powershell/backupexec/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/backupexec/disks.pm b/src/centreon/common/powershell/backupexec/disks.pm index 1ca075f1c..1c5660d55 100644 --- a/src/centreon/common/powershell/backupexec/disks.pm +++ b/src/centreon/common/powershell/backupexec/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/backupexec/functions.pm b/src/centreon/common/powershell/backupexec/functions.pm index f11e1b137..974294b3a 100644 --- a/src/centreon/common/powershell/backupexec/functions.pm +++ b/src/centreon/common/powershell/backupexec/functions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/backupexec/jobs.pm b/src/centreon/common/powershell/backupexec/jobs.pm index f850f5773..cdf00278d 100644 --- a/src/centreon/common/powershell/backupexec/jobs.pm +++ b/src/centreon/common/powershell/backupexec/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/dell/compellent/hbausage.pm b/src/centreon/common/powershell/dell/compellent/hbausage.pm index ef7186a85..778723ead 100644 --- a/src/centreon/common/powershell/dell/compellent/hbausage.pm +++ b/src/centreon/common/powershell/dell/compellent/hbausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/dell/compellent/volumeusage.pm b/src/centreon/common/powershell/dell/compellent/volumeusage.pm index 07844dae6..aa0d78101 100644 --- a/src/centreon/common/powershell/dell/compellent/volumeusage.pm +++ b/src/centreon/common/powershell/dell/compellent/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/activesyncmailbox.pm b/src/centreon/common/powershell/exchange/activesyncmailbox.pm index 202b4d127..e88afad5c 100644 --- a/src/centreon/common/powershell/exchange/activesyncmailbox.pm +++ b/src/centreon/common/powershell/exchange/activesyncmailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/databases.pm b/src/centreon/common/powershell/exchange/databases.pm index b3b38bf5c..9728415c1 100644 --- a/src/centreon/common/powershell/exchange/databases.pm +++ b/src/centreon/common/powershell/exchange/databases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/imapmailbox.pm b/src/centreon/common/powershell/exchange/imapmailbox.pm index 2a09a7f3b..c35dc4eb6 100644 --- a/src/centreon/common/powershell/exchange/imapmailbox.pm +++ b/src/centreon/common/powershell/exchange/imapmailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/listdatabases.pm b/src/centreon/common/powershell/exchange/listdatabases.pm index f3404072e..3a9658d22 100644 --- a/src/centreon/common/powershell/exchange/listdatabases.pm +++ b/src/centreon/common/powershell/exchange/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/mailboxes.pm b/src/centreon/common/powershell/exchange/mailboxes.pm index 03939ff1c..a014e7483 100644 --- a/src/centreon/common/powershell/exchange/mailboxes.pm +++ b/src/centreon/common/powershell/exchange/mailboxes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/mapimailbox.pm b/src/centreon/common/powershell/exchange/mapimailbox.pm index 553d75450..5df1fc4d6 100644 --- a/src/centreon/common/powershell/exchange/mapimailbox.pm +++ b/src/centreon/common/powershell/exchange/mapimailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/outlookwebservices.pm b/src/centreon/common/powershell/exchange/outlookwebservices.pm index 7737ac9d5..2b6cf5a0e 100644 --- a/src/centreon/common/powershell/exchange/outlookwebservices.pm +++ b/src/centreon/common/powershell/exchange/outlookwebservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/owamailbox.pm b/src/centreon/common/powershell/exchange/owamailbox.pm index 797201ead..7d11624fe 100644 --- a/src/centreon/common/powershell/exchange/owamailbox.pm +++ b/src/centreon/common/powershell/exchange/owamailbox.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/powershell.pm b/src/centreon/common/powershell/exchange/powershell.pm index fc63db40d..1a7f06e72 100644 --- a/src/centreon/common/powershell/exchange/powershell.pm +++ b/src/centreon/common/powershell/exchange/powershell.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/queues.pm b/src/centreon/common/powershell/exchange/queues.pm index 22dc7c0d2..ad86690f7 100644 --- a/src/centreon/common/powershell/exchange/queues.pm +++ b/src/centreon/common/powershell/exchange/queues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/replicationhealth.pm b/src/centreon/common/powershell/exchange/replicationhealth.pm index e7f05d399..d9d073ad4 100644 --- a/src/centreon/common/powershell/exchange/replicationhealth.pm +++ b/src/centreon/common/powershell/exchange/replicationhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/exchange/services.pm b/src/centreon/common/powershell/exchange/services.pm index 6f6c73b63..be59f94cb 100644 --- a/src/centreon/common/powershell/exchange/services.pm +++ b/src/centreon/common/powershell/exchange/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/functions.pm b/src/centreon/common/powershell/functions.pm index 2f9fb2ec1..d24b93ced 100644 --- a/src/centreon/common/powershell/functions.pm +++ b/src/centreon/common/powershell/functions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/listnodevms.pm b/src/centreon/common/powershell/hyperv/2012/listnodevms.pm index ec83760c6..00481f2e9 100644 --- a/src/centreon/common/powershell/hyperv/2012/listnodevms.pm +++ b/src/centreon/common/powershell/hyperv/2012/listnodevms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/nodeintegrationservice.pm b/src/centreon/common/powershell/hyperv/2012/nodeintegrationservice.pm index 0f072dcc9..a85f50961 100644 --- a/src/centreon/common/powershell/hyperv/2012/nodeintegrationservice.pm +++ b/src/centreon/common/powershell/hyperv/2012/nodeintegrationservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/nodereplication.pm b/src/centreon/common/powershell/hyperv/2012/nodereplication.pm index 290490040..4f192198f 100644 --- a/src/centreon/common/powershell/hyperv/2012/nodereplication.pm +++ b/src/centreon/common/powershell/hyperv/2012/nodereplication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/nodesnapshot.pm b/src/centreon/common/powershell/hyperv/2012/nodesnapshot.pm index 45f6fa6c9..6c95f57c6 100644 --- a/src/centreon/common/powershell/hyperv/2012/nodesnapshot.pm +++ b/src/centreon/common/powershell/hyperv/2012/nodesnapshot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/nodevmstatus.pm b/src/centreon/common/powershell/hyperv/2012/nodevmstatus.pm index 4b221fdbe..050939f84 100644 --- a/src/centreon/common/powershell/hyperv/2012/nodevmstatus.pm +++ b/src/centreon/common/powershell/hyperv/2012/nodevmstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/scvmmdiscovery.pm b/src/centreon/common/powershell/hyperv/2012/scvmmdiscovery.pm index 5b7c09d5d..6709aebf6 100644 --- a/src/centreon/common/powershell/hyperv/2012/scvmmdiscovery.pm +++ b/src/centreon/common/powershell/hyperv/2012/scvmmdiscovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/scvmmintegrationservice.pm b/src/centreon/common/powershell/hyperv/2012/scvmmintegrationservice.pm index b5be7bf9c..c55aa7979 100644 --- a/src/centreon/common/powershell/hyperv/2012/scvmmintegrationservice.pm +++ b/src/centreon/common/powershell/hyperv/2012/scvmmintegrationservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/scvmmsnapshot.pm b/src/centreon/common/powershell/hyperv/2012/scvmmsnapshot.pm index 450f939a0..547074336 100644 --- a/src/centreon/common/powershell/hyperv/2012/scvmmsnapshot.pm +++ b/src/centreon/common/powershell/hyperv/2012/scvmmsnapshot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/hyperv/2012/scvmmvmstatus.pm b/src/centreon/common/powershell/hyperv/2012/scvmmvmstatus.pm index a1bbb5a3f..e18dbc8be 100644 --- a/src/centreon/common/powershell/hyperv/2012/scvmmvmstatus.pm +++ b/src/centreon/common/powershell/hyperv/2012/scvmmvmstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/sccm/databasereplicationstatus.pm b/src/centreon/common/powershell/sccm/databasereplicationstatus.pm index 8ca87c9a2..06b9cb302 100644 --- a/src/centreon/common/powershell/sccm/databasereplicationstatus.pm +++ b/src/centreon/common/powershell/sccm/databasereplicationstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/sccm/sitestatus.pm b/src/centreon/common/powershell/sccm/sitestatus.pm index 05a530748..ddc06cc2d 100644 --- a/src/centreon/common/powershell/sccm/sitestatus.pm +++ b/src/centreon/common/powershell/sccm/sitestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/functions.pm b/src/centreon/common/powershell/veeam/functions.pm index 40486c6f0..1fb0c26a4 100644 --- a/src/centreon/common/powershell/veeam/functions.pm +++ b/src/centreon/common/powershell/veeam/functions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/jobstatus.pm b/src/centreon/common/powershell/veeam/jobstatus.pm index 9458815cc..f44a44a26 100644 --- a/src/centreon/common/powershell/veeam/jobstatus.pm +++ b/src/centreon/common/powershell/veeam/jobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/licenses.pm b/src/centreon/common/powershell/veeam/licenses.pm index 0990267b6..412787b0f 100644 --- a/src/centreon/common/powershell/veeam/licenses.pm +++ b/src/centreon/common/powershell/veeam/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/listjobs.pm b/src/centreon/common/powershell/veeam/listjobs.pm index 504699080..e0d902e2e 100644 --- a/src/centreon/common/powershell/veeam/listjobs.pm +++ b/src/centreon/common/powershell/veeam/listjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/repositories.pm b/src/centreon/common/powershell/veeam/repositories.pm index 89c618c6b..a67ba9853 100644 --- a/src/centreon/common/powershell/veeam/repositories.pm +++ b/src/centreon/common/powershell/veeam/repositories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/tapejobs.pm b/src/centreon/common/powershell/veeam/tapejobs.pm index 77e4decf1..03d017e9a 100644 --- a/src/centreon/common/powershell/veeam/tapejobs.pm +++ b/src/centreon/common/powershell/veeam/tapejobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/veeam/vsbjobs.pm b/src/centreon/common/powershell/veeam/vsbjobs.pm index 1fe0b9790..3b50d808b 100644 --- a/src/centreon/common/powershell/veeam/vsbjobs.pm +++ b/src/centreon/common/powershell/veeam/vsbjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/windows/certificates.pm b/src/centreon/common/powershell/windows/certificates.pm index 5ffde9b0b..2f792b5eb 100644 --- a/src/centreon/common/powershell/windows/certificates.pm +++ b/src/centreon/common/powershell/windows/certificates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/windows/liststorages.pm b/src/centreon/common/powershell/windows/liststorages.pm index b4b9cc545..c911049c8 100644 --- a/src/centreon/common/powershell/windows/liststorages.pm +++ b/src/centreon/common/powershell/windows/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/windows/pendingreboot.pm b/src/centreon/common/powershell/windows/pendingreboot.pm index 92d4efd49..3403379da 100644 --- a/src/centreon/common/powershell/windows/pendingreboot.pm +++ b/src/centreon/common/powershell/windows/pendingreboot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/windows/updates.pm b/src/centreon/common/powershell/windows/updates.pm index 574e1ba86..12b101304 100644 --- a/src/centreon/common/powershell/windows/updates.pm +++ b/src/centreon/common/powershell/windows/updates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/wsus/computersstatus.pm b/src/centreon/common/powershell/wsus/computersstatus.pm index 7b14d5bd9..23a8e5229 100644 --- a/src/centreon/common/powershell/wsus/computersstatus.pm +++ b/src/centreon/common/powershell/wsus/computersstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/wsus/serverstatistics.pm b/src/centreon/common/powershell/wsus/serverstatistics.pm index dcda06143..cfeb8e3ad 100644 --- a/src/centreon/common/powershell/wsus/serverstatistics.pm +++ b/src/centreon/common/powershell/wsus/serverstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/wsus/synchronisationstatus.pm b/src/centreon/common/powershell/wsus/synchronisationstatus.pm index a14a0b2d1..5e2d6404e 100644 --- a/src/centreon/common/powershell/wsus/synchronisationstatus.pm +++ b/src/centreon/common/powershell/wsus/synchronisationstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/powershell/wsus/updatesstatus.pm b/src/centreon/common/powershell/wsus/updatesstatus.pm index e58ed8213..919a78c24 100644 --- a/src/centreon/common/powershell/wsus/updatesstatus.pm +++ b/src/centreon/common/powershell/wsus/updatesstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/actuator/custom/centreonmap.pm b/src/centreon/common/protocols/actuator/custom/centreonmap.pm index ffb77ac89..321aaf035 100644 --- a/src/centreon/common/protocols/actuator/custom/centreonmap.pm +++ b/src/centreon/common/protocols/actuator/custom/centreonmap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/actuator/custom/standard.pm b/src/centreon/common/protocols/actuator/custom/standard.pm index bb6fd1d4f..59b780de0 100644 --- a/src/centreon/common/protocols/actuator/custom/standard.pm +++ b/src/centreon/common/protocols/actuator/custom/standard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/jmx/custom/jolokia.pm b/src/centreon/common/protocols/jmx/custom/jolokia.pm index 6f6b5ea4d..5a1644ea5 100644 --- a/src/centreon/common/protocols/jmx/custom/jolokia.pm +++ b/src/centreon/common/protocols/jmx/custom/jolokia.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/ldap/lib/ldap.pm b/src/centreon/common/protocols/ldap/lib/ldap.pm index cc2ecebd0..a0d04e127 100644 --- a/src/centreon/common/protocols/ldap/lib/ldap.pm +++ b/src/centreon/common/protocols/ldap/lib/ldap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/modbus/custom/api.pm b/src/centreon/common/protocols/modbus/custom/api.pm index c16909945..d8c283d4b 100644 --- a/src/centreon/common/protocols/modbus/custom/api.pm +++ b/src/centreon/common/protocols/modbus/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/sql/mode/collection.pm b/src/centreon/common/protocols/sql/mode/collection.pm index dd0f98ab8..ed40f7e0a 100644 --- a/src/centreon/common/protocols/sql/mode/collection.pm +++ b/src/centreon/common/protocols/sql/mode/collection.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -1534,7 +1534,7 @@ __END__ =head1 MODE -Collect and compute SQL datas. +Collect and compute SQL data. =over 8 diff --git a/src/centreon/common/protocols/sql/mode/connectiontime.pm b/src/centreon/common/protocols/sql/mode/connectiontime.pm index 104b96a90..e0f3b3f75 100644 --- a/src/centreon/common/protocols/sql/mode/connectiontime.pm +++ b/src/centreon/common/protocols/sql/mode/connectiontime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/sql/mode/sql.pm b/src/centreon/common/protocols/sql/mode/sql.pm index 106111d88..350326a43 100644 --- a/src/centreon/common/protocols/sql/mode/sql.pm +++ b/src/centreon/common/protocols/sql/mode/sql.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/protocols/sql/mode/sqlstring.pm b/src/centreon/common/protocols/sql/mode/sqlstring.pm index 8acb399fc..0d874bd83 100644 --- a/src/centreon/common/protocols/sql/mode/sqlstring.pm +++ b/src/centreon/common/protocols/sql/mode/sqlstring.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -95,14 +95,13 @@ sub check_options { $self->{printf_value} = 'value_field'; if (defined($self->{option_results}->{printf_value}) && $self->{option_results}->{printf_value} ne '') { - $self->{printf_value} = $1 - if ($self->{option_results}->{printf_value} =~ /\$self->\{result_values}->\{(value_field|key_field)}/); - $self->{printf_value} = $1 - if ($self->{option_results}->{printf_value} =~ /\%\{(value_field|key_field)}/); - $self->{printf_value} = $1 - if ($self->{option_results}->{printf_value} =~ /\%\((value_field|key_field)\)/); + $self->{printf_value} = $1 + if ($self->{option_results}->{printf_value} =~ /\$self->\{result_values\}->\{(value_field|key_field)\}/); + $self->{printf_value} = $1 + if ($self->{option_results}->{printf_value} =~ /\%\{(value_field|key_field)\}/); + $self->{printf_value} = $1 + if ($self->{option_results}->{printf_value} =~ /\%\((value_field|key_field)\)/); } - } sub manage_selection { diff --git a/src/centreon/common/protocols/ssh/custom/api.pm b/src/centreon/common/protocols/ssh/custom/api.pm index 91e8e8b5f..3e96f4cec 100644 --- a/src/centreon/common/protocols/ssh/custom/api.pm +++ b/src/centreon/common/protocols/ssh/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/radlan/snmp/mode/components/fan.pm b/src/centreon/common/radlan/snmp/mode/components/fan.pm index cee82c65b..173a76339 100644 --- a/src/centreon/common/radlan/snmp/mode/components/fan.pm +++ b/src/centreon/common/radlan/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/radlan/snmp/mode/components/psu.pm b/src/centreon/common/radlan/snmp/mode/components/psu.pm index 23a325509..3f2311213 100644 --- a/src/centreon/common/radlan/snmp/mode/components/psu.pm +++ b/src/centreon/common/radlan/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/radlan/snmp/mode/components/resources.pm b/src/centreon/common/radlan/snmp/mode/components/resources.pm index 692d51d75..e5272a53f 100644 --- a/src/centreon/common/radlan/snmp/mode/components/resources.pm +++ b/src/centreon/common/radlan/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/radlan/snmp/mode/components/temperature.pm b/src/centreon/common/radlan/snmp/mode/components/temperature.pm index edac83ab9..c13a366ed 100644 --- a/src/centreon/common/radlan/snmp/mode/components/temperature.pm +++ b/src/centreon/common/radlan/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/radlan/snmp/mode/cpu.pm b/src/centreon/common/radlan/snmp/mode/cpu.pm index 121f5938b..5f4292699 100644 --- a/src/centreon/common/radlan/snmp/mode/cpu.pm +++ b/src/centreon/common/radlan/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -106,7 +106,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/centreon/common/radlan/snmp/mode/environment.pm b/src/centreon/common/radlan/snmp/mode/environment.pm index 357cfed83..e0a1a0c99 100644 --- a/src/centreon/common/radlan/snmp/mode/environment.pm +++ b/src/centreon/common/radlan/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/chassis.pm b/src/centreon/common/redfish/restapi/mode/components/chassis.pm index 813e64bed..e31977d55 100644 --- a/src/centreon/common/redfish/restapi/mode/components/chassis.pm +++ b/src/centreon/common/redfish/restapi/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/device.pm b/src/centreon/common/redfish/restapi/mode/components/device.pm index 49b799dd7..787b60dd1 100644 --- a/src/centreon/common/redfish/restapi/mode/components/device.pm +++ b/src/centreon/common/redfish/restapi/mode/components/device.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/drive.pm b/src/centreon/common/redfish/restapi/mode/components/drive.pm index 42c09556a..13faede88 100644 --- a/src/centreon/common/redfish/restapi/mode/components/drive.pm +++ b/src/centreon/common/redfish/restapi/mode/components/drive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/fan.pm b/src/centreon/common/redfish/restapi/mode/components/fan.pm index de2b03568..0933e3e4b 100644 --- a/src/centreon/common/redfish/restapi/mode/components/fan.pm +++ b/src/centreon/common/redfish/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/psu.pm b/src/centreon/common/redfish/restapi/mode/components/psu.pm index 6faf03e61..7376309c6 100644 --- a/src/centreon/common/redfish/restapi/mode/components/psu.pm +++ b/src/centreon/common/redfish/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/sc.pm b/src/centreon/common/redfish/restapi/mode/components/sc.pm index 04896346b..da4fd61d1 100644 --- a/src/centreon/common/redfish/restapi/mode/components/sc.pm +++ b/src/centreon/common/redfish/restapi/mode/components/sc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/storage.pm b/src/centreon/common/redfish/restapi/mode/components/storage.pm index 33de68695..8396f1696 100644 --- a/src/centreon/common/redfish/restapi/mode/components/storage.pm +++ b/src/centreon/common/redfish/restapi/mode/components/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/temperature.pm b/src/centreon/common/redfish/restapi/mode/components/temperature.pm index 534b6bbb4..a28b112e9 100644 --- a/src/centreon/common/redfish/restapi/mode/components/temperature.pm +++ b/src/centreon/common/redfish/restapi/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/components/volume.pm b/src/centreon/common/redfish/restapi/mode/components/volume.pm index 29dd7fbf9..8843c3d5b 100644 --- a/src/centreon/common/redfish/restapi/mode/components/volume.pm +++ b/src/centreon/common/redfish/restapi/mode/components/volume.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/redfish/restapi/mode/hardware.pm b/src/centreon/common/redfish/restapi/mode/hardware.pm index 0f2491a3e..5a2e555d7 100644 --- a/src/centreon/common/redfish/restapi/mode/hardware.pm +++ b/src/centreon/common/redfish/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/bwoptimization.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/bwoptimization.pm index 31b42e319..91d82a3a4 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/bwoptimization.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/bwoptimization.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/bwpassthrough.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/bwpassthrough.pm index d38b6ffe7..43ff87c77 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/bwpassthrough.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/bwpassthrough.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/connections.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/connections.pm index 878f9dd6c..7406e5e62 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/connections.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/diskutilization.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/diskutilization.pm index 7c558ff87..f93e17bdb 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/diskutilization.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/diskutilization.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/loadaverage.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/loadaverage.pm index f5680a029..ab6454fcf 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/loadaverage.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/loadaverage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/status.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/status.pm index 690f1d516..0f4783af2 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/status.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/riverbed/steelhead/snmp/mode/temperature.pm b/src/centreon/common/riverbed/steelhead/snmp/mode/temperature.pm index d6d882b41..81589e2f6 100644 --- a/src/centreon/common/riverbed/steelhead/snmp/mode/temperature.pm +++ b/src/centreon/common/riverbed/steelhead/snmp/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/smcli/custom/custom.pm b/src/centreon/common/smcli/custom/custom.pm index e0b3ef23b..32ccc9e90 100644 --- a/src/centreon/common/smcli/custom/custom.pm +++ b/src/centreon/common/smcli/custom/custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/smcli/mode/healthstatus.pm b/src/centreon/common/smcli/mode/healthstatus.pm index 9fc98ba2a..d7cc3cdf9 100644 --- a/src/centreon/common/smcli/mode/healthstatus.pm +++ b/src/centreon/common/smcli/mode/healthstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/sun/snmp/mode/components/entity.pm b/src/centreon/common/sun/snmp/mode/components/entity.pm index 9c6dcef30..4c393baf6 100644 --- a/src/centreon/common/sun/snmp/mode/components/entity.pm +++ b/src/centreon/common/sun/snmp/mode/components/entity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/sun/snmp/mode/hardware.pm b/src/centreon/common/sun/snmp/mode/hardware.pm index 779a02fc1..ba718a886 100644 --- a/src/centreon/common/sun/snmp/mode/hardware.pm +++ b/src/centreon/common/sun/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/ca.pm b/src/centreon/common/violin/snmp/mode/components/ca.pm index b4d53411a..336cdd1ed 100644 --- a/src/centreon/common/violin/snmp/mode/components/ca.pm +++ b/src/centreon/common/violin/snmp/mode/components/ca.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/fan.pm b/src/centreon/common/violin/snmp/mode/components/fan.pm index 4928af958..975132774 100644 --- a/src/centreon/common/violin/snmp/mode/components/fan.pm +++ b/src/centreon/common/violin/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/gfc.pm b/src/centreon/common/violin/snmp/mode/components/gfc.pm index d6332fac2..f21d4e9e0 100644 --- a/src/centreon/common/violin/snmp/mode/components/gfc.pm +++ b/src/centreon/common/violin/snmp/mode/components/gfc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/lfc.pm b/src/centreon/common/violin/snmp/mode/components/lfc.pm index e98585454..a9fc47d52 100644 --- a/src/centreon/common/violin/snmp/mode/components/lfc.pm +++ b/src/centreon/common/violin/snmp/mode/components/lfc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/psu.pm b/src/centreon/common/violin/snmp/mode/components/psu.pm index e82abd4c9..f2777edbe 100644 --- a/src/centreon/common/violin/snmp/mode/components/psu.pm +++ b/src/centreon/common/violin/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/temperature.pm b/src/centreon/common/violin/snmp/mode/components/temperature.pm index ab18a747a..fc438b46a 100644 --- a/src/centreon/common/violin/snmp/mode/components/temperature.pm +++ b/src/centreon/common/violin/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/components/vimm.pm b/src/centreon/common/violin/snmp/mode/components/vimm.pm index 7282e2a28..d7c66a7f9 100644 --- a/src/centreon/common/violin/snmp/mode/components/vimm.pm +++ b/src/centreon/common/violin/snmp/mode/components/vimm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/violin/snmp/mode/hardware.pm b/src/centreon/common/violin/snmp/mode/hardware.pm index c365da4b8..4dcbbed6d 100644 --- a/src/centreon/common/violin/snmp/mode/hardware.pm +++ b/src/centreon/common/violin/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/xppc/snmp/mode/batterystatus.pm b/src/centreon/common/xppc/snmp/mode/batterystatus.pm index 05fe4fb7d..3a466aaa0 100644 --- a/src/centreon/common/xppc/snmp/mode/batterystatus.pm +++ b/src/centreon/common/xppc/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/xppc/snmp/mode/inputlines.pm b/src/centreon/common/xppc/snmp/mode/inputlines.pm index 2cb332add..259749329 100644 --- a/src/centreon/common/xppc/snmp/mode/inputlines.pm +++ b/src/centreon/common/xppc/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/common/xppc/snmp/mode/outputlines.pm b/src/centreon/common/xppc/snmp/mode/outputlines.pm index 43c48cc8f..1159e3e33 100644 --- a/src/centreon/common/xppc/snmp/mode/outputlines.pm +++ b/src/centreon/common/xppc/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/alternative/FatPackerOptions.pm b/src/centreon/plugins/alternative/FatPackerOptions.pm index 6e4d40630..6bf2223f6 100644 --- a/src/centreon/plugins/alternative/FatPackerOptions.pm +++ b/src/centreon/plugins/alternative/FatPackerOptions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/alternative/Getopt.pm b/src/centreon/plugins/alternative/Getopt.pm index 94b8a6f61..b7a7a8d10 100644 --- a/src/centreon/plugins/alternative/Getopt.pm +++ b/src/centreon/plugins/alternative/Getopt.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -73,7 +73,13 @@ sub GetOptions { # find type of option if ($search_str !~ /,((?:[^,]*?\|){0,}$option(?:\|.*?){0,}(:.*?){0,1}),/) { - warn "Unknown option: $option" if ($warn_message == 1); + + # for old format plugins (with run function) that not allowed list-counters options + if($option =~ /list-counters/){ + warn "list-counters option not available yet for this mode." if ($warn_message == 1); + }else{ + warn "Unknown option: $option" if ($warn_message == 1); + } $i++; next; } diff --git a/src/centreon/plugins/backend/http/curl.pm b/src/centreon/plugins/backend/http/curl.pm index c57396f09..6c464cc8f 100644 --- a/src/centreon/plugins/backend/http/curl.pm +++ b/src/centreon/plugins/backend/http/curl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/http/curlconstants.pm b/src/centreon/plugins/backend/http/curlconstants.pm index eb9a99372..3bb7097a9 100644 --- a/src/centreon/plugins/backend/http/curlconstants.pm +++ b/src/centreon/plugins/backend/http/curlconstants.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/http/lwp.pm b/src/centreon/plugins/backend/http/lwp.pm index 0fadacafa..fb58449ce 100644 --- a/src/centreon/plugins/backend/http/lwp.pm +++ b/src/centreon/plugins/backend/http/lwp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/http/useragent.pm b/src/centreon/plugins/backend/http/useragent.pm index 9fae6ac8a..9fd98d020 100644 --- a/src/centreon/plugins/backend/http/useragent.pm +++ b/src/centreon/plugins/backend/http/useragent.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/ssh/libssh.pm b/src/centreon/plugins/backend/ssh/libssh.pm index 6fa5279df..2c4c37145 100644 --- a/src/centreon/plugins/backend/ssh/libssh.pm +++ b/src/centreon/plugins/backend/ssh/libssh.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/ssh/libsshconstants.pm b/src/centreon/plugins/backend/ssh/libsshconstants.pm index 42cd94373..9cfb66f80 100644 --- a/src/centreon/plugins/backend/ssh/libsshconstants.pm +++ b/src/centreon/plugins/backend/ssh/libsshconstants.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/ssh/plink.pm b/src/centreon/plugins/backend/ssh/plink.pm index 9569e8e64..21562db54 100644 --- a/src/centreon/plugins/backend/ssh/plink.pm +++ b/src/centreon/plugins/backend/ssh/plink.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/backend/ssh/sshcli.pm b/src/centreon/plugins/backend/ssh/sshcli.pm index b2c6ea5ec..8816580f0 100644 --- a/src/centreon/plugins/backend/ssh/sshcli.pm +++ b/src/centreon/plugins/backend/ssh/sshcli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/dbi.pm b/src/centreon/plugins/dbi.pm index ff61fa1f5..3c1ec57f5 100644 --- a/src/centreon/plugins/dbi.pm +++ b/src/centreon/plugins/dbi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/http.pm b/src/centreon/plugins/http.pm index 01d2814f8..02069bd32 100644 --- a/src/centreon/plugins/http.pm +++ b/src/centreon/plugins/http.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/misc.pm b/src/centreon/plugins/misc.pm index 7b5c61d60..94789397c 100644 --- a/src/centreon/plugins/misc.pm +++ b/src/centreon/plugins/misc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/mode.pm b/src/centreon/plugins/mode.pm index 8e3d9f2ce..2970d7ef8 100644 --- a/src/centreon/plugins/mode.pm +++ b/src/centreon/plugins/mode.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/multi.pm b/src/centreon/plugins/multi.pm index 877b90b5a..514e3604f 100644 --- a/src/centreon/plugins/multi.pm +++ b/src/centreon/plugins/multi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/nrpe.pm b/src/centreon/plugins/nrpe.pm index 29bdcf95f..56d2c2fb3 100644 --- a/src/centreon/plugins/nrpe.pm +++ b/src/centreon/plugins/nrpe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/options.pm b/src/centreon/plugins/options.pm index 28dd8e18c..ecfb4e648 100644 --- a/src/centreon/plugins/options.pm +++ b/src/centreon/plugins/options.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/output.pm b/src/centreon/plugins/output.pm index 655f6b88e..e2f9e540f 100644 --- a/src/centreon/plugins/output.pm +++ b/src/centreon/plugins/output.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -176,7 +176,7 @@ sub add_option_msg { sub set_ignore_label { my ($self, %options) = @_; - $self->{option_results}->{output_ignore_label} = 1; + $self->{option_results}->{output_ignore_label} = 1; } sub set_status { @@ -208,7 +208,7 @@ sub output_add { } else { $self->{global_short_concat_outputs}->{uc($options->{severity})} = $options->{short_msg}; } - + push @{$self->{global_short_outputs}->{uc($options->{severity})}}, $options->{short_msg}; $self->set_status(exit_litteral => $options->{severity}); } @@ -231,7 +231,7 @@ sub perfdata_add { $perfdata->{$_} = $options{$_}; } - if ((defined($self->{option_results}->{use_new_perfdata}) || defined($options{force_new_perfdata})) && + if ((defined($self->{option_results}->{use_new_perfdata}) || defined($options{force_new_perfdata})) && defined($options{nlabel})) { $perfdata->{label} = $options{nlabel}; } @@ -293,7 +293,7 @@ sub output_json { outputs => [], perfdatas => [] } - }; + }; foreach my $code_litteral (keys %{$self->{global_short_outputs}}) { foreach (@{$self->{global_short_outputs}->{$code_litteral}}) { @@ -343,7 +343,7 @@ sub output_xml { my ($self, %options) = @_; my $force_ignore_perfdata = (defined($options{force_ignore_perfdata}) && $options{force_ignore_perfdata} == 1) ? 1 : 0; my $force_long_output = (defined($options{force_long_output}) && $options{force_long_output} == 1) ? 1 : 0; - my ($child_plugin_name, $child_plugin_mode, $child_plugin_exit, $child_plugin_output, $child_plugin_perfdata); + my ($child_plugin_name, $child_plugin_mode, $child_plugin_exit, $child_plugin_output, $child_plugin_perfdata); my $root = $self->{xml_output}->createElement('plugin'); $self->{xml_output}->setDocumentElement($root); @@ -411,7 +411,7 @@ sub output_xml { foreach my $perf (@{$self->{perfdatas}}) { next if ($self->filter_perfdata(perf => $perf)); $self->range_perfdata(ranges => [\$perf->{warning}, \$perf->{critical}]); - + my ($child_perfdata); $child_perfdata = $self->{xml_output}->createElement('perfdata'); $child_plugin_perfdata->addChild($child_perfdata); @@ -593,8 +593,8 @@ sub display { $self->create_xml_document(); if ($self->{is_output_xml}) { $self->output_xml( - exit_litteral => $self->get_litteral_status(), - nolabel => $nolabel, + exit_litteral => $self->get_litteral_status(), + nolabel => $nolabel, force_ignore_perfdata => $force_ignore_perfdata, force_long_output => $force_long_output ); return ; @@ -603,7 +603,7 @@ sub display { $self->create_json_document(); if ($self->{is_output_json}) { $self->output_json( - exit_litteral => $self->get_litteral_status(), + exit_litteral => $self->get_litteral_status(), nolabel => $nolabel, force_ignore_perfdata => $force_ignore_perfdata, force_long_output => $force_long_output ); @@ -615,7 +615,7 @@ sub display { } $self->output_txt( - exit_litteral => $self->get_litteral_status(), + exit_litteral => $self->get_litteral_status(), nolabel => $nolabel, force_ignore_perfdata => $force_ignore_perfdata, force_long_output => $force_long_output ); @@ -642,7 +642,7 @@ sub die_exit { $self->output_json(exit_litteral => $exit_litteral, nolabel => $nolabel, force_ignore_perfdata => 1); $self->exit(exit_litteral => $exit_litteral); } - } + } $self->output_txt(exit_litteral => $exit_litteral, nolabel => $nolabel, force_ignore_perfdata => 1); $self->exit(exit_litteral => $exit_litteral); @@ -729,13 +729,13 @@ sub get_litteral_status { sub is_status { my ($self, %options) = @_; - # $options{value} = string status + # $options{value} = string status # $options{litteral} = value is litteral - # $options{compare} = string status + # $options{compare} = string status if (defined($options{litteral})) { my $value = defined($options{value}) ? $options{value} : $self->get_litteral_status(); - + if (uc($value) eq uc($options{compare})) { return 1; } @@ -906,7 +906,7 @@ sub parameter { sub add_disco_entry { my ($self, %options) = @_; - + push @{$self->{disco_entries}}, {%options}; } @@ -950,7 +950,7 @@ sub load_eval { my ($self) = @_; my ($code) = centreon::plugins::misc::mymodule_load( - output => $self->{output}, module => 'Safe', + output => $self->{output}, module => 'Safe', no_quit => 1 ); if ($code == 0) { @@ -1140,8 +1140,8 @@ sub apply_pfdata_scale { if (defined(${$options{perf}}->{max}) && ${$options{perf}}->{max} ne '') { ($value) = centreon::plugins::misc::scale_bytesbit(value => ${$options{perf}}->{max}, - src_quantity => $src_quantity, src_unit => $src_unit, - dst_quantity => defined($dst_unit) ? $dst_quantity : $options{args}->{quantity}, + src_quantity => $src_quantity, src_unit => $src_unit, + dst_quantity => defined($dst_unit) ? $dst_quantity : $options{args}->{quantity}, dst_unit => defined($dst_unit) ? $dst_unit : $options{args}->{unit}); ${$options{perf}}->{max} = sprintf('%.2f', $value); } @@ -1153,14 +1153,14 @@ sub apply_pfdata_scale { if ($result->{start} ne '' && $result->{infinite_neg} == 0) { ($result->{start}) = centreon::plugins::misc::scale_bytesbit(value => $result->{start}, - src_quantity => $src_quantity, src_unit => $src_unit, - dst_quantity => defined($dst_unit) ? $dst_quantity : $options{args}->{quantity}, + src_quantity => $src_quantity, src_unit => $src_unit, + dst_quantity => defined($dst_unit) ? $dst_quantity : $options{args}->{quantity}, dst_unit => defined($dst_unit) ? $dst_unit : $options{args}->{unit}); } if ($result->{end} ne '' && $result->{infinite_pos} == 0) { ($result->{end}) = centreon::plugins::misc::scale_bytesbit(value => $result->{end}, - src_quantity => $src_quantity, src_unit => $src_unit, - dst_quantity => defined($dst_unit) ? $dst_quantity : $options{args}->{quantity}, + src_quantity => $src_quantity, src_unit => $src_unit, + dst_quantity => defined($dst_unit) ? $dst_quantity : $options{args}->{quantity}, dst_unit => defined($dst_unit) ? $dst_unit : $options{args}->{unit}); } @@ -1216,7 +1216,7 @@ sub apply_pfdata_percent { ${$options{perf}}->{$threshold} = centreon::plugins::misc::get_threshold_litteral(%$result); } - ${$options{perf}}->{max} = 100; + ${$options{perf}}->{max} = 100; } sub apply_pfdata_eval { @@ -1364,7 +1364,7 @@ sub parse_perfdata_extend_args { my ($self, %options) = @_; # --extend-perfdata=searchlabel,newlabel,method[,[newuom],[min],[max],[warning],[critical]] - my ($pfdata_match, $pfdata_substitute, $method, $uom_sub, $min_sub, $max_sub, $warn_sub, $crit_sub) = + my ($pfdata_match, $pfdata_substitute, $method, $uom_sub, $min_sub, $max_sub, $warn_sub, $crit_sub) = split /,/, $options{arg}; return if ((!defined($pfdata_match) || $pfdata_match eq '') && $options{type} != 3); @@ -1539,29 +1539,29 @@ remove all metrics whose value equals 0 and that don't have a maximum value. =item B<--explode-perfdata-max> Create a new metric for each metric that comes with a maximum limit. The new -metric will be named identically with a '_max' suffix). +metric will be named identically with a '_max' suffix). Example: it will split 'used_prct'=26.93%;0:80;0:90;0;100 into 'used_prct'=26.93%;0:80;0:90;0;100 'used_prct_max'=100%;;;; -=item B<--change-perfdata> B<--extend-perfdata> +=item B<--change-perfdata> B<--extend-perfdata> -Change or extend perfdata. +Change or extend perfdata. Syntax: --extend-perfdata=searchlabel,newlabel,target[,[newuom],[min],[max]] Common examples: =over 4 -Convert storage free perfdata into used: --change-perfdata=free,used,invert() +Convert storage free perfdata into used: --change-perfdata='free,used,invert()' -Convert storage free perfdata into used: --change-perfdata=used,free,invert() +Convert storage free perfdata into used: --change-perfdata='used,free,invert()' -Scale traffic values automatically: --change-perfdata=traffic,,scale(auto) +Scale traffic values automatically: --change-perfdata='traffic,,scale(auto)' -Scale traffic values in Mbps: --change-perfdata=traffic_in,,scale(Mbps),mbps +Scale traffic values in Mbps: --change-perfdata='traffic_in,,scale(Mbps),mbps' -Change traffic values in percent: --change-perfdata=traffic_in,,percent() +Change traffic values in percent: --change-perfdata='traffic_in,,percent()' =back @@ -1622,7 +1622,7 @@ and an output. =item B<--output-ignore-label> -Remove the status label ("OK:", "WARNING:", "UNKNOWN:", CRITICAL:") from the +Remove the status label ("OK:", "WARNING:", "UNKNOWN:", CRITICAL:") from the beginning of the output. Example: 'OK: Ram Total:...' will become 'Ram Total:...' diff --git a/src/centreon/plugins/passwordmgr/centreonvault.pm b/src/centreon/plugins/passwordmgr/centreonvault.pm index 17d8cf1de..555cc6cc6 100644 --- a/src/centreon/plugins/passwordmgr/centreonvault.pm +++ b/src/centreon/plugins/passwordmgr/centreonvault.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/passwordmgr/environment.pm b/src/centreon/plugins/passwordmgr/environment.pm index 25319842b..b8afab195 100644 --- a/src/centreon/plugins/passwordmgr/environment.pm +++ b/src/centreon/plugins/passwordmgr/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/passwordmgr/file.pm b/src/centreon/plugins/passwordmgr/file.pm index 866827b76..d1f88a292 100644 --- a/src/centreon/plugins/passwordmgr/file.pm +++ b/src/centreon/plugins/passwordmgr/file.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/passwordmgr/hashicorpvault.pm b/src/centreon/plugins/passwordmgr/hashicorpvault.pm index 40f0a8520..09756b6e5 100644 --- a/src/centreon/plugins/passwordmgr/hashicorpvault.pm +++ b/src/centreon/plugins/passwordmgr/hashicorpvault.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/passwordmgr/keepass.pm b/src/centreon/plugins/passwordmgr/keepass.pm index 56b93d774..51e621dce 100644 --- a/src/centreon/plugins/passwordmgr/keepass.pm +++ b/src/centreon/plugins/passwordmgr/keepass.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/passwordmgr/teampass.pm b/src/centreon/plugins/passwordmgr/teampass.pm index a266dd177..f50db9749 100644 --- a/src/centreon/plugins/passwordmgr/teampass.pm +++ b/src/centreon/plugins/passwordmgr/teampass.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/perfdata.pm b/src/centreon/plugins/perfdata.pm index 3982bc9c2..5a9f80bb7 100644 --- a/src/centreon/plugins/perfdata.pm +++ b/src/centreon/plugins/perfdata.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script.pm b/src/centreon/plugins/script.pm index faee006e9..bbd2bd2b5 100644 --- a/src/centreon/plugins/script.pm +++ b/src/centreon/plugins/script.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script_custom.pm b/src/centreon/plugins/script_custom.pm index bce31faa6..042b75e80 100644 --- a/src/centreon/plugins/script_custom.pm +++ b/src/centreon/plugins/script_custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script_custom/cli.pm b/src/centreon/plugins/script_custom/cli.pm index 4f3811df3..46d2542a7 100644 --- a/src/centreon/plugins/script_custom/cli.pm +++ b/src/centreon/plugins/script_custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script_simple.pm b/src/centreon/plugins/script_simple.pm index 65cf79c6a..17a8224fd 100644 --- a/src/centreon/plugins/script_simple.pm +++ b/src/centreon/plugins/script_simple.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script_snmp.pm b/src/centreon/plugins/script_snmp.pm index 45bb4ef80..092559f35 100644 --- a/src/centreon/plugins/script_snmp.pm +++ b/src/centreon/plugins/script_snmp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script_sql.pm b/src/centreon/plugins/script_sql.pm index 415989eff..bf6f719e2 100644 --- a/src/centreon/plugins/script_sql.pm +++ b/src/centreon/plugins/script_sql.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/script_wsman.pm b/src/centreon/plugins/script_wsman.pm index 5293d22ea..2504e33fd 100644 --- a/src/centreon/plugins/script_wsman.pm +++ b/src/centreon/plugins/script_wsman.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/snmp.pm b/src/centreon/plugins/snmp.pm index b326a5906..fb6eefaa5 100644 --- a/src/centreon/plugins/snmp.pm +++ b/src/centreon/plugins/snmp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/ssh.pm b/src/centreon/plugins/ssh.pm index 3ff10cd0f..139019e07 100644 --- a/src/centreon/plugins/ssh.pm +++ b/src/centreon/plugins/ssh.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/statefile.pm b/src/centreon/plugins/statefile.pm index e414f4a2a..62b58c99b 100644 --- a/src/centreon/plugins/statefile.pm +++ b/src/centreon/plugins/statefile.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/templates/counter.pm b/src/centreon/plugins/templates/counter.pm index 61340eb02..a0b079779 100644 --- a/src/centreon/plugins/templates/counter.pm +++ b/src/centreon/plugins/templates/counter.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -26,6 +26,7 @@ use strict; use warnings; use centreon::plugins::values; use centreon::plugins::misc; +use JSON::XS; my $sort_subs = { num => sub { $a <=> $b }, @@ -173,6 +174,7 @@ sub new { } } + return $self; } @@ -181,18 +183,52 @@ sub check_options { $self->SUPER::init(%options); if (defined($self->{option_results}->{list_counters})) { - my $list_counter = 'counter list:'; + my $list_counter = ''; my $th_counter = ''; + my $counters; foreach my $key (keys %{$self->{maps_counters}}) { foreach (@{$self->{maps_counters}->{$key}}) { + $counters->{metrics}->{$_->{label}}->{nlabel} =""; + $counters->{metrics}->{$_->{label}}->{min}=""; + $counters->{metrics}->{$_->{label}}->{max}=""; + $counters->{metrics}->{$_->{label}}->{unit}=""; + $counters->{metrics}->{$_->{label}}->{output_template}=""; + if(defined($_->{nlabel})) { + $counters->{metrics}->{$_->{label}}->{nlabel} = $_->{nlabel}; + } + if(defined($_->{set}->{perfdatas}->[0]->{min})) { + $counters->{metrics}->{$_->{label}}->{min} = $_->{set}->{perfdatas}->[0]->{min}; + } + if(defined($_->{set}->{perfdatas}->[0]->{max})) { + $counters->{metrics}->{$_->{label}}->{max} = $_->{set}->{perfdatas}->[0]->{max}; + } + if(defined($_->{set}->{perfdatas}->[0]->{unit})) { + $counters->{metrics}->{$_->{label}}->{unit} = $_->{set}->{perfdatas}->[0]->{unit}; + } + if(defined($_->{set}->{perfdatas}->[0]->{template})) { + $counters->{metrics}->{$_->{label}}->{output_template} = $_->{set}->{perfdatas}->[0]->{template}; + } my $label = $_->{label}; $label =~ s/-//g; - $list_counter .= " " . $_->{label}; - $th_counter .= " --warning-$_->{label}='\$_SERVICEWARNING" . uc($label) . "\$' --critical-$_->{label}='\$_SERVICECRITICAL" . uc($label) . "\$'"; + $list_counter .= $_->{label}." "; + $th_counter .= "--warning-$_->{label}='\$_SERVICEWARNING" . uc($label) . "\$' --critical-$_->{label}='\$_SERVICECRITICAL" . uc($label) . "\$'"; + } } - $self->{output}->output_add(short_msg => $list_counter); - $self->{output}->output_add(long_msg => 'configuration: ' . $th_counter); + $counters->{"counter list"}=$list_counter; + $counters->{"pack configuration"}=$th_counter." \$_SERVICEEXTRAOPTIONS\$"; + + my $result_data =""; + eval { + $result_data = JSON::XS->new->indent->space_after->canonical->utf8->encode($counters); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot use \$counters as it is a malformed JSON: " . $@); + $self->{output}->option_exit(); + } + + $self->{output}->output_add(short_msg => "counter list: ".$list_counter); + $self->{output}->output_add(long_msg => $result_data); $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1); $self->{output}->exit(); } diff --git a/src/centreon/plugins/templates/hardware.pm b/src/centreon/plugins/templates/hardware.pm index a6fb0ffaf..2c58682fa 100644 --- a/src/centreon/plugins/templates/hardware.pm +++ b/src/centreon/plugins/templates/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/values.pm b/src/centreon/plugins/values.pm index 7cb4142fa..4fada28c4 100644 --- a/src/centreon/plugins/values.pm +++ b/src/centreon/plugins/values.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon/plugins/wsman.pm b/src/centreon/plugins/wsman.pm index 4e79de958..be20c5842 100644 --- a/src/centreon/plugins/wsman.pm +++ b/src/centreon/plugins/wsman.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/centreon_plugins.pl b/src/centreon_plugins.pl index fb3486373..da2f39ff5 100755 --- a/src/centreon_plugins.pl +++ b/src/centreon_plugins.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/apigateway/mode/discovery.pm b/src/cloud/aws/apigateway/mode/discovery.pm index 5ff4ae12b..1f8a9ce60 100644 --- a/src/cloud/aws/apigateway/mode/discovery.pm +++ b/src/cloud/aws/apigateway/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/apigateway/mode/latency.pm b/src/cloud/aws/apigateway/mode/latency.pm index c544cfa80..0f3f64389 100644 --- a/src/cloud/aws/apigateway/mode/latency.pm +++ b/src/cloud/aws/apigateway/mode/latency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/apigateway/mode/requests.pm b/src/cloud/aws/apigateway/mode/requests.pm index da05b4977..dac709e2a 100644 --- a/src/cloud/aws/apigateway/mode/requests.pm +++ b/src/cloud/aws/apigateway/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/apigateway/plugin.pm b/src/cloud/aws/apigateway/plugin.pm index 49ce59695..d6b529e8f 100644 --- a/src/cloud/aws/apigateway/plugin.pm +++ b/src/cloud/aws/apigateway/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/backup/mode/discovery.pm b/src/cloud/aws/backup/mode/discovery.pm index 84b9c3763..234bf62ec 100644 --- a/src/cloud/aws/backup/mode/discovery.pm +++ b/src/cloud/aws/backup/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/backup/mode/jobstatus.pm b/src/cloud/aws/backup/mode/jobstatus.pm index 0232512ac..93176181d 100644 --- a/src/cloud/aws/backup/mode/jobstatus.pm +++ b/src/cloud/aws/backup/mode/jobstatus.pm @@ -1,6 +1,6 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/backup/plugin.pm b/src/cloud/aws/backup/plugin.pm index f0af4e9a0..6d5a49184 100644 --- a/src/cloud/aws/backup/plugin.pm +++ b/src/cloud/aws/backup/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/billing/mode/discovery.pm b/src/cloud/aws/billing/mode/discovery.pm index 8b4ba7b5d..8341445e8 100644 --- a/src/cloud/aws/billing/mode/discovery.pm +++ b/src/cloud/aws/billing/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/billing/mode/estimatedcharges.pm b/src/cloud/aws/billing/mode/estimatedcharges.pm index 482604892..f4f6e460a 100644 --- a/src/cloud/aws/billing/mode/estimatedcharges.pm +++ b/src/cloud/aws/billing/mode/estimatedcharges.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/billing/mode/listservices.pm b/src/cloud/aws/billing/mode/listservices.pm index 7b188e582..ada361ed1 100644 --- a/src/cloud/aws/billing/mode/listservices.pm +++ b/src/cloud/aws/billing/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/billing/plugin.pm b/src/cloud/aws/billing/plugin.pm index c7fe59438..a38d37609 100644 --- a/src/cloud/aws/billing/plugin.pm +++ b/src/cloud/aws/billing/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudfront/mode/errors.pm b/src/cloud/aws/cloudfront/mode/errors.pm index 107efe424..7bd270f2a 100644 --- a/src/cloud/aws/cloudfront/mode/errors.pm +++ b/src/cloud/aws/cloudfront/mode/errors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudfront/mode/requests.pm b/src/cloud/aws/cloudfront/mode/requests.pm index e4a6b95c4..8366d3da1 100644 --- a/src/cloud/aws/cloudfront/mode/requests.pm +++ b/src/cloud/aws/cloudfront/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudfront/mode/throughput.pm b/src/cloud/aws/cloudfront/mode/throughput.pm index 0485a74d5..003922375 100644 --- a/src/cloud/aws/cloudfront/mode/throughput.pm +++ b/src/cloud/aws/cloudfront/mode/throughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudfront/plugin.pm b/src/cloud/aws/cloudfront/plugin.pm index 30ca1e8af..4d9e794fe 100644 --- a/src/cloud/aws/cloudfront/plugin.pm +++ b/src/cloud/aws/cloudfront/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudtrail/mode/checktrailstatus.pm b/src/cloud/aws/cloudtrail/mode/checktrailstatus.pm index b360db747..566ca3285 100644 --- a/src/cloud/aws/cloudtrail/mode/checktrailstatus.pm +++ b/src/cloud/aws/cloudtrail/mode/checktrailstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudtrail/mode/countevents.pm b/src/cloud/aws/cloudtrail/mode/countevents.pm index b09fae031..e190445d0 100644 --- a/src/cloud/aws/cloudtrail/mode/countevents.pm +++ b/src/cloud/aws/cloudtrail/mode/countevents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudtrail/plugin.pm b/src/cloud/aws/cloudtrail/plugin.pm index 4274dd1e3..bdf0375d6 100644 --- a/src/cloud/aws/cloudtrail/plugin.pm +++ b/src/cloud/aws/cloudtrail/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatch/mode/discovery.pm b/src/cloud/aws/cloudwatch/mode/discovery.pm index 8a99f92e3..991944eba 100644 --- a/src/cloud/aws/cloudwatch/mode/discovery.pm +++ b/src/cloud/aws/cloudwatch/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatch/mode/getalarms.pm b/src/cloud/aws/cloudwatch/mode/getalarms.pm index e651c6132..c73bd3c8c 100644 --- a/src/cloud/aws/cloudwatch/mode/getalarms.pm +++ b/src/cloud/aws/cloudwatch/mode/getalarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatch/mode/getmetrics.pm b/src/cloud/aws/cloudwatch/mode/getmetrics.pm index 8e863aec4..3a9a2739d 100644 --- a/src/cloud/aws/cloudwatch/mode/getmetrics.pm +++ b/src/cloud/aws/cloudwatch/mode/getmetrics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatch/mode/listmetrics.pm b/src/cloud/aws/cloudwatch/mode/listmetrics.pm index 9e0bccb94..48cb9af83 100644 --- a/src/cloud/aws/cloudwatch/mode/listmetrics.pm +++ b/src/cloud/aws/cloudwatch/mode/listmetrics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatch/plugin.pm b/src/cloud/aws/cloudwatch/plugin.pm index a5e08c1e3..50444a7bc 100644 --- a/src/cloud/aws/cloudwatch/plugin.pm +++ b/src/cloud/aws/cloudwatch/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatchlogs/mode/getlogs.pm b/src/cloud/aws/cloudwatchlogs/mode/getlogs.pm index 1228e4ad0..f5e45bf63 100644 --- a/src/cloud/aws/cloudwatchlogs/mode/getlogs.pm +++ b/src/cloud/aws/cloudwatchlogs/mode/getlogs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatchlogs/mode/listgroups.pm b/src/cloud/aws/cloudwatchlogs/mode/listgroups.pm index 9970b0665..039b4b295 100644 --- a/src/cloud/aws/cloudwatchlogs/mode/listgroups.pm +++ b/src/cloud/aws/cloudwatchlogs/mode/listgroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/cloudwatchlogs/plugin.pm b/src/cloud/aws/cloudwatchlogs/plugin.pm index 57c3ff519..426aecc79 100644 --- a/src/cloud/aws/cloudwatchlogs/plugin.pm +++ b/src/cloud/aws/cloudwatchlogs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/custom/awscli.pm b/src/cloud/aws/custom/awscli.pm index 7d39505b6..153857c4d 100644 --- a/src/cloud/aws/custom/awscli.pm +++ b/src/cloud/aws/custom/awscli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/custom/mode.pm b/src/cloud/aws/custom/mode.pm index bde8085e4..794e5cd2a 100644 --- a/src/cloud/aws/custom/mode.pm +++ b/src/cloud/aws/custom/mode.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/custom/paws.pm b/src/cloud/aws/custom/paws.pm index 39d05797e..30100c0ce 100644 --- a/src/cloud/aws/custom/paws.pm +++ b/src/cloud/aws/custom/paws.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/directconnect/mode/connections.pm b/src/cloud/aws/directconnect/mode/connections.pm index acc0746de..1dbaa7886 100644 --- a/src/cloud/aws/directconnect/mode/connections.pm +++ b/src/cloud/aws/directconnect/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/directconnect/mode/discovery.pm b/src/cloud/aws/directconnect/mode/discovery.pm index 9dba86ed2..f5efe397f 100644 --- a/src/cloud/aws/directconnect/mode/discovery.pm +++ b/src/cloud/aws/directconnect/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/directconnect/mode/listconnections.pm b/src/cloud/aws/directconnect/mode/listconnections.pm index 0933ea4b2..6f34cf7b0 100644 --- a/src/cloud/aws/directconnect/mode/listconnections.pm +++ b/src/cloud/aws/directconnect/mode/listconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/directconnect/mode/listvirtualinterfaces.pm b/src/cloud/aws/directconnect/mode/listvirtualinterfaces.pm index 6da2483da..d7f2e4a67 100644 --- a/src/cloud/aws/directconnect/mode/listvirtualinterfaces.pm +++ b/src/cloud/aws/directconnect/mode/listvirtualinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/directconnect/mode/virtualinterfaces.pm b/src/cloud/aws/directconnect/mode/virtualinterfaces.pm index af8ba3d31..68ec230b9 100644 --- a/src/cloud/aws/directconnect/mode/virtualinterfaces.pm +++ b/src/cloud/aws/directconnect/mode/virtualinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/directconnect/plugin.pm b/src/cloud/aws/directconnect/plugin.pm index 2f905365d..363b0f23e 100644 --- a/src/cloud/aws/directconnect/plugin.pm +++ b/src/cloud/aws/directconnect/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ebs/mode/discovery.pm b/src/cloud/aws/ebs/mode/discovery.pm index 507993c9e..1a633787d 100644 --- a/src/cloud/aws/ebs/mode/discovery.pm +++ b/src/cloud/aws/ebs/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ebs/mode/listvolumes.pm b/src/cloud/aws/ebs/mode/listvolumes.pm index 00a0b7893..2134fc74a 100644 --- a/src/cloud/aws/ebs/mode/listvolumes.pm +++ b/src/cloud/aws/ebs/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ebs/mode/volumeio.pm b/src/cloud/aws/ebs/mode/volumeio.pm index 5b41de1f7..b426410ab 100644 --- a/src/cloud/aws/ebs/mode/volumeio.pm +++ b/src/cloud/aws/ebs/mode/volumeio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ebs/mode/volumeiops.pm b/src/cloud/aws/ebs/mode/volumeiops.pm index e8f69adce..2be15e4ea 100644 --- a/src/cloud/aws/ebs/mode/volumeiops.pm +++ b/src/cloud/aws/ebs/mode/volumeiops.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ebs/mode/volumetime.pm b/src/cloud/aws/ebs/mode/volumetime.pm index 07356e09d..760e955a9 100644 --- a/src/cloud/aws/ebs/mode/volumetime.pm +++ b/src/cloud/aws/ebs/mode/volumetime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ebs/plugin.pm b/src/cloud/aws/ebs/plugin.pm index dd67dd653..58512be95 100644 --- a/src/cloud/aws/ebs/plugin.pm +++ b/src/cloud/aws/ebs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/asgstatus.pm b/src/cloud/aws/ec2/mode/asgstatus.pm index 636326e6d..6e4990419 100644 --- a/src/cloud/aws/ec2/mode/asgstatus.pm +++ b/src/cloud/aws/ec2/mode/asgstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/cpu.pm b/src/cloud/aws/ec2/mode/cpu.pm index 84bfd7629..223ffb361 100644 --- a/src/cloud/aws/ec2/mode/cpu.pm +++ b/src/cloud/aws/ec2/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/discovery.pm b/src/cloud/aws/ec2/mode/discovery.pm index a91eee835..2db21e8e5 100644 --- a/src/cloud/aws/ec2/mode/discovery.pm +++ b/src/cloud/aws/ec2/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/discoveryspotfleetrequests.pm b/src/cloud/aws/ec2/mode/discoveryspotfleetrequests.pm index d431aac4c..8894b8daa 100644 --- a/src/cloud/aws/ec2/mode/discoveryspotfleetrequests.pm +++ b/src/cloud/aws/ec2/mode/discoveryspotfleetrequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/diskio.pm b/src/cloud/aws/ec2/mode/diskio.pm index b0af9965d..62f97080f 100644 --- a/src/cloud/aws/ec2/mode/diskio.pm +++ b/src/cloud/aws/ec2/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/instancesstatus.pm b/src/cloud/aws/ec2/mode/instancesstatus.pm index 762c52f0d..4b5a42560 100644 --- a/src/cloud/aws/ec2/mode/instancesstatus.pm +++ b/src/cloud/aws/ec2/mode/instancesstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/instancestypes.pm b/src/cloud/aws/ec2/mode/instancestypes.pm index 9f5b4c704..789bf17be 100644 --- a/src/cloud/aws/ec2/mode/instancestypes.pm +++ b/src/cloud/aws/ec2/mode/instancestypes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/listasg.pm b/src/cloud/aws/ec2/mode/listasg.pm index eb2a6f705..35e446f82 100644 --- a/src/cloud/aws/ec2/mode/listasg.pm +++ b/src/cloud/aws/ec2/mode/listasg.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/listinstances.pm b/src/cloud/aws/ec2/mode/listinstances.pm index 5310dc04f..1270040c7 100644 --- a/src/cloud/aws/ec2/mode/listinstances.pm +++ b/src/cloud/aws/ec2/mode/listinstances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/listspotfleetrequests.pm b/src/cloud/aws/ec2/mode/listspotfleetrequests.pm index 4850d1bf3..597772116 100644 --- a/src/cloud/aws/ec2/mode/listspotfleetrequests.pm +++ b/src/cloud/aws/ec2/mode/listspotfleetrequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/network.pm b/src/cloud/aws/ec2/mode/network.pm index 933af003b..8868f2abe 100644 --- a/src/cloud/aws/ec2/mode/network.pm +++ b/src/cloud/aws/ec2/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/spotactiveinstances.pm b/src/cloud/aws/ec2/mode/spotactiveinstances.pm index f1610035c..e30434bc5 100644 --- a/src/cloud/aws/ec2/mode/spotactiveinstances.pm +++ b/src/cloud/aws/ec2/mode/spotactiveinstances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/mode/status.pm b/src/cloud/aws/ec2/mode/status.pm index 9dc62aca6..26d7e44c0 100644 --- a/src/cloud/aws/ec2/mode/status.pm +++ b/src/cloud/aws/ec2/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ec2/plugin.pm b/src/cloud/aws/ec2/plugin.pm index e1ffbf9f9..bbf18e51c 100644 --- a/src/cloud/aws/ec2/plugin.pm +++ b/src/cloud/aws/ec2/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/efs/mode/connections.pm b/src/cloud/aws/efs/mode/connections.pm index 90fa773da..5cb2d6e89 100644 --- a/src/cloud/aws/efs/mode/connections.pm +++ b/src/cloud/aws/efs/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/efs/mode/datausage.pm b/src/cloud/aws/efs/mode/datausage.pm index a41cfaa1b..db60dd0fb 100644 --- a/src/cloud/aws/efs/mode/datausage.pm +++ b/src/cloud/aws/efs/mode/datausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/efs/mode/discovery.pm b/src/cloud/aws/efs/mode/discovery.pm index 48f860101..500c06d9b 100644 --- a/src/cloud/aws/efs/mode/discovery.pm +++ b/src/cloud/aws/efs/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/efs/plugin.pm b/src/cloud/aws/efs/plugin.pm index e24fcec77..220be77ab 100644 --- a/src/cloud/aws/efs/plugin.pm +++ b/src/cloud/aws/efs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/commandsmemcached.pm b/src/cloud/aws/elasticache/mode/commandsmemcached.pm index a5618adb9..6ecf06389 100644 --- a/src/cloud/aws/elasticache/mode/commandsmemcached.pm +++ b/src/cloud/aws/elasticache/mode/commandsmemcached.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/commandsredis.pm b/src/cloud/aws/elasticache/mode/commandsredis.pm index c29b3fffc..9db544054 100644 --- a/src/cloud/aws/elasticache/mode/commandsredis.pm +++ b/src/cloud/aws/elasticache/mode/commandsredis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/connections.pm b/src/cloud/aws/elasticache/mode/connections.pm index c88b3b6cc..e96ecd1f0 100644 --- a/src/cloud/aws/elasticache/mode/connections.pm +++ b/src/cloud/aws/elasticache/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/cpu.pm b/src/cloud/aws/elasticache/mode/cpu.pm index 8a07409a3..f9058784c 100644 --- a/src/cloud/aws/elasticache/mode/cpu.pm +++ b/src/cloud/aws/elasticache/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/discovery.pm b/src/cloud/aws/elasticache/mode/discovery.pm index b5096f986..6a12fe8f3 100644 --- a/src/cloud/aws/elasticache/mode/discovery.pm +++ b/src/cloud/aws/elasticache/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/evictions.pm b/src/cloud/aws/elasticache/mode/evictions.pm index f9e79d47f..243b43e08 100644 --- a/src/cloud/aws/elasticache/mode/evictions.pm +++ b/src/cloud/aws/elasticache/mode/evictions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/items.pm b/src/cloud/aws/elasticache/mode/items.pm index d640df286..dedc83d6c 100644 --- a/src/cloud/aws/elasticache/mode/items.pm +++ b/src/cloud/aws/elasticache/mode/items.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/network.pm b/src/cloud/aws/elasticache/mode/network.pm index ccd493678..ab010b408 100644 --- a/src/cloud/aws/elasticache/mode/network.pm +++ b/src/cloud/aws/elasticache/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/replication.pm b/src/cloud/aws/elasticache/mode/replication.pm index 711a5fd7f..da17e6eff 100644 --- a/src/cloud/aws/elasticache/mode/replication.pm +++ b/src/cloud/aws/elasticache/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/requestsmemcached.pm b/src/cloud/aws/elasticache/mode/requestsmemcached.pm index b85ed1f0f..f0491c087 100644 --- a/src/cloud/aws/elasticache/mode/requestsmemcached.pm +++ b/src/cloud/aws/elasticache/mode/requestsmemcached.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/requestsredis.pm b/src/cloud/aws/elasticache/mode/requestsredis.pm index 0f3b68877..670bacd5c 100644 --- a/src/cloud/aws/elasticache/mode/requestsredis.pm +++ b/src/cloud/aws/elasticache/mode/requestsredis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/usagememcached.pm b/src/cloud/aws/elasticache/mode/usagememcached.pm index 13752b8cb..7527f79c2 100644 --- a/src/cloud/aws/elasticache/mode/usagememcached.pm +++ b/src/cloud/aws/elasticache/mode/usagememcached.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/mode/usageredis.pm b/src/cloud/aws/elasticache/mode/usageredis.pm index f9e0c7f34..cb7f34e20 100644 --- a/src/cloud/aws/elasticache/mode/usageredis.pm +++ b/src/cloud/aws/elasticache/mode/usageredis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elasticache/plugin.pm b/src/cloud/aws/elasticache/plugin.pm index 1ab3ce413..4a2f55faf 100644 --- a/src/cloud/aws/elasticache/plugin.pm +++ b/src/cloud/aws/elasticache/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/application/mode/connections.pm b/src/cloud/aws/elb/application/mode/connections.pm index 426f4eb21..06980ec9b 100644 --- a/src/cloud/aws/elb/application/mode/connections.pm +++ b/src/cloud/aws/elb/application/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/application/mode/discovery.pm b/src/cloud/aws/elb/application/mode/discovery.pm index 21fe45e03..090d250c7 100644 --- a/src/cloud/aws/elb/application/mode/discovery.pm +++ b/src/cloud/aws/elb/application/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/application/mode/httpcodes.pm b/src/cloud/aws/elb/application/mode/httpcodes.pm index fe53d0331..b6b94200b 100644 --- a/src/cloud/aws/elb/application/mode/httpcodes.pm +++ b/src/cloud/aws/elb/application/mode/httpcodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/application/mode/targetshealth.pm b/src/cloud/aws/elb/application/mode/targetshealth.pm index d747370b4..da1359b82 100644 --- a/src/cloud/aws/elb/application/mode/targetshealth.pm +++ b/src/cloud/aws/elb/application/mode/targetshealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/application/plugin.pm b/src/cloud/aws/elb/application/plugin.pm index fe875b676..9314b0842 100644 --- a/src/cloud/aws/elb/application/plugin.pm +++ b/src/cloud/aws/elb/application/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/classic/mode/discovery.pm b/src/cloud/aws/elb/classic/mode/discovery.pm index 939fcc794..b67b5038e 100644 --- a/src/cloud/aws/elb/classic/mode/discovery.pm +++ b/src/cloud/aws/elb/classic/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/classic/mode/httpcodes.pm b/src/cloud/aws/elb/classic/mode/httpcodes.pm index 14cbae401..66a00b0ab 100644 --- a/src/cloud/aws/elb/classic/mode/httpcodes.pm +++ b/src/cloud/aws/elb/classic/mode/httpcodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/classic/mode/performances.pm b/src/cloud/aws/elb/classic/mode/performances.pm index a8b9e8218..7c0f308eb 100644 --- a/src/cloud/aws/elb/classic/mode/performances.pm +++ b/src/cloud/aws/elb/classic/mode/performances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/classic/mode/queues.pm b/src/cloud/aws/elb/classic/mode/queues.pm index 8797d33e5..9d6f5164f 100644 --- a/src/cloud/aws/elb/classic/mode/queues.pm +++ b/src/cloud/aws/elb/classic/mode/queues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/classic/mode/targetshealth.pm b/src/cloud/aws/elb/classic/mode/targetshealth.pm index ab85ff111..433b2c7d5 100644 --- a/src/cloud/aws/elb/classic/mode/targetshealth.pm +++ b/src/cloud/aws/elb/classic/mode/targetshealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/classic/plugin.pm b/src/cloud/aws/elb/classic/plugin.pm index dd1e1bd36..5ea080be6 100644 --- a/src/cloud/aws/elb/classic/plugin.pm +++ b/src/cloud/aws/elb/classic/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/network/mode/discovery.pm b/src/cloud/aws/elb/network/mode/discovery.pm index 19abe842f..06f4110dc 100644 --- a/src/cloud/aws/elb/network/mode/discovery.pm +++ b/src/cloud/aws/elb/network/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/network/mode/listhealthtargetgroups.pm b/src/cloud/aws/elb/network/mode/listhealthtargetgroups.pm index 8aa0479ce..f7cf8ae74 100644 --- a/src/cloud/aws/elb/network/mode/listhealthtargetgroups.pm +++ b/src/cloud/aws/elb/network/mode/listhealthtargetgroups.pm @@ -1,6 +1,6 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/network/mode/targetshealth.pm b/src/cloud/aws/elb/network/mode/targetshealth.pm index fc66a4ddf..fa7aca071 100644 --- a/src/cloud/aws/elb/network/mode/targetshealth.pm +++ b/src/cloud/aws/elb/network/mode/targetshealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/elb/network/plugin.pm b/src/cloud/aws/elb/network/plugin.pm index a41b5f50e..846386eed 100644 --- a/src/cloud/aws/elb/network/plugin.pm +++ b/src/cloud/aws/elb/network/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/fsx/mode/datausage.pm b/src/cloud/aws/fsx/mode/datausage.pm index 4c24220ee..fb7c38ccc 100644 --- a/src/cloud/aws/fsx/mode/datausage.pm +++ b/src/cloud/aws/fsx/mode/datausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/fsx/mode/discovery.pm b/src/cloud/aws/fsx/mode/discovery.pm index c8078fd3b..9790d8476 100644 --- a/src/cloud/aws/fsx/mode/discovery.pm +++ b/src/cloud/aws/fsx/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/fsx/mode/freespace.pm b/src/cloud/aws/fsx/mode/freespace.pm index 06dade75d..f48070448 100644 --- a/src/cloud/aws/fsx/mode/freespace.pm +++ b/src/cloud/aws/fsx/mode/freespace.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/fsx/plugin.pm b/src/cloud/aws/fsx/plugin.pm index c063c16f7..e6e417962 100644 --- a/src/cloud/aws/fsx/plugin.pm +++ b/src/cloud/aws/fsx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/health/mode/events.pm b/src/cloud/aws/health/mode/events.pm index c52d42553..b744a09f1 100644 --- a/src/cloud/aws/health/mode/events.pm +++ b/src/cloud/aws/health/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/health/plugin.pm b/src/cloud/aws/health/plugin.pm index 75255058a..66cac4019 100644 --- a/src/cloud/aws/health/plugin.pm +++ b/src/cloud/aws/health/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/kinesis/mode/discovery.pm b/src/cloud/aws/kinesis/mode/discovery.pm index 3c454120f..e07376c9a 100644 --- a/src/cloud/aws/kinesis/mode/discovery.pm +++ b/src/cloud/aws/kinesis/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/kinesis/mode/recordsstats.pm b/src/cloud/aws/kinesis/mode/recordsstats.pm index 225f33393..e17d3c52e 100644 --- a/src/cloud/aws/kinesis/mode/recordsstats.pm +++ b/src/cloud/aws/kinesis/mode/recordsstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/kinesis/mode/streams.pm b/src/cloud/aws/kinesis/mode/streams.pm index 2513035ee..f6605d6ff 100644 --- a/src/cloud/aws/kinesis/mode/streams.pm +++ b/src/cloud/aws/kinesis/mode/streams.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/kinesis/plugin.pm b/src/cloud/aws/kinesis/plugin.pm index 9b0dc2cb5..7aa811d1b 100644 --- a/src/cloud/aws/kinesis/plugin.pm +++ b/src/cloud/aws/kinesis/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/lambda/mode/discovery.pm b/src/cloud/aws/lambda/mode/discovery.pm index 19470ae11..60f356bd8 100644 --- a/src/cloud/aws/lambda/mode/discovery.pm +++ b/src/cloud/aws/lambda/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/lambda/mode/invocations.pm b/src/cloud/aws/lambda/mode/invocations.pm index bd4bebe9d..c42feb3ac 100644 --- a/src/cloud/aws/lambda/mode/invocations.pm +++ b/src/cloud/aws/lambda/mode/invocations.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/lambda/plugin.pm b/src/cloud/aws/lambda/plugin.pm index a61f74b2c..51b5130e7 100644 --- a/src/cloud/aws/lambda/plugin.pm +++ b/src/cloud/aws/lambda/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/connections.pm b/src/cloud/aws/rds/mode/connections.pm index 8ff38d7d2..2b32f2a8b 100644 --- a/src/cloud/aws/rds/mode/connections.pm +++ b/src/cloud/aws/rds/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/cpu.pm b/src/cloud/aws/rds/mode/cpu.pm index 99775e741..0ac700dec 100644 --- a/src/cloud/aws/rds/mode/cpu.pm +++ b/src/cloud/aws/rds/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/discovery.pm b/src/cloud/aws/rds/mode/discovery.pm index eadb8a7b6..107c1c2bc 100644 --- a/src/cloud/aws/rds/mode/discovery.pm +++ b/src/cloud/aws/rds/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/diskio.pm b/src/cloud/aws/rds/mode/diskio.pm index 0253606e7..ab7f5c4b9 100644 --- a/src/cloud/aws/rds/mode/diskio.pm +++ b/src/cloud/aws/rds/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/instancestatus.pm b/src/cloud/aws/rds/mode/instancestatus.pm index 793ded373..c812fb29b 100644 --- a/src/cloud/aws/rds/mode/instancestatus.pm +++ b/src/cloud/aws/rds/mode/instancestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/listclusters.pm b/src/cloud/aws/rds/mode/listclusters.pm index 1c1184a95..d9d3062ef 100644 --- a/src/cloud/aws/rds/mode/listclusters.pm +++ b/src/cloud/aws/rds/mode/listclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/listinstances.pm b/src/cloud/aws/rds/mode/listinstances.pm index 4ae48106d..838b5c57c 100644 --- a/src/cloud/aws/rds/mode/listinstances.pm +++ b/src/cloud/aws/rds/mode/listinstances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/network.pm b/src/cloud/aws/rds/mode/network.pm index d5a5b2911..361c6688e 100644 --- a/src/cloud/aws/rds/mode/network.pm +++ b/src/cloud/aws/rds/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/queries.pm b/src/cloud/aws/rds/mode/queries.pm index bd8b75010..60ffa9a1f 100644 --- a/src/cloud/aws/rds/mode/queries.pm +++ b/src/cloud/aws/rds/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/storage.pm b/src/cloud/aws/rds/mode/storage.pm index 2e4e2db6e..e27290a85 100644 --- a/src/cloud/aws/rds/mode/storage.pm +++ b/src/cloud/aws/rds/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/transactions.pm b/src/cloud/aws/rds/mode/transactions.pm index 12b62784f..844e5aa31 100644 --- a/src/cloud/aws/rds/mode/transactions.pm +++ b/src/cloud/aws/rds/mode/transactions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/mode/volume.pm b/src/cloud/aws/rds/mode/volume.pm index 5f9acbb9d..e745f827b 100644 --- a/src/cloud/aws/rds/mode/volume.pm +++ b/src/cloud/aws/rds/mode/volume.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/rds/plugin.pm b/src/cloud/aws/rds/plugin.pm index 9bf12c18a..c9148eb22 100644 --- a/src/cloud/aws/rds/plugin.pm +++ b/src/cloud/aws/rds/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/s3/mode/bucketsize.pm b/src/cloud/aws/s3/mode/bucketsize.pm index 8cb12f6ea..62d624d4c 100644 --- a/src/cloud/aws/s3/mode/bucketsize.pm +++ b/src/cloud/aws/s3/mode/bucketsize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/s3/mode/discovery.pm b/src/cloud/aws/s3/mode/discovery.pm index 97d736f0b..e4e335af6 100644 --- a/src/cloud/aws/s3/mode/discovery.pm +++ b/src/cloud/aws/s3/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/s3/mode/objects.pm b/src/cloud/aws/s3/mode/objects.pm index 113fd9bf8..b4547cc02 100644 --- a/src/cloud/aws/s3/mode/objects.pm +++ b/src/cloud/aws/s3/mode/objects.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/s3/mode/requests.pm b/src/cloud/aws/s3/mode/requests.pm index 65b0c1690..6a7686403 100644 --- a/src/cloud/aws/s3/mode/requests.pm +++ b/src/cloud/aws/s3/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/s3/plugin.pm b/src/cloud/aws/s3/plugin.pm index a3c6b2bb8..38e22bc18 100644 --- a/src/cloud/aws/s3/plugin.pm +++ b/src/cloud/aws/s3/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ses/mode/emails.pm b/src/cloud/aws/ses/mode/emails.pm index 6bb7d6eea..ca6e7f0fc 100644 --- a/src/cloud/aws/ses/mode/emails.pm +++ b/src/cloud/aws/ses/mode/emails.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/ses/plugin.pm b/src/cloud/aws/ses/plugin.pm index e60f222f7..c8e9e14b8 100644 --- a/src/cloud/aws/ses/plugin.pm +++ b/src/cloud/aws/ses/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sns/mode/discovery.pm b/src/cloud/aws/sns/mode/discovery.pm index 6dc17d2e9..7a031fc9a 100644 --- a/src/cloud/aws/sns/mode/discovery.pm +++ b/src/cloud/aws/sns/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sns/mode/listtopics.pm b/src/cloud/aws/sns/mode/listtopics.pm index d1a260466..7ade5cfb1 100644 --- a/src/cloud/aws/sns/mode/listtopics.pm +++ b/src/cloud/aws/sns/mode/listtopics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sns/mode/notifications.pm b/src/cloud/aws/sns/mode/notifications.pm index 2571afb0f..7cb584f35 100644 --- a/src/cloud/aws/sns/mode/notifications.pm +++ b/src/cloud/aws/sns/mode/notifications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sns/plugin.pm b/src/cloud/aws/sns/plugin.pm index f6aa3c12e..6e6135bba 100644 --- a/src/cloud/aws/sns/plugin.pm +++ b/src/cloud/aws/sns/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sqs/mode/discovery.pm b/src/cloud/aws/sqs/mode/discovery.pm index 20c17903e..2aa81719e 100644 --- a/src/cloud/aws/sqs/mode/discovery.pm +++ b/src/cloud/aws/sqs/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sqs/mode/listqueues.pm b/src/cloud/aws/sqs/mode/listqueues.pm index 21ff3ded7..e463cfdcf 100644 --- a/src/cloud/aws/sqs/mode/listqueues.pm +++ b/src/cloud/aws/sqs/mode/listqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sqs/mode/queues.pm b/src/cloud/aws/sqs/mode/queues.pm index bd1e2c3e6..2c5240037 100644 --- a/src/cloud/aws/sqs/mode/queues.pm +++ b/src/cloud/aws/sqs/mode/queues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/sqs/plugin.pm b/src/cloud/aws/sqs/plugin.pm index b1be5f5df..a2eacbdc7 100644 --- a/src/cloud/aws/sqs/plugin.pm +++ b/src/cloud/aws/sqs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/transitgateway/mode/listgateways.pm b/src/cloud/aws/transitgateway/mode/listgateways.pm index 2d0d08ebc..4dc690d03 100644 --- a/src/cloud/aws/transitgateway/mode/listgateways.pm +++ b/src/cloud/aws/transitgateway/mode/listgateways.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/transitgateway/mode/traffic.pm b/src/cloud/aws/transitgateway/mode/traffic.pm index 25072d4e4..47fd1d0f4 100644 --- a/src/cloud/aws/transitgateway/mode/traffic.pm +++ b/src/cloud/aws/transitgateway/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/transitgateway/plugin.pm b/src/cloud/aws/transitgateway/plugin.pm index 090bd7531..f0b17e620 100644 --- a/src/cloud/aws/transitgateway/plugin.pm +++ b/src/cloud/aws/transitgateway/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/vpn/mode/discovery.pm b/src/cloud/aws/vpn/mode/discovery.pm index b2ba5e09d..bcf4715de 100644 --- a/src/cloud/aws/vpn/mode/discovery.pm +++ b/src/cloud/aws/vpn/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/vpn/mode/listvpn.pm b/src/cloud/aws/vpn/mode/listvpn.pm index a114f2fac..8be26fe4d 100644 --- a/src/cloud/aws/vpn/mode/listvpn.pm +++ b/src/cloud/aws/vpn/mode/listvpn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/vpn/mode/traffic.pm b/src/cloud/aws/vpn/mode/traffic.pm index d8a2fec1b..65522bc52 100644 --- a/src/cloud/aws/vpn/mode/traffic.pm +++ b/src/cloud/aws/vpn/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/aws/vpn/plugin.pm b/src/cloud/aws/vpn/plugin.pm index 9099f98e0..694a2ecd2 100644 --- a/src/cloud/aws/vpn/plugin.pm +++ b/src/cloud/aws/vpn/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/backlog.pm b/src/cloud/azure/analytics/eventhubs/mode/backlog.pm index c24497378..acc9d6eaa 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/backlog.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/backlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/connections.pm b/src/cloud/azure/analytics/eventhubs/mode/connections.pm index cff75e48a..9bacb901a 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/connections.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/discovery.pm b/src/cloud/azure/analytics/eventhubs/mode/discovery.pm index f790fa1af..c25ea3a2c 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/discovery.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/errors.pm b/src/cloud/azure/analytics/eventhubs/mode/errors.pm index 1bdf7a7a8..4e787976b 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/errors.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/errors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/health.pm b/src/cloud/azure/analytics/eventhubs/mode/health.pm index f3a890d1f..01a1549cc 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/health.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/messages.pm b/src/cloud/azure/analytics/eventhubs/mode/messages.pm index e9f34c98d..b70e8d4ee 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/messages.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/messages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/requests.pm b/src/cloud/azure/analytics/eventhubs/mode/requests.pm index 1ec026567..7c00404b3 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/requests.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/mode/throughput.pm b/src/cloud/azure/analytics/eventhubs/mode/throughput.pm index 1c894771b..7e59fb0fe 100644 --- a/src/cloud/azure/analytics/eventhubs/mode/throughput.pm +++ b/src/cloud/azure/analytics/eventhubs/mode/throughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/analytics/eventhubs/plugin.pm b/src/cloud/azure/analytics/eventhubs/plugin.pm index ca088e8b6..ba4c0014f 100644 --- a/src/cloud/azure/analytics/eventhubs/plugin.pm +++ b/src/cloud/azure/analytics/eventhubs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/classicstorage/storageaccount/mode/discovery.pm b/src/cloud/azure/classicstorage/storageaccount/mode/discovery.pm index 621385846..bae7e0e3e 100644 --- a/src/cloud/azure/classicstorage/storageaccount/mode/discovery.pm +++ b/src/cloud/azure/classicstorage/storageaccount/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/classicstorage/storageaccount/mode/listresources.pm b/src/cloud/azure/classicstorage/storageaccount/mode/listresources.pm index af9d3b693..f11366f10 100644 --- a/src/cloud/azure/classicstorage/storageaccount/mode/listresources.pm +++ b/src/cloud/azure/classicstorage/storageaccount/mode/listresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/classicstorage/storageaccount/plugin.pm b/src/cloud/azure/classicstorage/storageaccount/plugin.pm index ed862c39c..a758bfb1e 100644 --- a/src/cloud/azure/classicstorage/storageaccount/plugin.pm +++ b/src/cloud/azure/classicstorage/storageaccount/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/appusage.pm b/src/cloud/azure/common/appservice/mode/appusage.pm index b1fb458ee..7ae1bbc38 100644 --- a/src/cloud/azure/common/appservice/mode/appusage.pm +++ b/src/cloud/azure/common/appservice/mode/appusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/cputime.pm b/src/cloud/azure/common/appservice/mode/cputime.pm index 9e9fbc53c..6bad7cd0d 100644 --- a/src/cloud/azure/common/appservice/mode/cputime.pm +++ b/src/cloud/azure/common/appservice/mode/cputime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/data.pm b/src/cloud/azure/common/appservice/mode/data.pm index 4d73fdcde..7322b9dcb 100644 --- a/src/cloud/azure/common/appservice/mode/data.pm +++ b/src/cloud/azure/common/appservice/mode/data.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/discovery.pm b/src/cloud/azure/common/appservice/mode/discovery.pm index 806500556..87ef8b36d 100644 --- a/src/cloud/azure/common/appservice/mode/discovery.pm +++ b/src/cloud/azure/common/appservice/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/filesystem.pm b/src/cloud/azure/common/appservice/mode/filesystem.pm index 4ef92fb99..7b060e742 100644 --- a/src/cloud/azure/common/appservice/mode/filesystem.pm +++ b/src/cloud/azure/common/appservice/mode/filesystem.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/gcusage.pm b/src/cloud/azure/common/appservice/mode/gcusage.pm index 6d600ca57..556b87ca2 100644 --- a/src/cloud/azure/common/appservice/mode/gcusage.pm +++ b/src/cloud/azure/common/appservice/mode/gcusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/health.pm b/src/cloud/azure/common/appservice/mode/health.pm index ec19f603b..549d8576d 100644 --- a/src/cloud/azure/common/appservice/mode/health.pm +++ b/src/cloud/azure/common/appservice/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/httprequests.pm b/src/cloud/azure/common/appservice/mode/httprequests.pm index a1123b96a..eef9a9569 100644 --- a/src/cloud/azure/common/appservice/mode/httprequests.pm +++ b/src/cloud/azure/common/appservice/mode/httprequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/iooperations.pm b/src/cloud/azure/common/appservice/mode/iooperations.pm index 274f4d25a..c3c0e3b03 100644 --- a/src/cloud/azure/common/appservice/mode/iooperations.pm +++ b/src/cloud/azure/common/appservice/mode/iooperations.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/memory.pm b/src/cloud/azure/common/appservice/mode/memory.pm index 38056b2cc..ecb3368b7 100644 --- a/src/cloud/azure/common/appservice/mode/memory.pm +++ b/src/cloud/azure/common/appservice/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/responsetime.pm b/src/cloud/azure/common/appservice/mode/responsetime.pm index 173f26143..be757680f 100644 --- a/src/cloud/azure/common/appservice/mode/responsetime.pm +++ b/src/cloud/azure/common/appservice/mode/responsetime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/appservice/mode/status.pm b/src/cloud/azure/common/appservice/mode/status.pm index 5c3fdabc7..41bcc9625 100644 --- a/src/cloud/azure/common/appservice/mode/status.pm +++ b/src/cloud/azure/common/appservice/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/accountusedcapacity.pm b/src/cloud/azure/common/storageaccount/accountusedcapacity.pm index c21696af0..3907c0f6b 100644 --- a/src/cloud/azure/common/storageaccount/accountusedcapacity.pm +++ b/src/cloud/azure/common/storageaccount/accountusedcapacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/blobcapacity.pm b/src/cloud/azure/common/storageaccount/blobcapacity.pm index 4965d16c8..3c43e9bf6 100644 --- a/src/cloud/azure/common/storageaccount/blobcapacity.pm +++ b/src/cloud/azure/common/storageaccount/blobcapacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/blobcontainercount.pm b/src/cloud/azure/common/storageaccount/blobcontainercount.pm index 24ff67adf..3ff004011 100644 --- a/src/cloud/azure/common/storageaccount/blobcontainercount.pm +++ b/src/cloud/azure/common/storageaccount/blobcontainercount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/blobcount.pm b/src/cloud/azure/common/storageaccount/blobcount.pm index 4cb1dce50..0d570c4f8 100644 --- a/src/cloud/azure/common/storageaccount/blobcount.pm +++ b/src/cloud/azure/common/storageaccount/blobcount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/filecapacity.pm b/src/cloud/azure/common/storageaccount/filecapacity.pm index 475994af2..e52beb57d 100644 --- a/src/cloud/azure/common/storageaccount/filecapacity.pm +++ b/src/cloud/azure/common/storageaccount/filecapacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/filecount.pm b/src/cloud/azure/common/storageaccount/filecount.pm index 9b1dfd967..d8bdfa34f 100644 --- a/src/cloud/azure/common/storageaccount/filecount.pm +++ b/src/cloud/azure/common/storageaccount/filecount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/filesharecount.pm b/src/cloud/azure/common/storageaccount/filesharecount.pm index 783d6a4f8..1f74b5ef0 100644 --- a/src/cloud/azure/common/storageaccount/filesharecount.pm +++ b/src/cloud/azure/common/storageaccount/filesharecount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/filesharequota.pm b/src/cloud/azure/common/storageaccount/filesharequota.pm index 69c6a7364..795495a88 100644 --- a/src/cloud/azure/common/storageaccount/filesharequota.pm +++ b/src/cloud/azure/common/storageaccount/filesharequota.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/health.pm b/src/cloud/azure/common/storageaccount/health.pm index e974aa0cd..c5dd0097e 100644 --- a/src/cloud/azure/common/storageaccount/health.pm +++ b/src/cloud/azure/common/storageaccount/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/listfileshares.pm b/src/cloud/azure/common/storageaccount/listfileshares.pm index e2d3e0997..617ba5f32 100644 --- a/src/cloud/azure/common/storageaccount/listfileshares.pm +++ b/src/cloud/azure/common/storageaccount/listfileshares.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/queuecapacity.pm b/src/cloud/azure/common/storageaccount/queuecapacity.pm index 4eff557cd..6e40bbcce 100644 --- a/src/cloud/azure/common/storageaccount/queuecapacity.pm +++ b/src/cloud/azure/common/storageaccount/queuecapacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/queuecount.pm b/src/cloud/azure/common/storageaccount/queuecount.pm index 925ab6282..7f2459d51 100644 --- a/src/cloud/azure/common/storageaccount/queuecount.pm +++ b/src/cloud/azure/common/storageaccount/queuecount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/queuemessagecount.pm b/src/cloud/azure/common/storageaccount/queuemessagecount.pm index cdb160763..0a3501389 100644 --- a/src/cloud/azure/common/storageaccount/queuemessagecount.pm +++ b/src/cloud/azure/common/storageaccount/queuemessagecount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/tablecapacity.pm b/src/cloud/azure/common/storageaccount/tablecapacity.pm index 2bf12d27d..a782fc622 100644 --- a/src/cloud/azure/common/storageaccount/tablecapacity.pm +++ b/src/cloud/azure/common/storageaccount/tablecapacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/tablecount.pm b/src/cloud/azure/common/storageaccount/tablecount.pm index 43496e67f..349f47959 100644 --- a/src/cloud/azure/common/storageaccount/tablecount.pm +++ b/src/cloud/azure/common/storageaccount/tablecount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/tableentitycount.pm b/src/cloud/azure/common/storageaccount/tableentitycount.pm index b12b9fd09..70b2643a8 100644 --- a/src/cloud/azure/common/storageaccount/tableentitycount.pm +++ b/src/cloud/azure/common/storageaccount/tableentitycount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/transactionsavailability.pm b/src/cloud/azure/common/storageaccount/transactionsavailability.pm index 36111c11f..85d560500 100644 --- a/src/cloud/azure/common/storageaccount/transactionsavailability.pm +++ b/src/cloud/azure/common/storageaccount/transactionsavailability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/transactionscount.pm b/src/cloud/azure/common/storageaccount/transactionscount.pm index 61ad16508..05979b8a0 100644 --- a/src/cloud/azure/common/storageaccount/transactionscount.pm +++ b/src/cloud/azure/common/storageaccount/transactionscount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/transactionslatency.pm b/src/cloud/azure/common/storageaccount/transactionslatency.pm index 3f44b3376..45e9f0e91 100644 --- a/src/cloud/azure/common/storageaccount/transactionslatency.pm +++ b/src/cloud/azure/common/storageaccount/transactionslatency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/common/storageaccount/transactionsthroughput.pm b/src/cloud/azure/common/storageaccount/transactionsthroughput.pm index 745e37519..f73cfe594 100644 --- a/src/cloud/azure/common/storageaccount/transactionsthroughput.pm +++ b/src/cloud/azure/common/storageaccount/transactionsthroughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/allocatableresources.pm b/src/cloud/azure/compute/aks/mode/allocatableresources.pm index 2c17c5f94..8f9fb7405 100644 --- a/src/cloud/azure/compute/aks/mode/allocatableresources.pm +++ b/src/cloud/azure/compute/aks/mode/allocatableresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/cpu.pm b/src/cloud/azure/compute/aks/mode/cpu.pm index c07aa8d6e..6761f46f3 100644 --- a/src/cloud/azure/compute/aks/mode/cpu.pm +++ b/src/cloud/azure/compute/aks/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/discovery.pm b/src/cloud/azure/compute/aks/mode/discovery.pm index 2296172eb..634954959 100644 --- a/src/cloud/azure/compute/aks/mode/discovery.pm +++ b/src/cloud/azure/compute/aks/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/health.pm b/src/cloud/azure/compute/aks/mode/health.pm index c07b86868..ad57896ec 100644 --- a/src/cloud/azure/compute/aks/mode/health.pm +++ b/src/cloud/azure/compute/aks/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/storage.pm b/src/cloud/azure/compute/aks/mode/storage.pm index ea7996b8d..b96815e1f 100644 --- a/src/cloud/azure/compute/aks/mode/storage.pm +++ b/src/cloud/azure/compute/aks/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/traffic.pm b/src/cloud/azure/compute/aks/mode/traffic.pm index 14723ab17..76da8de72 100644 --- a/src/cloud/azure/compute/aks/mode/traffic.pm +++ b/src/cloud/azure/compute/aks/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/mode/unneedednodes.pm b/src/cloud/azure/compute/aks/mode/unneedednodes.pm index b2ba8b8ba..fc4a20bbb 100644 --- a/src/cloud/azure/compute/aks/mode/unneedednodes.pm +++ b/src/cloud/azure/compute/aks/mode/unneedednodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/aks/plugin.pm b/src/cloud/azure/compute/aks/plugin.pm index 27da9b73b..193abe1c7 100644 --- a/src/cloud/azure/compute/aks/plugin.pm +++ b/src/cloud/azure/compute/aks/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/disk/mode/discovery.pm b/src/cloud/azure/compute/disk/mode/discovery.pm index 5d7cb65bb..fa2c5bb3e 100644 --- a/src/cloud/azure/compute/disk/mode/discovery.pm +++ b/src/cloud/azure/compute/disk/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/disk/mode/diskio.pm b/src/cloud/azure/compute/disk/mode/diskio.pm index a4e4b4a8d..a1dd9b67b 100644 --- a/src/cloud/azure/compute/disk/mode/diskio.pm +++ b/src/cloud/azure/compute/disk/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/disk/plugin.pm b/src/cloud/azure/compute/disk/plugin.pm index fa26abba4..55c436b3a 100644 --- a/src/cloud/azure/compute/disk/plugin.pm +++ b/src/cloud/azure/compute/disk/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/functions/mode/executions.pm b/src/cloud/azure/compute/functions/mode/executions.pm index 2024e61cf..0ffbbabe2 100644 --- a/src/cloud/azure/compute/functions/mode/executions.pm +++ b/src/cloud/azure/compute/functions/mode/executions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/functions/plugin.pm b/src/cloud/azure/compute/functions/plugin.pm index 19c033465..b12e57eb7 100644 --- a/src/cloud/azure/compute/functions/plugin.pm +++ b/src/cloud/azure/compute/functions/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/cpu.pm b/src/cloud/azure/compute/virtualmachine/mode/cpu.pm index 359fb3a4d..0f48434a2 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/cpu.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/discovery.pm b/src/cloud/azure/compute/virtualmachine/mode/discovery.pm index 858e99aa6..712dc1855 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/discovery.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/diskio.pm b/src/cloud/azure/compute/virtualmachine/mode/diskio.pm index 77c96c241..8ce37d906 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/diskio.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/health.pm b/src/cloud/azure/compute/virtualmachine/mode/health.pm index c7128524a..e46e43e43 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/health.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/listresources.pm b/src/cloud/azure/compute/virtualmachine/mode/listresources.pm index 9358e4b91..5bd93ce85 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/listresources.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/listresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/memory.pm b/src/cloud/azure/compute/virtualmachine/mode/memory.pm index fb391d626..4c068364f 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/memory.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/network.pm b/src/cloud/azure/compute/virtualmachine/mode/network.pm index b132f4cea..b16419e3d 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/network.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/mode/vmsizes.pm b/src/cloud/azure/compute/virtualmachine/mode/vmsizes.pm index 3f953e264..def7a4c0e 100644 --- a/src/cloud/azure/compute/virtualmachine/mode/vmsizes.pm +++ b/src/cloud/azure/compute/virtualmachine/mode/vmsizes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/virtualmachine/plugin.pm b/src/cloud/azure/compute/virtualmachine/plugin.pm index 2ea9544ed..2b5c586e0 100644 --- a/src/cloud/azure/compute/virtualmachine/plugin.pm +++ b/src/cloud/azure/compute/virtualmachine/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/mode/cpu.pm b/src/cloud/azure/compute/vmscalesets/mode/cpu.pm index db2e43cc4..2e5b250a8 100644 --- a/src/cloud/azure/compute/vmscalesets/mode/cpu.pm +++ b/src/cloud/azure/compute/vmscalesets/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/mode/discovery.pm b/src/cloud/azure/compute/vmscalesets/mode/discovery.pm index c0aa4ea20..69d0043d8 100644 --- a/src/cloud/azure/compute/vmscalesets/mode/discovery.pm +++ b/src/cloud/azure/compute/vmscalesets/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/mode/diskio.pm b/src/cloud/azure/compute/vmscalesets/mode/diskio.pm index 40771a229..6525ffe5d 100644 --- a/src/cloud/azure/compute/vmscalesets/mode/diskio.pm +++ b/src/cloud/azure/compute/vmscalesets/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/mode/health.pm b/src/cloud/azure/compute/vmscalesets/mode/health.pm index da5f653b1..e24d13f34 100644 --- a/src/cloud/azure/compute/vmscalesets/mode/health.pm +++ b/src/cloud/azure/compute/vmscalesets/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/mode/memory.pm b/src/cloud/azure/compute/vmscalesets/mode/memory.pm index 866ad7c35..15cc5a660 100644 --- a/src/cloud/azure/compute/vmscalesets/mode/memory.pm +++ b/src/cloud/azure/compute/vmscalesets/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/mode/traffic.pm b/src/cloud/azure/compute/vmscalesets/mode/traffic.pm index 7093a0c9d..bfb164714 100644 --- a/src/cloud/azure/compute/vmscalesets/mode/traffic.pm +++ b/src/cloud/azure/compute/vmscalesets/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/compute/vmscalesets/plugin.pm b/src/cloud/azure/compute/vmscalesets/plugin.pm index 83c9d6a1d..e6ab94db9 100644 --- a/src/cloud/azure/compute/vmscalesets/plugin.pm +++ b/src/cloud/azure/compute/vmscalesets/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/custom/api.pm b/src/cloud/azure/custom/api.pm index 92adaf097..e8cc7d64c 100644 --- a/src/cloud/azure/custom/api.pm +++ b/src/cloud/azure/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/custom/azcli.pm b/src/cloud/azure/custom/azcli.pm index c869c2a9c..a0eb74acf 100644 --- a/src/cloud/azure/custom/azcli.pm +++ b/src/cloud/azure/custom/azcli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/custom/mode.pm b/src/cloud/azure/custom/mode.pm index a92fe69b0..81db041f4 100644 --- a/src/cloud/azure/custom/mode.pm +++ b/src/cloud/azure/custom/mode.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/availability.pm b/src/cloud/azure/database/cosmosdb/mode/availability.pm index 1704a5986..124fe95a0 100644 --- a/src/cloud/azure/database/cosmosdb/mode/availability.pm +++ b/src/cloud/azure/database/cosmosdb/mode/availability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/cache.pm b/src/cloud/azure/database/cosmosdb/mode/cache.pm index 80922c360..33ed58e46 100644 --- a/src/cloud/azure/database/cosmosdb/mode/cache.pm +++ b/src/cloud/azure/database/cosmosdb/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/discovery.pm b/src/cloud/azure/database/cosmosdb/mode/discovery.pm index 136aa4384..d737fbce0 100644 --- a/src/cloud/azure/database/cosmosdb/mode/discovery.pm +++ b/src/cloud/azure/database/cosmosdb/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/document.pm b/src/cloud/azure/database/cosmosdb/mode/document.pm index e45def76b..4621d4e6b 100644 --- a/src/cloud/azure/database/cosmosdb/mode/document.pm +++ b/src/cloud/azure/database/cosmosdb/mode/document.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/health.pm b/src/cloud/azure/database/cosmosdb/mode/health.pm index 35cd3c5e1..3a232e34a 100644 --- a/src/cloud/azure/database/cosmosdb/mode/health.pm +++ b/src/cloud/azure/database/cosmosdb/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/latency.pm b/src/cloud/azure/database/cosmosdb/mode/latency.pm index 18f1b846a..dea488387 100644 --- a/src/cloud/azure/database/cosmosdb/mode/latency.pm +++ b/src/cloud/azure/database/cosmosdb/mode/latency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/throughput.pm b/src/cloud/azure/database/cosmosdb/mode/throughput.pm index de822adca..e7f2ac376 100644 --- a/src/cloud/azure/database/cosmosdb/mode/throughput.pm +++ b/src/cloud/azure/database/cosmosdb/mode/throughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/units.pm b/src/cloud/azure/database/cosmosdb/mode/units.pm index 205796be2..21147319c 100644 --- a/src/cloud/azure/database/cosmosdb/mode/units.pm +++ b/src/cloud/azure/database/cosmosdb/mode/units.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/mode/usage.pm b/src/cloud/azure/database/cosmosdb/mode/usage.pm index 6b2f7d858..0fe1b1334 100644 --- a/src/cloud/azure/database/cosmosdb/mode/usage.pm +++ b/src/cloud/azure/database/cosmosdb/mode/usage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/cosmosdb/plugin.pm b/src/cloud/azure/database/cosmosdb/plugin.pm index cc76c0d6d..08655055c 100644 --- a/src/cloud/azure/database/cosmosdb/plugin.pm +++ b/src/cloud/azure/database/cosmosdb/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/mode/cpu.pm b/src/cloud/azure/database/elasticpool/mode/cpu.pm index d65bd62a8..dadfa8f8a 100644 --- a/src/cloud/azure/database/elasticpool/mode/cpu.pm +++ b/src/cloud/azure/database/elasticpool/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/mode/discovery.pm b/src/cloud/azure/database/elasticpool/mode/discovery.pm index 6e3860378..6867df326 100644 --- a/src/cloud/azure/database/elasticpool/mode/discovery.pm +++ b/src/cloud/azure/database/elasticpool/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/mode/dtu.pm b/src/cloud/azure/database/elasticpool/mode/dtu.pm index e29ad09e2..e830ab141 100644 --- a/src/cloud/azure/database/elasticpool/mode/dtu.pm +++ b/src/cloud/azure/database/elasticpool/mode/dtu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/mode/log.pm b/src/cloud/azure/database/elasticpool/mode/log.pm index 31749f4bf..0dd4b9569 100644 --- a/src/cloud/azure/database/elasticpool/mode/log.pm +++ b/src/cloud/azure/database/elasticpool/mode/log.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/mode/sessions.pm b/src/cloud/azure/database/elasticpool/mode/sessions.pm index dcf905b14..03f268987 100644 --- a/src/cloud/azure/database/elasticpool/mode/sessions.pm +++ b/src/cloud/azure/database/elasticpool/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/mode/storage.pm b/src/cloud/azure/database/elasticpool/mode/storage.pm index 4d38493fe..8be2a73c7 100644 --- a/src/cloud/azure/database/elasticpool/mode/storage.pm +++ b/src/cloud/azure/database/elasticpool/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/elasticpool/plugin.pm b/src/cloud/azure/database/elasticpool/plugin.pm index bf2f74eda..505e21f69 100644 --- a/src/cloud/azure/database/elasticpool/plugin.pm +++ b/src/cloud/azure/database/elasticpool/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/connections.pm b/src/cloud/azure/database/mariadb/mode/connections.pm index c9a21cca9..3d4ee6932 100644 --- a/src/cloud/azure/database/mariadb/mode/connections.pm +++ b/src/cloud/azure/database/mariadb/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/cpu.pm b/src/cloud/azure/database/mariadb/mode/cpu.pm index 2291ee4e6..85e16d814 100644 --- a/src/cloud/azure/database/mariadb/mode/cpu.pm +++ b/src/cloud/azure/database/mariadb/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/discovery.pm b/src/cloud/azure/database/mariadb/mode/discovery.pm index 83278e66e..f8f5948a0 100644 --- a/src/cloud/azure/database/mariadb/mode/discovery.pm +++ b/src/cloud/azure/database/mariadb/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/ioconsumption.pm b/src/cloud/azure/database/mariadb/mode/ioconsumption.pm index 0bb09b8b2..22567e942 100644 --- a/src/cloud/azure/database/mariadb/mode/ioconsumption.pm +++ b/src/cloud/azure/database/mariadb/mode/ioconsumption.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/memory.pm b/src/cloud/azure/database/mariadb/mode/memory.pm index 8cfbcba6b..667215fdf 100644 --- a/src/cloud/azure/database/mariadb/mode/memory.pm +++ b/src/cloud/azure/database/mariadb/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/replication.pm b/src/cloud/azure/database/mariadb/mode/replication.pm index 58b6ee802..cf9b6128b 100644 --- a/src/cloud/azure/database/mariadb/mode/replication.pm +++ b/src/cloud/azure/database/mariadb/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/storage.pm b/src/cloud/azure/database/mariadb/mode/storage.pm index 09c1346bc..3819fbc16 100644 --- a/src/cloud/azure/database/mariadb/mode/storage.pm +++ b/src/cloud/azure/database/mariadb/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/mode/traffic.pm b/src/cloud/azure/database/mariadb/mode/traffic.pm index 1d1a11516..a938dda0a 100644 --- a/src/cloud/azure/database/mariadb/mode/traffic.pm +++ b/src/cloud/azure/database/mariadb/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mariadb/plugin.pm b/src/cloud/azure/database/mariadb/plugin.pm index 075d40957..786e8e4cd 100644 --- a/src/cloud/azure/database/mariadb/plugin.pm +++ b/src/cloud/azure/database/mariadb/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/connections.pm b/src/cloud/azure/database/mysql/mode/connections.pm index b03283896..36d425be5 100644 --- a/src/cloud/azure/database/mysql/mode/connections.pm +++ b/src/cloud/azure/database/mysql/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/cpu.pm b/src/cloud/azure/database/mysql/mode/cpu.pm index 152b5b159..c159c8562 100644 --- a/src/cloud/azure/database/mysql/mode/cpu.pm +++ b/src/cloud/azure/database/mysql/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/discovery.pm b/src/cloud/azure/database/mysql/mode/discovery.pm index bab1b31d8..61097050c 100644 --- a/src/cloud/azure/database/mysql/mode/discovery.pm +++ b/src/cloud/azure/database/mysql/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/ioconsumption.pm b/src/cloud/azure/database/mysql/mode/ioconsumption.pm index d1e9f0623..f32d0473a 100644 --- a/src/cloud/azure/database/mysql/mode/ioconsumption.pm +++ b/src/cloud/azure/database/mysql/mode/ioconsumption.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/memory.pm b/src/cloud/azure/database/mysql/mode/memory.pm index 23f07afb9..c04879a14 100644 --- a/src/cloud/azure/database/mysql/mode/memory.pm +++ b/src/cloud/azure/database/mysql/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/queries.pm b/src/cloud/azure/database/mysql/mode/queries.pm index f19f956af..c74224caf 100644 --- a/src/cloud/azure/database/mysql/mode/queries.pm +++ b/src/cloud/azure/database/mysql/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/replication.pm b/src/cloud/azure/database/mysql/mode/replication.pm index 79935a707..f90ba7575 100644 --- a/src/cloud/azure/database/mysql/mode/replication.pm +++ b/src/cloud/azure/database/mysql/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/storage.pm b/src/cloud/azure/database/mysql/mode/storage.pm index b7fa5bf75..5e8750284 100644 --- a/src/cloud/azure/database/mysql/mode/storage.pm +++ b/src/cloud/azure/database/mysql/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/mode/traffic.pm b/src/cloud/azure/database/mysql/mode/traffic.pm index 7d6b93af3..76ae90282 100644 --- a/src/cloud/azure/database/mysql/mode/traffic.pm +++ b/src/cloud/azure/database/mysql/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/mysql/plugin.pm b/src/cloud/azure/database/mysql/plugin.pm index cb5c1508f..14b27b577 100644 --- a/src/cloud/azure/database/mysql/plugin.pm +++ b/src/cloud/azure/database/mysql/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/cachelatency.pm b/src/cloud/azure/database/redis/mode/cachelatency.pm index de2d32ed7..60b92ad5b 100644 --- a/src/cloud/azure/database/redis/mode/cachelatency.pm +++ b/src/cloud/azure/database/redis/mode/cachelatency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/cachethroughput.pm b/src/cloud/azure/database/redis/mode/cachethroughput.pm index 655b83bbc..6963fceb1 100644 --- a/src/cloud/azure/database/redis/mode/cachethroughput.pm +++ b/src/cloud/azure/database/redis/mode/cachethroughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/cacheusage.pm b/src/cloud/azure/database/redis/mode/cacheusage.pm index 1efea9fcc..1f5111047 100644 --- a/src/cloud/azure/database/redis/mode/cacheusage.pm +++ b/src/cloud/azure/database/redis/mode/cacheusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/clients.pm b/src/cloud/azure/database/redis/mode/clients.pm index 7cd47358b..12f761ce6 100644 --- a/src/cloud/azure/database/redis/mode/clients.pm +++ b/src/cloud/azure/database/redis/mode/clients.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/cpu.pm b/src/cloud/azure/database/redis/mode/cpu.pm index 64ffbd54e..2c93c43a8 100644 --- a/src/cloud/azure/database/redis/mode/cpu.pm +++ b/src/cloud/azure/database/redis/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/discovery.pm b/src/cloud/azure/database/redis/mode/discovery.pm index e64a139dd..0bec7a5fe 100644 --- a/src/cloud/azure/database/redis/mode/discovery.pm +++ b/src/cloud/azure/database/redis/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/errors.pm b/src/cloud/azure/database/redis/mode/errors.pm index cbb0dcc3b..27411a1e4 100644 --- a/src/cloud/azure/database/redis/mode/errors.pm +++ b/src/cloud/azure/database/redis/mode/errors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/health.pm b/src/cloud/azure/database/redis/mode/health.pm index 4173f1501..c0d7124a4 100644 --- a/src/cloud/azure/database/redis/mode/health.pm +++ b/src/cloud/azure/database/redis/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/load.pm b/src/cloud/azure/database/redis/mode/load.pm index 074763e75..ebfffc663 100644 --- a/src/cloud/azure/database/redis/mode/load.pm +++ b/src/cloud/azure/database/redis/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/memory.pm b/src/cloud/azure/database/redis/mode/memory.pm index e39f94bc7..28b2ca3ba 100644 --- a/src/cloud/azure/database/redis/mode/memory.pm +++ b/src/cloud/azure/database/redis/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/mode/operations.pm b/src/cloud/azure/database/redis/mode/operations.pm index b66486f8a..1c8135cfa 100644 --- a/src/cloud/azure/database/redis/mode/operations.pm +++ b/src/cloud/azure/database/redis/mode/operations.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/redis/plugin.pm b/src/cloud/azure/database/redis/plugin.pm index 5f79b2596..ac42472ca 100644 --- a/src/cloud/azure/database/redis/plugin.pm +++ b/src/cloud/azure/database/redis/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/appresources.pm b/src/cloud/azure/database/sqldatabase/mode/appresources.pm index b0582d163..06f80c5cc 100644 --- a/src/cloud/azure/database/sqldatabase/mode/appresources.pm +++ b/src/cloud/azure/database/sqldatabase/mode/appresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/connections.pm b/src/cloud/azure/database/sqldatabase/mode/connections.pm index 215db4a08..6aa82ed87 100644 --- a/src/cloud/azure/database/sqldatabase/mode/connections.pm +++ b/src/cloud/azure/database/sqldatabase/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/deadlocks.pm b/src/cloud/azure/database/sqldatabase/mode/deadlocks.pm index 011dd96b7..fac83b386 100644 --- a/src/cloud/azure/database/sqldatabase/mode/deadlocks.pm +++ b/src/cloud/azure/database/sqldatabase/mode/deadlocks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/discovery.pm b/src/cloud/azure/database/sqldatabase/mode/discovery.pm index a782f6065..150f31788 100644 --- a/src/cloud/azure/database/sqldatabase/mode/discovery.pm +++ b/src/cloud/azure/database/sqldatabase/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/health.pm b/src/cloud/azure/database/sqldatabase/mode/health.pm index f4a1c3ce0..6cf178386 100644 --- a/src/cloud/azure/database/sqldatabase/mode/health.pm +++ b/src/cloud/azure/database/sqldatabase/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/listdatabases.pm b/src/cloud/azure/database/sqldatabase/mode/listdatabases.pm index 7f016db60..7b05b86dd 100644 --- a/src/cloud/azure/database/sqldatabase/mode/listdatabases.pm +++ b/src/cloud/azure/database/sqldatabase/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/sessions.pm b/src/cloud/azure/database/sqldatabase/mode/sessions.pm index 877ce55d3..0709fc626 100644 --- a/src/cloud/azure/database/sqldatabase/mode/sessions.pm +++ b/src/cloud/azure/database/sqldatabase/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/storage.pm b/src/cloud/azure/database/sqldatabase/mode/storage.pm index 2aa4e3caa..0d70f8aab 100644 --- a/src/cloud/azure/database/sqldatabase/mode/storage.pm +++ b/src/cloud/azure/database/sqldatabase/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/mode/workers.pm b/src/cloud/azure/database/sqldatabase/mode/workers.pm index 00d60129f..baf331634 100644 --- a/src/cloud/azure/database/sqldatabase/mode/workers.pm +++ b/src/cloud/azure/database/sqldatabase/mode/workers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqldatabase/plugin.pm b/src/cloud/azure/database/sqldatabase/plugin.pm index 5f518510c..95b459ba2 100644 --- a/src/cloud/azure/database/sqldatabase/plugin.pm +++ b/src/cloud/azure/database/sqldatabase/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlmanagedinstance/mode/cpu.pm b/src/cloud/azure/database/sqlmanagedinstance/mode/cpu.pm index 356c8d63a..9952d177d 100644 --- a/src/cloud/azure/database/sqlmanagedinstance/mode/cpu.pm +++ b/src/cloud/azure/database/sqlmanagedinstance/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlmanagedinstance/mode/discovery.pm b/src/cloud/azure/database/sqlmanagedinstance/mode/discovery.pm index 3f3f9cd0c..85c59b8ed 100644 --- a/src/cloud/azure/database/sqlmanagedinstance/mode/discovery.pm +++ b/src/cloud/azure/database/sqlmanagedinstance/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlmanagedinstance/mode/diskio.pm b/src/cloud/azure/database/sqlmanagedinstance/mode/diskio.pm index bd4c6bebb..57dcb1a46 100644 --- a/src/cloud/azure/database/sqlmanagedinstance/mode/diskio.pm +++ b/src/cloud/azure/database/sqlmanagedinstance/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlmanagedinstance/mode/health.pm b/src/cloud/azure/database/sqlmanagedinstance/mode/health.pm index 9d0a88ff0..c2a7a1bc7 100644 --- a/src/cloud/azure/database/sqlmanagedinstance/mode/health.pm +++ b/src/cloud/azure/database/sqlmanagedinstance/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlmanagedinstance/mode/storage.pm b/src/cloud/azure/database/sqlmanagedinstance/mode/storage.pm index bcfe0bcd1..a32d6c57e 100644 --- a/src/cloud/azure/database/sqlmanagedinstance/mode/storage.pm +++ b/src/cloud/azure/database/sqlmanagedinstance/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlmanagedinstance/plugin.pm b/src/cloud/azure/database/sqlmanagedinstance/plugin.pm index 4ed2c9971..7e13c54e9 100644 --- a/src/cloud/azure/database/sqlmanagedinstance/plugin.pm +++ b/src/cloud/azure/database/sqlmanagedinstance/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlserver/mode/discovery.pm b/src/cloud/azure/database/sqlserver/mode/discovery.pm index 9df9bf3f9..2ee4a19a6 100644 --- a/src/cloud/azure/database/sqlserver/mode/discovery.pm +++ b/src/cloud/azure/database/sqlserver/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlserver/mode/listservers.pm b/src/cloud/azure/database/sqlserver/mode/listservers.pm index e5e82fb18..81e922ceb 100644 --- a/src/cloud/azure/database/sqlserver/mode/listservers.pm +++ b/src/cloud/azure/database/sqlserver/mode/listservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlserver/mode/serverstatus.pm b/src/cloud/azure/database/sqlserver/mode/serverstatus.pm index 299313175..a3cf1ecf2 100644 --- a/src/cloud/azure/database/sqlserver/mode/serverstatus.pm +++ b/src/cloud/azure/database/sqlserver/mode/serverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/database/sqlserver/plugin.pm b/src/cloud/azure/database/sqlserver/plugin.pm index 9233baa85..d6673bc52 100644 --- a/src/cloud/azure/database/sqlserver/plugin.pm +++ b/src/cloud/azure/database/sqlserver/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/datafactory/factories/mode/discovery.pm b/src/cloud/azure/datafactory/factories/mode/discovery.pm index e3e32ef80..21308c50d 100644 --- a/src/cloud/azure/datafactory/factories/mode/discovery.pm +++ b/src/cloud/azure/datafactory/factories/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/datafactory/factories/mode/factoryusage.pm b/src/cloud/azure/datafactory/factories/mode/factoryusage.pm index b5ab4efa2..a15656530 100644 --- a/src/cloud/azure/datafactory/factories/mode/factoryusage.pm +++ b/src/cloud/azure/datafactory/factories/mode/factoryusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/datafactory/factories/mode/integrationruntime.pm b/src/cloud/azure/datafactory/factories/mode/integrationruntime.pm index a0c30faf5..2f55e3198 100644 --- a/src/cloud/azure/datafactory/factories/mode/integrationruntime.pm +++ b/src/cloud/azure/datafactory/factories/mode/integrationruntime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/datafactory/factories/plugin.pm b/src/cloud/azure/datafactory/factories/plugin.pm index 314c99dda..49435c8dc 100644 --- a/src/cloud/azure/datafactory/factories/plugin.pm +++ b/src/cloud/azure/datafactory/factories/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/devtools/appconfiguration/mode/discovery.pm b/src/cloud/azure/devtools/appconfiguration/mode/discovery.pm index 829588e3a..bdddc4811 100644 --- a/src/cloud/azure/devtools/appconfiguration/mode/discovery.pm +++ b/src/cloud/azure/devtools/appconfiguration/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/devtools/appconfiguration/mode/httprequests.pm b/src/cloud/azure/devtools/appconfiguration/mode/httprequests.pm index f063f8256..e883ab539 100644 --- a/src/cloud/azure/devtools/appconfiguration/mode/httprequests.pm +++ b/src/cloud/azure/devtools/appconfiguration/mode/httprequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/devtools/appconfiguration/plugin.pm b/src/cloud/azure/devtools/appconfiguration/plugin.pm index 5c9511d11..5e54a9c86 100644 --- a/src/cloud/azure/devtools/appconfiguration/plugin.pm +++ b/src/cloud/azure/devtools/appconfiguration/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/eventgrid/mode/discovery.pm b/src/cloud/azure/integration/eventgrid/mode/discovery.pm index 1d2cbc0f6..00c953c56 100644 --- a/src/cloud/azure/integration/eventgrid/mode/discovery.pm +++ b/src/cloud/azure/integration/eventgrid/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/eventgrid/mode/events.pm b/src/cloud/azure/integration/eventgrid/mode/events.pm index eff7aacba..1c0ba09a1 100644 --- a/src/cloud/azure/integration/eventgrid/mode/events.pm +++ b/src/cloud/azure/integration/eventgrid/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/eventgrid/mode/eventstats.pm b/src/cloud/azure/integration/eventgrid/mode/eventstats.pm index 8333639c7..56dbe0b9a 100644 --- a/src/cloud/azure/integration/eventgrid/mode/eventstats.pm +++ b/src/cloud/azure/integration/eventgrid/mode/eventstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/eventgrid/mode/health.pm b/src/cloud/azure/integration/eventgrid/mode/health.pm index 3d975c1b5..b09e744e4 100644 --- a/src/cloud/azure/integration/eventgrid/mode/health.pm +++ b/src/cloud/azure/integration/eventgrid/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/mode/connections.pm b/src/cloud/azure/integration/servicebus/mode/connections.pm index 27b7be54c..b6bcb195f 100644 --- a/src/cloud/azure/integration/servicebus/mode/connections.pm +++ b/src/cloud/azure/integration/servicebus/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/mode/discovery.pm b/src/cloud/azure/integration/servicebus/mode/discovery.pm index aeb91429b..29317c728 100644 --- a/src/cloud/azure/integration/servicebus/mode/discovery.pm +++ b/src/cloud/azure/integration/servicebus/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/mode/health.pm b/src/cloud/azure/integration/servicebus/mode/health.pm index f86add527..86c1fb9ab 100644 --- a/src/cloud/azure/integration/servicebus/mode/health.pm +++ b/src/cloud/azure/integration/servicebus/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/mode/messages.pm b/src/cloud/azure/integration/servicebus/mode/messages.pm index 21667a5d9..8e63abd59 100644 --- a/src/cloud/azure/integration/servicebus/mode/messages.pm +++ b/src/cloud/azure/integration/servicebus/mode/messages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/mode/namespaces.pm b/src/cloud/azure/integration/servicebus/mode/namespaces.pm index 0fa06500b..6d328d8cc 100644 --- a/src/cloud/azure/integration/servicebus/mode/namespaces.pm +++ b/src/cloud/azure/integration/servicebus/mode/namespaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/mode/requests.pm b/src/cloud/azure/integration/servicebus/mode/requests.pm index 34495179e..955ec6c5e 100644 --- a/src/cloud/azure/integration/servicebus/mode/requests.pm +++ b/src/cloud/azure/integration/servicebus/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/integration/servicebus/plugin.pm b/src/cloud/azure/integration/servicebus/plugin.pm index 600864462..6cbd88e4c 100644 --- a/src/cloud/azure/integration/servicebus/plugin.pm +++ b/src/cloud/azure/integration/servicebus/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/apimanagement/mode/capacity.pm b/src/cloud/azure/management/apimanagement/mode/capacity.pm index e87580b19..97a234718 100644 --- a/src/cloud/azure/management/apimanagement/mode/capacity.pm +++ b/src/cloud/azure/management/apimanagement/mode/capacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/apimanagement/mode/discovery.pm b/src/cloud/azure/management/apimanagement/mode/discovery.pm index 22c0a7038..581e5de5c 100644 --- a/src/cloud/azure/management/apimanagement/mode/discovery.pm +++ b/src/cloud/azure/management/apimanagement/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/apimanagement/mode/duration.pm b/src/cloud/azure/management/apimanagement/mode/duration.pm index f34820f75..f6a9161ad 100644 --- a/src/cloud/azure/management/apimanagement/mode/duration.pm +++ b/src/cloud/azure/management/apimanagement/mode/duration.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/apimanagement/mode/events.pm b/src/cloud/azure/management/apimanagement/mode/events.pm index 19be053a6..17323e025 100644 --- a/src/cloud/azure/management/apimanagement/mode/events.pm +++ b/src/cloud/azure/management/apimanagement/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/apimanagement/mode/requests.pm b/src/cloud/azure/management/apimanagement/mode/requests.pm index d55de038d..983c711a3 100644 --- a/src/cloud/azure/management/apimanagement/mode/requests.pm +++ b/src/cloud/azure/management/apimanagement/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/apimanagement/plugin.pm b/src/cloud/azure/management/apimanagement/plugin.pm index fba66e5ac..116b5a997 100644 --- a/src/cloud/azure/management/apimanagement/plugin.pm +++ b/src/cloud/azure/management/apimanagement/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/availability.pm b/src/cloud/azure/management/applicationinsights/mode/availability.pm index ed32f3798..f1976ecb2 100644 --- a/src/cloud/azure/management/applicationinsights/mode/availability.pm +++ b/src/cloud/azure/management/applicationinsights/mode/availability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/browsertimings.pm b/src/cloud/azure/management/applicationinsights/mode/browsertimings.pm index a15c0a216..c80101921 100644 --- a/src/cloud/azure/management/applicationinsights/mode/browsertimings.pm +++ b/src/cloud/azure/management/applicationinsights/mode/browsertimings.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/cpu.pm b/src/cloud/azure/management/applicationinsights/mode/cpu.pm index a917990d9..514af5051 100644 --- a/src/cloud/azure/management/applicationinsights/mode/cpu.pm +++ b/src/cloud/azure/management/applicationinsights/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/discovery.pm b/src/cloud/azure/management/applicationinsights/mode/discovery.pm index 78ab0e024..1631f4fdd 100644 --- a/src/cloud/azure/management/applicationinsights/mode/discovery.pm +++ b/src/cloud/azure/management/applicationinsights/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/exceptions.pm b/src/cloud/azure/management/applicationinsights/mode/exceptions.pm index d610c136d..652fb61d5 100644 --- a/src/cloud/azure/management/applicationinsights/mode/exceptions.pm +++ b/src/cloud/azure/management/applicationinsights/mode/exceptions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/externalcalls.pm b/src/cloud/azure/management/applicationinsights/mode/externalcalls.pm index d0056de4a..19e51ed3e 100644 --- a/src/cloud/azure/management/applicationinsights/mode/externalcalls.pm +++ b/src/cloud/azure/management/applicationinsights/mode/externalcalls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/iooperations.pm b/src/cloud/azure/management/applicationinsights/mode/iooperations.pm index 5ab97147a..a1f001c32 100644 --- a/src/cloud/azure/management/applicationinsights/mode/iooperations.pm +++ b/src/cloud/azure/management/applicationinsights/mode/iooperations.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/memory.pm b/src/cloud/azure/management/applicationinsights/mode/memory.pm index 45962de0f..09e2f802e 100644 --- a/src/cloud/azure/management/applicationinsights/mode/memory.pm +++ b/src/cloud/azure/management/applicationinsights/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/pageviews.pm b/src/cloud/azure/management/applicationinsights/mode/pageviews.pm index bc0294e9f..918ccff80 100644 --- a/src/cloud/azure/management/applicationinsights/mode/pageviews.pm +++ b/src/cloud/azure/management/applicationinsights/mode/pageviews.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/mode/requests.pm b/src/cloud/azure/management/applicationinsights/mode/requests.pm index 709e1d280..f992bea49 100644 --- a/src/cloud/azure/management/applicationinsights/mode/requests.pm +++ b/src/cloud/azure/management/applicationinsights/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/applicationinsights/plugin.pm b/src/cloud/azure/management/applicationinsights/plugin.pm index 1c6c85a1c..c2921d4ff 100644 --- a/src/cloud/azure/management/applicationinsights/plugin.pm +++ b/src/cloud/azure/management/applicationinsights/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/automation/mode/discovery.pm b/src/cloud/azure/management/automation/mode/discovery.pm index f18e014f8..0e5be295b 100644 --- a/src/cloud/azure/management/automation/mode/discovery.pm +++ b/src/cloud/azure/management/automation/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/automation/mode/jobs.pm b/src/cloud/azure/management/automation/mode/jobs.pm index 43406e54c..ee00f8872 100644 --- a/src/cloud/azure/management/automation/mode/jobs.pm +++ b/src/cloud/azure/management/automation/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/mode/budgets.pm b/src/cloud/azure/management/costs/mode/budgets.pm index f0175402c..f29c10d37 100644 --- a/src/cloud/azure/management/costs/mode/budgets.pm +++ b/src/cloud/azure/management/costs/mode/budgets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/mode/costsexplorer.pm b/src/cloud/azure/management/costs/mode/costsexplorer.pm index ff02af734..3eaea43f5 100644 --- a/src/cloud/azure/management/costs/mode/costsexplorer.pm +++ b/src/cloud/azure/management/costs/mode/costsexplorer.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/mode/hybridbenefits.pm b/src/cloud/azure/management/costs/mode/hybridbenefits.pm index b7d7c6b54..dd1122511 100644 --- a/src/cloud/azure/management/costs/mode/hybridbenefits.pm +++ b/src/cloud/azure/management/costs/mode/hybridbenefits.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/mode/listbudgets.pm b/src/cloud/azure/management/costs/mode/listbudgets.pm index 9399d13d2..569ea8a04 100644 --- a/src/cloud/azure/management/costs/mode/listbudgets.pm +++ b/src/cloud/azure/management/costs/mode/listbudgets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/mode/orphanresources.pm b/src/cloud/azure/management/costs/mode/orphanresources.pm index 66b56547c..939608737 100644 --- a/src/cloud/azure/management/costs/mode/orphanresources.pm +++ b/src/cloud/azure/management/costs/mode/orphanresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/mode/tagscompliance.pm b/src/cloud/azure/management/costs/mode/tagscompliance.pm index 3c517c88d..ad3d5fe06 100644 --- a/src/cloud/azure/management/costs/mode/tagscompliance.pm +++ b/src/cloud/azure/management/costs/mode/tagscompliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/costs/plugin.pm b/src/cloud/azure/management/costs/plugin.pm index a076fb7b7..8ad9fb01a 100644 --- a/src/cloud/azure/management/costs/plugin.pm +++ b/src/cloud/azure/management/costs/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/discover/plugin.pm b/src/cloud/azure/management/discover/plugin.pm index 26e5e5a7e..a0646504a 100644 --- a/src/cloud/azure/management/discover/plugin.pm +++ b/src/cloud/azure/management/discover/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/insightsmetrics/mode/cpu.pm b/src/cloud/azure/management/insightsmetrics/mode/cpu.pm index f04662e5c..2af966a79 100644 --- a/src/cloud/azure/management/insightsmetrics/mode/cpu.pm +++ b/src/cloud/azure/management/insightsmetrics/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/insightsmetrics/mode/listlogicaldisks.pm b/src/cloud/azure/management/insightsmetrics/mode/listlogicaldisks.pm index 9ef19f334..8dde72e2d 100644 --- a/src/cloud/azure/management/insightsmetrics/mode/listlogicaldisks.pm +++ b/src/cloud/azure/management/insightsmetrics/mode/listlogicaldisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/insightsmetrics/mode/logicaldisks.pm b/src/cloud/azure/management/insightsmetrics/mode/logicaldisks.pm index ce56727bf..2b8065e70 100644 --- a/src/cloud/azure/management/insightsmetrics/mode/logicaldisks.pm +++ b/src/cloud/azure/management/insightsmetrics/mode/logicaldisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/insightsmetrics/mode/memory.pm b/src/cloud/azure/management/insightsmetrics/mode/memory.pm index 017a6ab59..571290b94 100644 --- a/src/cloud/azure/management/insightsmetrics/mode/memory.pm +++ b/src/cloud/azure/management/insightsmetrics/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/insightsmetrics/plugin.pm b/src/cloud/azure/management/insightsmetrics/plugin.pm index 28a61c5a5..53e21f19d 100644 --- a/src/cloud/azure/management/insightsmetrics/plugin.pm +++ b/src/cloud/azure/management/insightsmetrics/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/loganalytics/mode/kustoquery.pm b/src/cloud/azure/management/loganalytics/mode/kustoquery.pm index 2edb09cbd..3cdb982e2 100644 --- a/src/cloud/azure/management/loganalytics/mode/kustoquery.pm +++ b/src/cloud/azure/management/loganalytics/mode/kustoquery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/loganalytics/plugin.pm b/src/cloud/azure/management/loganalytics/plugin.pm index 2297c095d..8307cca62 100644 --- a/src/cloud/azure/management/loganalytics/plugin.pm +++ b/src/cloud/azure/management/loganalytics/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/monitor/mode/alert.pm b/src/cloud/azure/management/monitor/mode/alert.pm index 2f35ffd9c..3c6d94ebd 100644 --- a/src/cloud/azure/management/monitor/mode/alert.pm +++ b/src/cloud/azure/management/monitor/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/monitor/mode/discovery.pm b/src/cloud/azure/management/monitor/mode/discovery.pm index 4c03cf3ad..ceb0233c5 100644 --- a/src/cloud/azure/management/monitor/mode/discovery.pm +++ b/src/cloud/azure/management/monitor/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/monitor/mode/discoverytenant.pm b/src/cloud/azure/management/monitor/mode/discoverytenant.pm index 1713884c7..748edbe4f 100644 --- a/src/cloud/azure/management/monitor/mode/discoverytenant.pm +++ b/src/cloud/azure/management/monitor/mode/discoverytenant.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/monitor/mode/getmetrics.pm b/src/cloud/azure/management/monitor/mode/getmetrics.pm index bb31ee7a0..290dd425f 100644 --- a/src/cloud/azure/management/monitor/mode/getmetrics.pm +++ b/src/cloud/azure/management/monitor/mode/getmetrics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/monitor/mode/health.pm b/src/cloud/azure/management/monitor/mode/health.pm index 506d56318..fe91961ab 100644 --- a/src/cloud/azure/management/monitor/mode/health.pm +++ b/src/cloud/azure/management/monitor/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/monitor/plugin.pm b/src/cloud/azure/management/monitor/plugin.pm index 551f54134..658be8163 100644 --- a/src/cloud/azure/management/monitor/plugin.pm +++ b/src/cloud/azure/management/monitor/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/backupitemsstatus.pm b/src/cloud/azure/management/recovery/mode/backupitemsstatus.pm index d3ade6518..cda8938e0 100644 --- a/src/cloud/azure/management/recovery/mode/backupitemsstatus.pm +++ b/src/cloud/azure/management/recovery/mode/backupitemsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/backupjobsstatus.pm b/src/cloud/azure/management/recovery/mode/backupjobsstatus.pm index f49a49c70..c4a9f7f1a 100644 --- a/src/cloud/azure/management/recovery/mode/backupjobsstatus.pm +++ b/src/cloud/azure/management/recovery/mode/backupjobsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/discovery.pm b/src/cloud/azure/management/recovery/mode/discovery.pm index 944b9ac37..e0b5714fc 100644 --- a/src/cloud/azure/management/recovery/mode/discovery.pm +++ b/src/cloud/azure/management/recovery/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/listbackupjobs.pm b/src/cloud/azure/management/recovery/mode/listbackupjobs.pm index b6b8e55ab..6925e9313 100644 --- a/src/cloud/azure/management/recovery/mode/listbackupjobs.pm +++ b/src/cloud/azure/management/recovery/mode/listbackupjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/listreplicateditems.pm b/src/cloud/azure/management/recovery/mode/listreplicateditems.pm index 8461c8cfc..03de09630 100644 --- a/src/cloud/azure/management/recovery/mode/listreplicateditems.pm +++ b/src/cloud/azure/management/recovery/mode/listreplicateditems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/listvaults.pm b/src/cloud/azure/management/recovery/mode/listvaults.pm index a305b254f..ed129423b 100644 --- a/src/cloud/azure/management/recovery/mode/listvaults.pm +++ b/src/cloud/azure/management/recovery/mode/listvaults.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/mode/replicationhealth.pm b/src/cloud/azure/management/recovery/mode/replicationhealth.pm index 65bbfe379..272ca1970 100644 --- a/src/cloud/azure/management/recovery/mode/replicationhealth.pm +++ b/src/cloud/azure/management/recovery/mode/replicationhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/recovery/plugin.pm b/src/cloud/azure/management/recovery/plugin.pm index f589938fb..52f1f0d27 100644 --- a/src/cloud/azure/management/recovery/plugin.pm +++ b/src/cloud/azure/management/recovery/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/resource/mode/deploymentsstatus.pm b/src/cloud/azure/management/resource/mode/deploymentsstatus.pm index a7e60d025..c3e429548 100644 --- a/src/cloud/azure/management/resource/mode/deploymentsstatus.pm +++ b/src/cloud/azure/management/resource/mode/deploymentsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/resource/mode/items.pm b/src/cloud/azure/management/resource/mode/items.pm index 386c5220d..70b1d15f8 100644 --- a/src/cloud/azure/management/resource/mode/items.pm +++ b/src/cloud/azure/management/resource/mode/items.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/resource/mode/listgroups.pm b/src/cloud/azure/management/resource/mode/listgroups.pm index 60096b6a0..8a562fd63 100644 --- a/src/cloud/azure/management/resource/mode/listgroups.pm +++ b/src/cloud/azure/management/resource/mode/listgroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/resource/mode/listresources.pm b/src/cloud/azure/management/resource/mode/listresources.pm index f60e83a0c..634f62171 100644 --- a/src/cloud/azure/management/resource/mode/listresources.pm +++ b/src/cloud/azure/management/resource/mode/listresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/management/resource/plugin.pm b/src/cloud/azure/management/resource/plugin.pm index 3bed74f7a..8e93de43e 100644 --- a/src/cloud/azure/management/resource/plugin.pm +++ b/src/cloud/azure/management/resource/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/backendhealth.pm b/src/cloud/azure/network/appgateway/mode/backendhealth.pm index cba1d97d7..31fca4ce0 100644 --- a/src/cloud/azure/network/appgateway/mode/backendhealth.pm +++ b/src/cloud/azure/network/appgateway/mode/backendhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/backendstatus.pm b/src/cloud/azure/network/appgateway/mode/backendstatus.pm index 14c339917..118a1ad4e 100644 --- a/src/cloud/azure/network/appgateway/mode/backendstatus.pm +++ b/src/cloud/azure/network/appgateway/mode/backendstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/backendtime.pm b/src/cloud/azure/network/appgateway/mode/backendtime.pm index f80fad7fd..20d348628 100644 --- a/src/cloud/azure/network/appgateway/mode/backendtime.pm +++ b/src/cloud/azure/network/appgateway/mode/backendtime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/clientstraffic.pm b/src/cloud/azure/network/appgateway/mode/clientstraffic.pm index 16a62b832..c467f4b97 100644 --- a/src/cloud/azure/network/appgateway/mode/clientstraffic.pm +++ b/src/cloud/azure/network/appgateway/mode/clientstraffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/connections.pm b/src/cloud/azure/network/appgateway/mode/connections.pm index 518c85238..8e47e3e21 100644 --- a/src/cloud/azure/network/appgateway/mode/connections.pm +++ b/src/cloud/azure/network/appgateway/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/discovery.pm b/src/cloud/azure/network/appgateway/mode/discovery.pm index 0e8ab6167..5a4af392e 100644 --- a/src/cloud/azure/network/appgateway/mode/discovery.pm +++ b/src/cloud/azure/network/appgateway/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/gatewaytime.pm b/src/cloud/azure/network/appgateway/mode/gatewaytime.pm index 45f43d2e0..af493eda1 100644 --- a/src/cloud/azure/network/appgateway/mode/gatewaytime.pm +++ b/src/cloud/azure/network/appgateway/mode/gatewaytime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/health.pm b/src/cloud/azure/network/appgateway/mode/health.pm index 2f3715b88..0be7bd2d2 100644 --- a/src/cloud/azure/network/appgateway/mode/health.pm +++ b/src/cloud/azure/network/appgateway/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/requests.pm b/src/cloud/azure/network/appgateway/mode/requests.pm index f11f83abe..04794a1d8 100644 --- a/src/cloud/azure/network/appgateway/mode/requests.pm +++ b/src/cloud/azure/network/appgateway/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/throughput.pm b/src/cloud/azure/network/appgateway/mode/throughput.pm index 6275c4b63..0cb7875d7 100644 --- a/src/cloud/azure/network/appgateway/mode/throughput.pm +++ b/src/cloud/azure/network/appgateway/mode/throughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/mode/units.pm b/src/cloud/azure/network/appgateway/mode/units.pm index 29c051258..6f3faa7e8 100644 --- a/src/cloud/azure/network/appgateway/mode/units.pm +++ b/src/cloud/azure/network/appgateway/mode/units.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/appgateway/plugin.pm b/src/cloud/azure/network/appgateway/plugin.pm index 5f6ff5201..d9824b3c7 100644 --- a/src/cloud/azure/network/appgateway/plugin.pm +++ b/src/cloud/azure/network/appgateway/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/cdn/mode/discovery.pm b/src/cloud/azure/network/cdn/mode/discovery.pm index 46739e039..1f8c87b2e 100644 --- a/src/cloud/azure/network/cdn/mode/discovery.pm +++ b/src/cloud/azure/network/cdn/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/cdn/mode/hitratio.pm b/src/cloud/azure/network/cdn/mode/hitratio.pm index 79f6952f5..e8fd7d9da 100644 --- a/src/cloud/azure/network/cdn/mode/hitratio.pm +++ b/src/cloud/azure/network/cdn/mode/hitratio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/cdn/mode/latency.pm b/src/cloud/azure/network/cdn/mode/latency.pm index d9e8c0f19..f02fe1068 100644 --- a/src/cloud/azure/network/cdn/mode/latency.pm +++ b/src/cloud/azure/network/cdn/mode/latency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/cdn/mode/requests.pm b/src/cloud/azure/network/cdn/mode/requests.pm index 3b806cb58..0ae5dd311 100644 --- a/src/cloud/azure/network/cdn/mode/requests.pm +++ b/src/cloud/azure/network/cdn/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/cdn/mode/response.pm b/src/cloud/azure/network/cdn/mode/response.pm index 629ff4c95..c2d44b369 100644 --- a/src/cloud/azure/network/cdn/mode/response.pm +++ b/src/cloud/azure/network/cdn/mode/response.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/cdn/plugin.pm b/src/cloud/azure/network/cdn/plugin.pm index 9c9bc690c..bccc210c1 100644 --- a/src/cloud/azure/network/cdn/plugin.pm +++ b/src/cloud/azure/network/cdn/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/expressroute/mode/circuitstatus.pm b/src/cloud/azure/network/expressroute/mode/circuitstatus.pm index da17c42f2..6e7c60c88 100644 --- a/src/cloud/azure/network/expressroute/mode/circuitstatus.pm +++ b/src/cloud/azure/network/expressroute/mode/circuitstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/expressroute/mode/discovery.pm b/src/cloud/azure/network/expressroute/mode/discovery.pm index 0a786dec2..c171160cf 100644 --- a/src/cloud/azure/network/expressroute/mode/discovery.pm +++ b/src/cloud/azure/network/expressroute/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/expressroute/mode/health.pm b/src/cloud/azure/network/expressroute/mode/health.pm index 98b6932ac..72175ddd4 100644 --- a/src/cloud/azure/network/expressroute/mode/health.pm +++ b/src/cloud/azure/network/expressroute/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/expressroute/mode/listcircuits.pm b/src/cloud/azure/network/expressroute/mode/listcircuits.pm index ef947a871..dd3109413 100644 --- a/src/cloud/azure/network/expressroute/mode/listcircuits.pm +++ b/src/cloud/azure/network/expressroute/mode/listcircuits.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/expressroute/mode/traffic.pm b/src/cloud/azure/network/expressroute/mode/traffic.pm index 759b3433d..dfaa1dc40 100644 --- a/src/cloud/azure/network/expressroute/mode/traffic.pm +++ b/src/cloud/azure/network/expressroute/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/expressroute/plugin.pm b/src/cloud/azure/network/expressroute/plugin.pm index da195b7bf..38da5e4f9 100644 --- a/src/cloud/azure/network/expressroute/plugin.pm +++ b/src/cloud/azure/network/expressroute/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/mode/backendhealth.pm b/src/cloud/azure/network/frontdoor/mode/backendhealth.pm index aefdd6b85..352d01acb 100644 --- a/src/cloud/azure/network/frontdoor/mode/backendhealth.pm +++ b/src/cloud/azure/network/frontdoor/mode/backendhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/mode/discovery.pm b/src/cloud/azure/network/frontdoor/mode/discovery.pm index 79ebdc0a0..ee1278b8e 100644 --- a/src/cloud/azure/network/frontdoor/mode/discovery.pm +++ b/src/cloud/azure/network/frontdoor/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/mode/health.pm b/src/cloud/azure/network/frontdoor/mode/health.pm index 4c4f842f4..92484beb2 100644 --- a/src/cloud/azure/network/frontdoor/mode/health.pm +++ b/src/cloud/azure/network/frontdoor/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/mode/latency.pm b/src/cloud/azure/network/frontdoor/mode/latency.pm index ebba33374..7e5d5acc4 100644 --- a/src/cloud/azure/network/frontdoor/mode/latency.pm +++ b/src/cloud/azure/network/frontdoor/mode/latency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/mode/requests.pm b/src/cloud/azure/network/frontdoor/mode/requests.pm index 8b8733c94..a135bd56a 100644 --- a/src/cloud/azure/network/frontdoor/mode/requests.pm +++ b/src/cloud/azure/network/frontdoor/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/mode/size.pm b/src/cloud/azure/network/frontdoor/mode/size.pm index c135293a8..4e5dc64c6 100644 --- a/src/cloud/azure/network/frontdoor/mode/size.pm +++ b/src/cloud/azure/network/frontdoor/mode/size.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/frontdoor/plugin.pm b/src/cloud/azure/network/frontdoor/plugin.pm index 422ecb0b0..402b1b687 100644 --- a/src/cloud/azure/network/frontdoor/plugin.pm +++ b/src/cloud/azure/network/frontdoor/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/loadbalancer/mode/datapath.pm b/src/cloud/azure/network/loadbalancer/mode/datapath.pm index 8891045c4..2f606f875 100644 --- a/src/cloud/azure/network/loadbalancer/mode/datapath.pm +++ b/src/cloud/azure/network/loadbalancer/mode/datapath.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/loadbalancer/mode/discovery.pm b/src/cloud/azure/network/loadbalancer/mode/discovery.pm index d2a6e9a8e..0c218d4e8 100644 --- a/src/cloud/azure/network/loadbalancer/mode/discovery.pm +++ b/src/cloud/azure/network/loadbalancer/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/loadbalancer/mode/healthprobe.pm b/src/cloud/azure/network/loadbalancer/mode/healthprobe.pm index 3186a1337..2ad64674c 100644 --- a/src/cloud/azure/network/loadbalancer/mode/healthprobe.pm +++ b/src/cloud/azure/network/loadbalancer/mode/healthprobe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/loadbalancer/mode/snat.pm b/src/cloud/azure/network/loadbalancer/mode/snat.pm index 992626d6d..524959835 100644 --- a/src/cloud/azure/network/loadbalancer/mode/snat.pm +++ b/src/cloud/azure/network/loadbalancer/mode/snat.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/loadbalancer/mode/throughput.pm b/src/cloud/azure/network/loadbalancer/mode/throughput.pm index a2eb5cfd2..1b1f22d96 100644 --- a/src/cloud/azure/network/loadbalancer/mode/throughput.pm +++ b/src/cloud/azure/network/loadbalancer/mode/throughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/loadbalancer/plugin.pm b/src/cloud/azure/network/loadbalancer/plugin.pm index 2ec2994a4..40eec1fcf 100644 --- a/src/cloud/azure/network/loadbalancer/plugin.pm +++ b/src/cloud/azure/network/loadbalancer/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/networkinterface/mode/discovery.pm b/src/cloud/azure/network/networkinterface/mode/discovery.pm index 6c4431dfd..58d704e19 100644 --- a/src/cloud/azure/network/networkinterface/mode/discovery.pm +++ b/src/cloud/azure/network/networkinterface/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/networkinterface/mode/listresources.pm b/src/cloud/azure/network/networkinterface/mode/listresources.pm index 27c864c69..5d23fcc50 100644 --- a/src/cloud/azure/network/networkinterface/mode/listresources.pm +++ b/src/cloud/azure/network/networkinterface/mode/listresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/networkinterface/mode/traffic.pm b/src/cloud/azure/network/networkinterface/mode/traffic.pm index a19c9f650..a069faf52 100644 --- a/src/cloud/azure/network/networkinterface/mode/traffic.pm +++ b/src/cloud/azure/network/networkinterface/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/networkinterface/plugin.pm b/src/cloud/azure/network/networkinterface/plugin.pm index 0506b28ba..174412510 100644 --- a/src/cloud/azure/network/networkinterface/plugin.pm +++ b/src/cloud/azure/network/networkinterface/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/trafficmanager/mode/discovery.pm b/src/cloud/azure/network/trafficmanager/mode/discovery.pm index 8a3b86588..f48b66200 100644 --- a/src/cloud/azure/network/trafficmanager/mode/discovery.pm +++ b/src/cloud/azure/network/trafficmanager/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/trafficmanager/mode/endpointstatus.pm b/src/cloud/azure/network/trafficmanager/mode/endpointstatus.pm index b7bf71e64..4d2c5ca98 100644 --- a/src/cloud/azure/network/trafficmanager/mode/endpointstatus.pm +++ b/src/cloud/azure/network/trafficmanager/mode/endpointstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/trafficmanager/mode/health.pm b/src/cloud/azure/network/trafficmanager/mode/health.pm index 339dc9d79..546bb1add 100644 --- a/src/cloud/azure/network/trafficmanager/mode/health.pm +++ b/src/cloud/azure/network/trafficmanager/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/trafficmanager/mode/queries.pm b/src/cloud/azure/network/trafficmanager/mode/queries.pm index 5e60b1466..9867181ae 100644 --- a/src/cloud/azure/network/trafficmanager/mode/queries.pm +++ b/src/cloud/azure/network/trafficmanager/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/trafficmanager/plugin.pm b/src/cloud/azure/network/trafficmanager/plugin.pm index 81cd9d47c..9545beb93 100644 --- a/src/cloud/azure/network/trafficmanager/plugin.pm +++ b/src/cloud/azure/network/trafficmanager/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/virtualnetwork/mode/discovery.pm b/src/cloud/azure/network/virtualnetwork/mode/discovery.pm index 6c6e605f7..5c1002ed7 100644 --- a/src/cloud/azure/network/virtualnetwork/mode/discovery.pm +++ b/src/cloud/azure/network/virtualnetwork/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/virtualnetwork/mode/listvirtualnetworks.pm b/src/cloud/azure/network/virtualnetwork/mode/listvirtualnetworks.pm index e70b03bc1..a38275339 100644 --- a/src/cloud/azure/network/virtualnetwork/mode/listvirtualnetworks.pm +++ b/src/cloud/azure/network/virtualnetwork/mode/listvirtualnetworks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/virtualnetwork/mode/peeringsstatus.pm b/src/cloud/azure/network/virtualnetwork/mode/peeringsstatus.pm index 19a99a1b1..a95e8aa34 100644 --- a/src/cloud/azure/network/virtualnetwork/mode/peeringsstatus.pm +++ b/src/cloud/azure/network/virtualnetwork/mode/peeringsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/virtualnetwork/plugin.pm b/src/cloud/azure/network/virtualnetwork/plugin.pm index 3cd39029a..0883d2930 100644 --- a/src/cloud/azure/network/virtualnetwork/plugin.pm +++ b/src/cloud/azure/network/virtualnetwork/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/vpngateway/mode/discovery.pm b/src/cloud/azure/network/vpngateway/mode/discovery.pm index b978d86b2..327f48873 100644 --- a/src/cloud/azure/network/vpngateway/mode/discovery.pm +++ b/src/cloud/azure/network/vpngateway/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/vpngateway/mode/health.pm b/src/cloud/azure/network/vpngateway/mode/health.pm index 951579965..afb55d67b 100644 --- a/src/cloud/azure/network/vpngateway/mode/health.pm +++ b/src/cloud/azure/network/vpngateway/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/vpngateway/mode/sitetraffic.pm b/src/cloud/azure/network/vpngateway/mode/sitetraffic.pm index b4d0e1688..1cac9a61d 100644 --- a/src/cloud/azure/network/vpngateway/mode/sitetraffic.pm +++ b/src/cloud/azure/network/vpngateway/mode/sitetraffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/vpngateway/mode/tunneltraffic.pm b/src/cloud/azure/network/vpngateway/mode/tunneltraffic.pm index 3c4c3a95d..aa1a35754 100644 --- a/src/cloud/azure/network/vpngateway/mode/tunneltraffic.pm +++ b/src/cloud/azure/network/vpngateway/mode/tunneltraffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/vpngateway/mode/vpngatewaystatus.pm b/src/cloud/azure/network/vpngateway/mode/vpngatewaystatus.pm index 2929b6e6f..9dd358563 100644 --- a/src/cloud/azure/network/vpngateway/mode/vpngatewaystatus.pm +++ b/src/cloud/azure/network/vpngateway/mode/vpngatewaystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/network/vpngateway/plugin.pm b/src/cloud/azure/network/vpngateway/plugin.pm index a0bddd6e1..e963dbf9c 100644 --- a/src/cloud/azure/network/vpngateway/plugin.pm +++ b/src/cloud/azure/network/vpngateway/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/security/keyvault/mode/discovery.pm b/src/cloud/azure/security/keyvault/mode/discovery.pm index c9540a8c9..a00e1e9d6 100644 --- a/src/cloud/azure/security/keyvault/mode/discovery.pm +++ b/src/cloud/azure/security/keyvault/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/security/keyvault/mode/serviceapi.pm b/src/cloud/azure/security/keyvault/mode/serviceapi.pm index e0a8a3d0e..7a5558bb8 100644 --- a/src/cloud/azure/security/keyvault/mode/serviceapi.pm +++ b/src/cloud/azure/security/keyvault/mode/serviceapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/security/keyvault/mode/vaultavailability.pm b/src/cloud/azure/security/keyvault/mode/vaultavailability.pm index 9b119474c..54f1a82cf 100644 --- a/src/cloud/azure/security/keyvault/mode/vaultavailability.pm +++ b/src/cloud/azure/security/keyvault/mode/vaultavailability.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/security/keyvault/mode/vaultcapacity.pm b/src/cloud/azure/security/keyvault/mode/vaultcapacity.pm index d500ecdb1..d6110ccc2 100644 --- a/src/cloud/azure/security/keyvault/mode/vaultcapacity.pm +++ b/src/cloud/azure/security/keyvault/mode/vaultcapacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/security/keyvault/plugin.pm b/src/cloud/azure/security/keyvault/plugin.pm index edc29329b..68e50c753 100644 --- a/src/cloud/azure/security/keyvault/plugin.pm +++ b/src/cloud/azure/security/keyvault/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/acr/mode/discovery.pm b/src/cloud/azure/storage/acr/mode/discovery.pm index 0095b1623..b0c96e5ef 100644 --- a/src/cloud/azure/storage/acr/mode/discovery.pm +++ b/src/cloud/azure/storage/acr/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/acr/mode/storageusage.pm b/src/cloud/azure/storage/acr/mode/storageusage.pm index 709da3c9c..ab9296960 100644 --- a/src/cloud/azure/storage/acr/mode/storageusage.pm +++ b/src/cloud/azure/storage/acr/mode/storageusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/acr/plugin.pm b/src/cloud/azure/storage/acr/plugin.pm index 5e3272a40..338abf7c9 100644 --- a/src/cloud/azure/storage/acr/plugin.pm +++ b/src/cloud/azure/storage/acr/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storageaccount/mode/discovery.pm b/src/cloud/azure/storage/storageaccount/mode/discovery.pm index 3e24dac99..1e01fbea6 100644 --- a/src/cloud/azure/storage/storageaccount/mode/discovery.pm +++ b/src/cloud/azure/storage/storageaccount/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storageaccount/mode/listresources.pm b/src/cloud/azure/storage/storageaccount/mode/listresources.pm index ba0eb7508..d7b46337c 100644 --- a/src/cloud/azure/storage/storageaccount/mode/listresources.pm +++ b/src/cloud/azure/storage/storageaccount/mode/listresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storageaccount/plugin.pm b/src/cloud/azure/storage/storageaccount/plugin.pm index f8f12aaa3..245080383 100644 --- a/src/cloud/azure/storage/storageaccount/plugin.pm +++ b/src/cloud/azure/storage/storageaccount/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storagesync/mode/discovery.pm b/src/cloud/azure/storage/storagesync/mode/discovery.pm index 022bfeae7..99ca74045 100644 --- a/src/cloud/azure/storage/storagesync/mode/discovery.pm +++ b/src/cloud/azure/storage/storagesync/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storagesync/mode/filessync.pm b/src/cloud/azure/storage/storagesync/mode/filessync.pm index 7b87e2303..19d8b46ce 100644 --- a/src/cloud/azure/storage/storagesync/mode/filessync.pm +++ b/src/cloud/azure/storage/storagesync/mode/filessync.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storagesync/mode/recalls.pm b/src/cloud/azure/storage/storagesync/mode/recalls.pm index 60318e5c6..6d4d645be 100644 --- a/src/cloud/azure/storage/storagesync/mode/recalls.pm +++ b/src/cloud/azure/storage/storagesync/mode/recalls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storagesync/mode/serverstatus.pm b/src/cloud/azure/storage/storagesync/mode/serverstatus.pm index e5c6b088b..bb4e813a0 100644 --- a/src/cloud/azure/storage/storagesync/mode/serverstatus.pm +++ b/src/cloud/azure/storage/storagesync/mode/serverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/storage/storagesync/plugin.pm b/src/cloud/azure/storage/storagesync/plugin.pm index e5ff28b9f..bc838f245 100644 --- a/src/cloud/azure/storage/storagesync/plugin.pm +++ b/src/cloud/azure/storage/storagesync/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appservice/plugin.pm b/src/cloud/azure/web/appservice/plugin.pm index 22e1a1065..48f5e3fd6 100644 --- a/src/cloud/azure/web/appservice/plugin.pm +++ b/src/cloud/azure/web/appservice/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/cpu.pm b/src/cloud/azure/web/appserviceplan/mode/cpu.pm index 6074e510e..4e05daa86 100644 --- a/src/cloud/azure/web/appserviceplan/mode/cpu.pm +++ b/src/cloud/azure/web/appserviceplan/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/data.pm b/src/cloud/azure/web/appserviceplan/mode/data.pm index 36c53b2da..5d377a885 100644 --- a/src/cloud/azure/web/appserviceplan/mode/data.pm +++ b/src/cloud/azure/web/appserviceplan/mode/data.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/discovery.pm b/src/cloud/azure/web/appserviceplan/mode/discovery.pm index 77f1fda37..f483e763d 100644 --- a/src/cloud/azure/web/appserviceplan/mode/discovery.pm +++ b/src/cloud/azure/web/appserviceplan/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/health.pm b/src/cloud/azure/web/appserviceplan/mode/health.pm index 7124c8fa2..963c2cfd6 100644 --- a/src/cloud/azure/web/appserviceplan/mode/health.pm +++ b/src/cloud/azure/web/appserviceplan/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/memory.pm b/src/cloud/azure/web/appserviceplan/mode/memory.pm index 7ca76e126..0492a84fa 100644 --- a/src/cloud/azure/web/appserviceplan/mode/memory.pm +++ b/src/cloud/azure/web/appserviceplan/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/queue.pm b/src/cloud/azure/web/appserviceplan/mode/queue.pm index d72901107..ac99b05b6 100644 --- a/src/cloud/azure/web/appserviceplan/mode/queue.pm +++ b/src/cloud/azure/web/appserviceplan/mode/queue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/socket.pm b/src/cloud/azure/web/appserviceplan/mode/socket.pm index 3dad005be..25e044ae2 100644 --- a/src/cloud/azure/web/appserviceplan/mode/socket.pm +++ b/src/cloud/azure/web/appserviceplan/mode/socket.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/mode/tcpconnections.pm b/src/cloud/azure/web/appserviceplan/mode/tcpconnections.pm index 9e05cd55c..48854a5f7 100644 --- a/src/cloud/azure/web/appserviceplan/mode/tcpconnections.pm +++ b/src/cloud/azure/web/appserviceplan/mode/tcpconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/appserviceplan/plugin.pm b/src/cloud/azure/web/appserviceplan/plugin.pm index caac2ea24..6e3445875 100644 --- a/src/cloud/azure/web/appserviceplan/plugin.pm +++ b/src/cloud/azure/web/appserviceplan/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/signalr/mode/discovery.pm b/src/cloud/azure/web/signalr/mode/discovery.pm index 734c6d40d..c4388dfb0 100644 --- a/src/cloud/azure/web/signalr/mode/discovery.pm +++ b/src/cloud/azure/web/signalr/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/signalr/mode/errors.pm b/src/cloud/azure/web/signalr/mode/errors.pm index d00cb93be..508d14b53 100644 --- a/src/cloud/azure/web/signalr/mode/errors.pm +++ b/src/cloud/azure/web/signalr/mode/errors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/signalr/mode/health.pm b/src/cloud/azure/web/signalr/mode/health.pm index 2a778d7bd..c76358f13 100644 --- a/src/cloud/azure/web/signalr/mode/health.pm +++ b/src/cloud/azure/web/signalr/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/signalr/mode/traffic.pm b/src/cloud/azure/web/signalr/mode/traffic.pm index f247c100c..376264841 100644 --- a/src/cloud/azure/web/signalr/mode/traffic.pm +++ b/src/cloud/azure/web/signalr/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/signalr/mode/usage.pm b/src/cloud/azure/web/signalr/mode/usage.pm index 638459bb3..a50057772 100644 --- a/src/cloud/azure/web/signalr/mode/usage.pm +++ b/src/cloud/azure/web/signalr/mode/usage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/azure/web/signalr/plugin.pm b/src/cloud/azure/web/signalr/plugin.pm index ee6091d26..d7135b9b6 100644 --- a/src/cloud/azure/web/signalr/plugin.pm +++ b/src/cloud/azure/web/signalr/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cadvisor/restapi/custom/api.pm b/src/cloud/cadvisor/restapi/custom/api.pm index 73fd87abb..ba2b826ed 100644 --- a/src/cloud/cadvisor/restapi/custom/api.pm +++ b/src/cloud/cadvisor/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cadvisor/restapi/mode/containerusage.pm b/src/cloud/cadvisor/restapi/mode/containerusage.pm index 648c9bf23..787368feb 100644 --- a/src/cloud/cadvisor/restapi/mode/containerusage.pm +++ b/src/cloud/cadvisor/restapi/mode/containerusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cadvisor/restapi/mode/diskio.pm b/src/cloud/cadvisor/restapi/mode/diskio.pm index b660f2503..97cbbc763 100644 --- a/src/cloud/cadvisor/restapi/mode/diskio.pm +++ b/src/cloud/cadvisor/restapi/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cadvisor/restapi/mode/listcontainers.pm b/src/cloud/cadvisor/restapi/mode/listcontainers.pm index 06cb1a52e..c1fb846e4 100644 --- a/src/cloud/cadvisor/restapi/mode/listcontainers.pm +++ b/src/cloud/cadvisor/restapi/mode/listcontainers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cadvisor/restapi/plugin.pm b/src/cloud/cadvisor/restapi/plugin.pm index ab654b757..7c23ea149 100644 --- a/src/cloud/cadvisor/restapi/plugin.pm +++ b/src/cloud/cadvisor/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/custom/api.pm b/src/cloud/cloudfoundry/restapi/custom/api.pm index 42ba5729e..2f8afd83c 100644 --- a/src/cloud/cloudfoundry/restapi/custom/api.pm +++ b/src/cloud/cloudfoundry/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/mode/appsstate.pm b/src/cloud/cloudfoundry/restapi/mode/appsstate.pm index 108aeaa3b..165849de5 100644 --- a/src/cloud/cloudfoundry/restapi/mode/appsstate.pm +++ b/src/cloud/cloudfoundry/restapi/mode/appsstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/mode/instancesstate.pm b/src/cloud/cloudfoundry/restapi/mode/instancesstate.pm index 49545d587..74ce43b37 100644 --- a/src/cloud/cloudfoundry/restapi/mode/instancesstate.pm +++ b/src/cloud/cloudfoundry/restapi/mode/instancesstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/mode/listapps.pm b/src/cloud/cloudfoundry/restapi/mode/listapps.pm index b053d5386..db7867be0 100644 --- a/src/cloud/cloudfoundry/restapi/mode/listapps.pm +++ b/src/cloud/cloudfoundry/restapi/mode/listapps.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/mode/listorganizations.pm b/src/cloud/cloudfoundry/restapi/mode/listorganizations.pm index 9bcfb785a..0a2440deb 100644 --- a/src/cloud/cloudfoundry/restapi/mode/listorganizations.pm +++ b/src/cloud/cloudfoundry/restapi/mode/listorganizations.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/mode/listspaces.pm b/src/cloud/cloudfoundry/restapi/mode/listspaces.pm index a34158eeb..0cfb7e58d 100644 --- a/src/cloud/cloudfoundry/restapi/mode/listspaces.pm +++ b/src/cloud/cloudfoundry/restapi/mode/listspaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/cloudfoundry/restapi/plugin.pm b/src/cloud/cloudfoundry/restapi/plugin.pm index c38c55b59..ecd85f490 100644 --- a/src/cloud/cloudfoundry/restapi/plugin.pm +++ b/src/cloud/cloudfoundry/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/local/mode/containerstatus.pm b/src/cloud/docker/local/mode/containerstatus.pm index 87c5ca141..79549cdf4 100644 --- a/src/cloud/docker/local/mode/containerstatus.pm +++ b/src/cloud/docker/local/mode/containerstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/local/mode/containerusage.pm b/src/cloud/docker/local/mode/containerusage.pm index c18aac061..62b922dc1 100644 --- a/src/cloud/docker/local/mode/containerusage.pm +++ b/src/cloud/docker/local/mode/containerusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/local/mode/listcontainers.pm b/src/cloud/docker/local/mode/listcontainers.pm index eec89ac7c..f22c26135 100644 --- a/src/cloud/docker/local/mode/listcontainers.pm +++ b/src/cloud/docker/local/mode/listcontainers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/local/plugin.pm b/src/cloud/docker/local/plugin.pm index 893a8c0ab..d3448c9d7 100644 --- a/src/cloud/docker/local/plugin.pm +++ b/src/cloud/docker/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/restapi/custom/api.pm b/src/cloud/docker/restapi/custom/api.pm index 0f612bd8a..fba0ba64e 100644 --- a/src/cloud/docker/restapi/custom/api.pm +++ b/src/cloud/docker/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/restapi/mode/containerusage.pm b/src/cloud/docker/restapi/mode/containerusage.pm index 3aea0e6af..c06ed482a 100644 --- a/src/cloud/docker/restapi/mode/containerusage.pm +++ b/src/cloud/docker/restapi/mode/containerusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/restapi/mode/listcontainers.pm b/src/cloud/docker/restapi/mode/listcontainers.pm index 63abd1254..0ee46ed98 100644 --- a/src/cloud/docker/restapi/mode/listcontainers.pm +++ b/src/cloud/docker/restapi/mode/listcontainers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/restapi/mode/nodestatus.pm b/src/cloud/docker/restapi/mode/nodestatus.pm index 753cdaa79..57f683263 100644 --- a/src/cloud/docker/restapi/mode/nodestatus.pm +++ b/src/cloud/docker/restapi/mode/nodestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/restapi/mode/servicestatus.pm b/src/cloud/docker/restapi/mode/servicestatus.pm index afe1ca7b0..b468aec29 100644 --- a/src/cloud/docker/restapi/mode/servicestatus.pm +++ b/src/cloud/docker/restapi/mode/servicestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/docker/restapi/plugin.pm b/src/cloud/docker/restapi/plugin.pm index c7d5e53a5..52e60ee25 100644 --- a/src/cloud/docker/restapi/plugin.pm +++ b/src/cloud/docker/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/common/mode/cpu.pm b/src/cloud/google/gcp/cloudsql/common/mode/cpu.pm index ebafaf645..d59fc95db 100644 --- a/src/cloud/google/gcp/cloudsql/common/mode/cpu.pm +++ b/src/cloud/google/gcp/cloudsql/common/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/common/mode/network.pm b/src/cloud/google/gcp/cloudsql/common/mode/network.pm index 59321b7a6..094b5d741 100644 --- a/src/cloud/google/gcp/cloudsql/common/mode/network.pm +++ b/src/cloud/google/gcp/cloudsql/common/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/common/mode/storage.pm b/src/cloud/google/gcp/cloudsql/common/mode/storage.pm index 979e78219..7fbd15d66 100644 --- a/src/cloud/google/gcp/cloudsql/common/mode/storage.pm +++ b/src/cloud/google/gcp/cloudsql/common/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/mysql/mode/discovery.pm b/src/cloud/google/gcp/cloudsql/mysql/mode/discovery.pm index 55bd36976..631951424 100644 --- a/src/cloud/google/gcp/cloudsql/mysql/mode/discovery.pm +++ b/src/cloud/google/gcp/cloudsql/mysql/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/mysql/mode/innodb.pm b/src/cloud/google/gcp/cloudsql/mysql/mode/innodb.pm index f9f303901..0ec8f6b2c 100644 --- a/src/cloud/google/gcp/cloudsql/mysql/mode/innodb.pm +++ b/src/cloud/google/gcp/cloudsql/mysql/mode/innodb.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/mysql/mode/queries.pm b/src/cloud/google/gcp/cloudsql/mysql/mode/queries.pm index 805ca7946..34cc2ba30 100644 --- a/src/cloud/google/gcp/cloudsql/mysql/mode/queries.pm +++ b/src/cloud/google/gcp/cloudsql/mysql/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/cloudsql/mysql/plugin.pm b/src/cloud/google/gcp/cloudsql/mysql/plugin.pm index 081ef5eaa..50bfe5ddd 100644 --- a/src/cloud/google/gcp/cloudsql/mysql/plugin.pm +++ b/src/cloud/google/gcp/cloudsql/mysql/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/compute/computeengine/mode/cpu.pm b/src/cloud/google/gcp/compute/computeengine/mode/cpu.pm index fb6ad35e3..04df6a5ff 100644 --- a/src/cloud/google/gcp/compute/computeengine/mode/cpu.pm +++ b/src/cloud/google/gcp/compute/computeengine/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/compute/computeengine/mode/discovery.pm b/src/cloud/google/gcp/compute/computeengine/mode/discovery.pm index 0fb342a41..25412e052 100644 --- a/src/cloud/google/gcp/compute/computeengine/mode/discovery.pm +++ b/src/cloud/google/gcp/compute/computeengine/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/compute/computeengine/mode/diskio.pm b/src/cloud/google/gcp/compute/computeengine/mode/diskio.pm index a1186315b..ffd9bb30c 100644 --- a/src/cloud/google/gcp/compute/computeengine/mode/diskio.pm +++ b/src/cloud/google/gcp/compute/computeengine/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/compute/computeengine/mode/network.pm b/src/cloud/google/gcp/compute/computeengine/mode/network.pm index e3d473c24..dadb268ae 100644 --- a/src/cloud/google/gcp/compute/computeengine/mode/network.pm +++ b/src/cloud/google/gcp/compute/computeengine/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/compute/computeengine/plugin.pm b/src/cloud/google/gcp/compute/computeengine/plugin.pm index 9a0364669..d883a52d9 100644 --- a/src/cloud/google/gcp/compute/computeengine/plugin.pm +++ b/src/cloud/google/gcp/compute/computeengine/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/custom/api.pm b/src/cloud/google/gcp/custom/api.pm index 35afc83f4..2884df93a 100644 --- a/src/cloud/google/gcp/custom/api.pm +++ b/src/cloud/google/gcp/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/custom/mode.pm b/src/cloud/google/gcp/custom/mode.pm index ca613566d..e81a8fded 100644 --- a/src/cloud/google/gcp/custom/mode.pm +++ b/src/cloud/google/gcp/custom/mode.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/management/stackdriver/mode/getmetrics.pm b/src/cloud/google/gcp/management/stackdriver/mode/getmetrics.pm index b90a28654..e4ab75efd 100644 --- a/src/cloud/google/gcp/management/stackdriver/mode/getmetrics.pm +++ b/src/cloud/google/gcp/management/stackdriver/mode/getmetrics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/management/stackdriver/plugin.pm b/src/cloud/google/gcp/management/stackdriver/plugin.pm index afd34a74a..f3d3a080e 100644 --- a/src/cloud/google/gcp/management/stackdriver/plugin.pm +++ b/src/cloud/google/gcp/management/stackdriver/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/storage/mode/bucket.pm b/src/cloud/google/gcp/storage/mode/bucket.pm index 132a37af6..a50001c8d 100644 --- a/src/cloud/google/gcp/storage/mode/bucket.pm +++ b/src/cloud/google/gcp/storage/mode/bucket.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/storage/mode/discovery.pm b/src/cloud/google/gcp/storage/mode/discovery.pm index 0a5dca5a4..435deae96 100644 --- a/src/cloud/google/gcp/storage/mode/discovery.pm +++ b/src/cloud/google/gcp/storage/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/google/gcp/storage/plugin.pm b/src/cloud/google/gcp/storage/plugin.pm index 102144c61..aca8ea775 100644 --- a/src/cloud/google/gcp/storage/plugin.pm +++ b/src/cloud/google/gcp/storage/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ibm/softlayer/custom/xmlapi.pm b/src/cloud/ibm/softlayer/custom/xmlapi.pm index de461b852..9a17bdf23 100644 --- a/src/cloud/ibm/softlayer/custom/xmlapi.pm +++ b/src/cloud/ibm/softlayer/custom/xmlapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ibm/softlayer/mode/events.pm b/src/cloud/ibm/softlayer/mode/events.pm index 81fc72a1a..b771e7909 100644 --- a/src/cloud/ibm/softlayer/mode/events.pm +++ b/src/cloud/ibm/softlayer/mode/events.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ibm/softlayer/mode/opentickets.pm b/src/cloud/ibm/softlayer/mode/opentickets.pm index 813eff179..0c76cd564 100644 --- a/src/cloud/ibm/softlayer/mode/opentickets.pm +++ b/src/cloud/ibm/softlayer/mode/opentickets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ibm/softlayer/plugin.pm b/src/cloud/ibm/softlayer/plugin.pm index f4736f60a..4ebb6e5c5 100644 --- a/src/cloud/ibm/softlayer/plugin.pm +++ b/src/cloud/ibm/softlayer/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/iics/restapi/custom/api.pm b/src/cloud/iics/restapi/custom/api.pm index 7ad41791c..07d18c624 100644 --- a/src/cloud/iics/restapi/custom/api.pm +++ b/src/cloud/iics/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/iics/restapi/mode/agents.pm b/src/cloud/iics/restapi/mode/agents.pm index cca0d8300..11dc0fd11 100644 --- a/src/cloud/iics/restapi/mode/agents.pm +++ b/src/cloud/iics/restapi/mode/agents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/iics/restapi/mode/listagents.pm b/src/cloud/iics/restapi/mode/listagents.pm index 7e209912f..d4ca0f7d6 100644 --- a/src/cloud/iics/restapi/mode/listagents.pm +++ b/src/cloud/iics/restapi/mode/listagents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/iics/restapi/plugin.pm b/src/cloud/iics/restapi/plugin.pm index 140949581..6678595b2 100644 --- a/src/cloud/iics/restapi/plugin.pm +++ b/src/cloud/iics/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/custom/api.pm b/src/cloud/kubernetes/custom/api.pm index 09bd322ff..420a30b41 100644 --- a/src/cloud/kubernetes/custom/api.pm +++ b/src/cloud/kubernetes/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/custom/kubectl.pm b/src/cloud/kubernetes/custom/kubectl.pm index 7da47f4f5..bae6a1617 100644 --- a/src/cloud/kubernetes/custom/kubectl.pm +++ b/src/cloud/kubernetes/custom/kubectl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/clusterevents.pm b/src/cloud/kubernetes/mode/clusterevents.pm index 24b77b435..07c536a4a 100644 --- a/src/cloud/kubernetes/mode/clusterevents.pm +++ b/src/cloud/kubernetes/mode/clusterevents.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/cronjobstatus.pm b/src/cloud/kubernetes/mode/cronjobstatus.pm index 094b981f5..f3d651d6d 100644 --- a/src/cloud/kubernetes/mode/cronjobstatus.pm +++ b/src/cloud/kubernetes/mode/cronjobstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/daemonsetstatus.pm b/src/cloud/kubernetes/mode/daemonsetstatus.pm index ab6ad2e86..45d4b43c3 100644 --- a/src/cloud/kubernetes/mode/daemonsetstatus.pm +++ b/src/cloud/kubernetes/mode/daemonsetstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/deploymentstatus.pm b/src/cloud/kubernetes/mode/deploymentstatus.pm index 1b3df4721..9a09f23a0 100644 --- a/src/cloud/kubernetes/mode/deploymentstatus.pm +++ b/src/cloud/kubernetes/mode/deploymentstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/discovery.pm b/src/cloud/kubernetes/mode/discovery.pm index af6e1b7a8..b2b536591 100644 --- a/src/cloud/kubernetes/mode/discovery.pm +++ b/src/cloud/kubernetes/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listcronjobs.pm b/src/cloud/kubernetes/mode/listcronjobs.pm index b4cf6bb65..9b61c361f 100644 --- a/src/cloud/kubernetes/mode/listcronjobs.pm +++ b/src/cloud/kubernetes/mode/listcronjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listdaemonsets.pm b/src/cloud/kubernetes/mode/listdaemonsets.pm index 4fc32aa64..6aed084ee 100644 --- a/src/cloud/kubernetes/mode/listdaemonsets.pm +++ b/src/cloud/kubernetes/mode/listdaemonsets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listdeployments.pm b/src/cloud/kubernetes/mode/listdeployments.pm index fc468c40e..8f61560e5 100644 --- a/src/cloud/kubernetes/mode/listdeployments.pm +++ b/src/cloud/kubernetes/mode/listdeployments.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listingresses.pm b/src/cloud/kubernetes/mode/listingresses.pm index 00f733e8f..8fa4062de 100644 --- a/src/cloud/kubernetes/mode/listingresses.pm +++ b/src/cloud/kubernetes/mode/listingresses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listnamespaces.pm b/src/cloud/kubernetes/mode/listnamespaces.pm index d67951c7d..02ac90472 100644 --- a/src/cloud/kubernetes/mode/listnamespaces.pm +++ b/src/cloud/kubernetes/mode/listnamespaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listnodes.pm b/src/cloud/kubernetes/mode/listnodes.pm index 1362d8371..2bf600ab4 100644 --- a/src/cloud/kubernetes/mode/listnodes.pm +++ b/src/cloud/kubernetes/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listpersistentvolumes.pm b/src/cloud/kubernetes/mode/listpersistentvolumes.pm index f31d61aa1..e627f79b8 100644 --- a/src/cloud/kubernetes/mode/listpersistentvolumes.pm +++ b/src/cloud/kubernetes/mode/listpersistentvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listpods.pm b/src/cloud/kubernetes/mode/listpods.pm index 72a4150bb..185ee00b5 100644 --- a/src/cloud/kubernetes/mode/listpods.pm +++ b/src/cloud/kubernetes/mode/listpods.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listreplicasets.pm b/src/cloud/kubernetes/mode/listreplicasets.pm index 9a3368a2b..2ebfe3c5e 100644 --- a/src/cloud/kubernetes/mode/listreplicasets.pm +++ b/src/cloud/kubernetes/mode/listreplicasets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listreplicationcontrollers.pm b/src/cloud/kubernetes/mode/listreplicationcontrollers.pm index ee856c607..4e626d4ae 100644 --- a/src/cloud/kubernetes/mode/listreplicationcontrollers.pm +++ b/src/cloud/kubernetes/mode/listreplicationcontrollers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/listservices.pm b/src/cloud/kubernetes/mode/listservices.pm index 34738e4e9..0f1bc28a8 100644 --- a/src/cloud/kubernetes/mode/listservices.pm +++ b/src/cloud/kubernetes/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/liststatefulsets.pm b/src/cloud/kubernetes/mode/liststatefulsets.pm index ddfcd6b54..c021f1093 100644 --- a/src/cloud/kubernetes/mode/liststatefulsets.pm +++ b/src/cloud/kubernetes/mode/liststatefulsets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/nodestatus.pm b/src/cloud/kubernetes/mode/nodestatus.pm index f9d13a7b9..4a0bc51de 100644 --- a/src/cloud/kubernetes/mode/nodestatus.pm +++ b/src/cloud/kubernetes/mode/nodestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/nodeusage.pm b/src/cloud/kubernetes/mode/nodeusage.pm index 2795c145b..a53942c86 100644 --- a/src/cloud/kubernetes/mode/nodeusage.pm +++ b/src/cloud/kubernetes/mode/nodeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/persistentvolumestatus.pm b/src/cloud/kubernetes/mode/persistentvolumestatus.pm index 14f6cf847..e3ebe9789 100644 --- a/src/cloud/kubernetes/mode/persistentvolumestatus.pm +++ b/src/cloud/kubernetes/mode/persistentvolumestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/podstatus.pm b/src/cloud/kubernetes/mode/podstatus.pm index 3803ecd87..0e881fa92 100644 --- a/src/cloud/kubernetes/mode/podstatus.pm +++ b/src/cloud/kubernetes/mode/podstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/replicasetstatus.pm b/src/cloud/kubernetes/mode/replicasetstatus.pm index a24e71d97..b65cb1136 100644 --- a/src/cloud/kubernetes/mode/replicasetstatus.pm +++ b/src/cloud/kubernetes/mode/replicasetstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/replicationcontrollerstatus.pm b/src/cloud/kubernetes/mode/replicationcontrollerstatus.pm index 621312137..4e16a74f5 100644 --- a/src/cloud/kubernetes/mode/replicationcontrollerstatus.pm +++ b/src/cloud/kubernetes/mode/replicationcontrollerstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/mode/statefulsetstatus.pm b/src/cloud/kubernetes/mode/statefulsetstatus.pm index 703e82290..b465cc44e 100644 --- a/src/cloud/kubernetes/mode/statefulsetstatus.pm +++ b/src/cloud/kubernetes/mode/statefulsetstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/kubernetes/plugin.pm b/src/cloud/kubernetes/plugin.pm index b2704855e..fefceec4d 100644 --- a/src/cloud/kubernetes/plugin.pm +++ b/src/cloud/kubernetes/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/azuread/mode/directorysizeusage.pm b/src/cloud/microsoft/office365/azuread/mode/directorysizeusage.pm index b7f43b4dd..15281bd0f 100644 --- a/src/cloud/microsoft/office365/azuread/mode/directorysizeusage.pm +++ b/src/cloud/microsoft/office365/azuread/mode/directorysizeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/azuread/plugin.pm b/src/cloud/microsoft/office365/azuread/plugin.pm index 8dff31499..4529bb379 100644 --- a/src/cloud/microsoft/office365/azuread/plugin.pm +++ b/src/cloud/microsoft/office365/azuread/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/custom/graphapi.pm b/src/cloud/microsoft/office365/custom/graphapi.pm index 0e196d7d4..bafc12019 100644 --- a/src/cloud/microsoft/office365/custom/graphapi.pm +++ b/src/cloud/microsoft/office365/custom/graphapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/custom/managementapi.pm b/src/cloud/microsoft/office365/custom/managementapi.pm index 3d6a8d124..1ac560f8e 100644 --- a/src/cloud/microsoft/office365/custom/managementapi.pm +++ b/src/cloud/microsoft/office365/custom/managementapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/exchange/mode/emailactivity.pm b/src/cloud/microsoft/office365/exchange/mode/emailactivity.pm index 4f4e5a6c6..a7d6f7d95 100644 --- a/src/cloud/microsoft/office365/exchange/mode/emailactivity.pm +++ b/src/cloud/microsoft/office365/exchange/mode/emailactivity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/exchange/mode/mailboxusage.pm b/src/cloud/microsoft/office365/exchange/mode/mailboxusage.pm index 8bb275669..ef0865d42 100644 --- a/src/cloud/microsoft/office365/exchange/mode/mailboxusage.pm +++ b/src/cloud/microsoft/office365/exchange/mode/mailboxusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/exchange/plugin.pm b/src/cloud/microsoft/office365/exchange/plugin.pm index 3fe1671f9..b7325bccc 100644 --- a/src/cloud/microsoft/office365/exchange/plugin.pm +++ b/src/cloud/microsoft/office365/exchange/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/management/mode/appcredentials.pm b/src/cloud/microsoft/office365/management/mode/appcredentials.pm index 285e7a5ec..876707b91 100644 --- a/src/cloud/microsoft/office365/management/mode/appcredentials.pm +++ b/src/cloud/microsoft/office365/management/mode/appcredentials.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/management/mode/listservices.pm b/src/cloud/microsoft/office365/management/mode/listservices.pm index 48ce65849..ac9cdf6d5 100644 --- a/src/cloud/microsoft/office365/management/mode/listservices.pm +++ b/src/cloud/microsoft/office365/management/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/management/mode/listsubscriptions.pm b/src/cloud/microsoft/office365/management/mode/listsubscriptions.pm index d13cc0836..2d90c7ceb 100644 --- a/src/cloud/microsoft/office365/management/mode/listsubscriptions.pm +++ b/src/cloud/microsoft/office365/management/mode/listsubscriptions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/management/mode/servicestatus.pm b/src/cloud/microsoft/office365/management/mode/servicestatus.pm index aff124e55..fa040d8be 100644 --- a/src/cloud/microsoft/office365/management/mode/servicestatus.pm +++ b/src/cloud/microsoft/office365/management/mode/servicestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/management/mode/subscriptions.pm b/src/cloud/microsoft/office365/management/mode/subscriptions.pm index 78f43692c..ec6043424 100644 --- a/src/cloud/microsoft/office365/management/mode/subscriptions.pm +++ b/src/cloud/microsoft/office365/management/mode/subscriptions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/management/plugin.pm b/src/cloud/microsoft/office365/management/plugin.pm index 82ab11256..dd41c9186 100644 --- a/src/cloud/microsoft/office365/management/plugin.pm +++ b/src/cloud/microsoft/office365/management/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/onedrive/mode/listsites.pm b/src/cloud/microsoft/office365/onedrive/mode/listsites.pm index 47047ce15..5f363127e 100644 --- a/src/cloud/microsoft/office365/onedrive/mode/listsites.pm +++ b/src/cloud/microsoft/office365/onedrive/mode/listsites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/onedrive/mode/siteusage.pm b/src/cloud/microsoft/office365/onedrive/mode/siteusage.pm index 528063fce..d85150a1f 100644 --- a/src/cloud/microsoft/office365/onedrive/mode/siteusage.pm +++ b/src/cloud/microsoft/office365/onedrive/mode/siteusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/onedrive/mode/usersactivity.pm b/src/cloud/microsoft/office365/onedrive/mode/usersactivity.pm index 1bef945d6..2935d0024 100644 --- a/src/cloud/microsoft/office365/onedrive/mode/usersactivity.pm +++ b/src/cloud/microsoft/office365/onedrive/mode/usersactivity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/onedrive/plugin.pm b/src/cloud/microsoft/office365/onedrive/plugin.pm index d6819df4b..fccbf4898 100644 --- a/src/cloud/microsoft/office365/onedrive/plugin.pm +++ b/src/cloud/microsoft/office365/onedrive/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/sharepoint/mode/listsites.pm b/src/cloud/microsoft/office365/sharepoint/mode/listsites.pm index bb16a5b7a..06652f713 100644 --- a/src/cloud/microsoft/office365/sharepoint/mode/listsites.pm +++ b/src/cloud/microsoft/office365/sharepoint/mode/listsites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/sharepoint/mode/siteusage.pm b/src/cloud/microsoft/office365/sharepoint/mode/siteusage.pm index 9fe914337..accd122e7 100644 --- a/src/cloud/microsoft/office365/sharepoint/mode/siteusage.pm +++ b/src/cloud/microsoft/office365/sharepoint/mode/siteusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/sharepoint/mode/usersactivity.pm b/src/cloud/microsoft/office365/sharepoint/mode/usersactivity.pm index bed09ccc9..59cafceac 100644 --- a/src/cloud/microsoft/office365/sharepoint/mode/usersactivity.pm +++ b/src/cloud/microsoft/office365/sharepoint/mode/usersactivity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/sharepoint/plugin.pm b/src/cloud/microsoft/office365/sharepoint/plugin.pm index 8ad9500c1..03452b6bf 100644 --- a/src/cloud/microsoft/office365/sharepoint/plugin.pm +++ b/src/cloud/microsoft/office365/sharepoint/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/skype/mode/devicesusage.pm b/src/cloud/microsoft/office365/skype/mode/devicesusage.pm index 961791057..e38d7a096 100644 --- a/src/cloud/microsoft/office365/skype/mode/devicesusage.pm +++ b/src/cloud/microsoft/office365/skype/mode/devicesusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/skype/mode/usersactivity.pm b/src/cloud/microsoft/office365/skype/mode/usersactivity.pm index 7ab193767..328616ff7 100644 --- a/src/cloud/microsoft/office365/skype/mode/usersactivity.pm +++ b/src/cloud/microsoft/office365/skype/mode/usersactivity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/skype/plugin.pm b/src/cloud/microsoft/office365/skype/plugin.pm index 7e68609db..396fc8cd7 100644 --- a/src/cloud/microsoft/office365/skype/plugin.pm +++ b/src/cloud/microsoft/office365/skype/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/teams/mode/devicesusage.pm b/src/cloud/microsoft/office365/teams/mode/devicesusage.pm index 4decc45f3..6dd975a75 100644 --- a/src/cloud/microsoft/office365/teams/mode/devicesusage.pm +++ b/src/cloud/microsoft/office365/teams/mode/devicesusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/teams/mode/usersactivity.pm b/src/cloud/microsoft/office365/teams/mode/usersactivity.pm index 42f0f21bb..4c91d1a36 100644 --- a/src/cloud/microsoft/office365/teams/mode/usersactivity.pm +++ b/src/cloud/microsoft/office365/teams/mode/usersactivity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/microsoft/office365/teams/plugin.pm b/src/cloud/microsoft/office365/teams/plugin.pm index 3c64b5043..cb6ee98ee 100644 --- a/src/cloud/microsoft/office365/teams/plugin.pm +++ b/src/cloud/microsoft/office365/teams/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/clusterusage.pm b/src/cloud/nutanix/snmp/mode/clusterusage.pm index 2fceee441..8809747e5 100644 --- a/src/cloud/nutanix/snmp/mode/clusterusage.pm +++ b/src/cloud/nutanix/snmp/mode/clusterusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/containerusage.pm b/src/cloud/nutanix/snmp/mode/containerusage.pm index 326895692..0ba9ba563 100644 --- a/src/cloud/nutanix/snmp/mode/containerusage.pm +++ b/src/cloud/nutanix/snmp/mode/containerusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/discovery.pm b/src/cloud/nutanix/snmp/mode/discovery.pm index b447d883a..957e3fc80 100644 --- a/src/cloud/nutanix/snmp/mode/discovery.pm +++ b/src/cloud/nutanix/snmp/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/diskusage.pm b/src/cloud/nutanix/snmp/mode/diskusage.pm index 7cf62507c..f28a46e14 100644 --- a/src/cloud/nutanix/snmp/mode/diskusage.pm +++ b/src/cloud/nutanix/snmp/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/hypervisorusage.pm b/src/cloud/nutanix/snmp/mode/hypervisorusage.pm index a27d5833b..a791c597b 100644 --- a/src/cloud/nutanix/snmp/mode/hypervisorusage.pm +++ b/src/cloud/nutanix/snmp/mode/hypervisorusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/listcontainers.pm b/src/cloud/nutanix/snmp/mode/listcontainers.pm index 02337b666..f7b823c4d 100644 --- a/src/cloud/nutanix/snmp/mode/listcontainers.pm +++ b/src/cloud/nutanix/snmp/mode/listcontainers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/listdisks.pm b/src/cloud/nutanix/snmp/mode/listdisks.pm index 902d62d3d..e1b079629 100644 --- a/src/cloud/nutanix/snmp/mode/listdisks.pm +++ b/src/cloud/nutanix/snmp/mode/listdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/listhypervisors.pm b/src/cloud/nutanix/snmp/mode/listhypervisors.pm index a2b371e12..f04a5081e 100644 --- a/src/cloud/nutanix/snmp/mode/listhypervisors.pm +++ b/src/cloud/nutanix/snmp/mode/listhypervisors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/liststoragepools.pm b/src/cloud/nutanix/snmp/mode/liststoragepools.pm index bbd6f6d92..36908e82d 100644 --- a/src/cloud/nutanix/snmp/mode/liststoragepools.pm +++ b/src/cloud/nutanix/snmp/mode/liststoragepools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/listvms.pm b/src/cloud/nutanix/snmp/mode/listvms.pm index 42f18b4e2..e6ca4049c 100644 --- a/src/cloud/nutanix/snmp/mode/listvms.pm +++ b/src/cloud/nutanix/snmp/mode/listvms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/storagepoolusage.pm b/src/cloud/nutanix/snmp/mode/storagepoolusage.pm index f2f9f4e6a..2d945b0f1 100644 --- a/src/cloud/nutanix/snmp/mode/storagepoolusage.pm +++ b/src/cloud/nutanix/snmp/mode/storagepoolusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/mode/vmusage.pm b/src/cloud/nutanix/snmp/mode/vmusage.pm index 66cb11be7..3e77b2465 100644 --- a/src/cloud/nutanix/snmp/mode/vmusage.pm +++ b/src/cloud/nutanix/snmp/mode/vmusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/nutanix/snmp/plugin.pm b/src/cloud/nutanix/snmp/plugin.pm index 94279ef4b..4feaa7b2d 100644 --- a/src/cloud/nutanix/snmp/plugin.pm +++ b/src/cloud/nutanix/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/custom/http.pm b/src/cloud/outscale/custom/http.pm index e49be0721..4111dbdba 100644 --- a/src/cloud/outscale/custom/http.pm +++ b/src/cloud/outscale/custom/http.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/custom/osccli.pm b/src/cloud/outscale/custom/osccli.pm index ff16f9335..8c2e75731 100644 --- a/src/cloud/outscale/custom/osccli.pm +++ b/src/cloud/outscale/custom/osccli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/accountconsumptions.pm b/src/cloud/outscale/mode/accountconsumptions.pm index 93e505a58..ff9e1a012 100644 --- a/src/cloud/outscale/mode/accountconsumptions.pm +++ b/src/cloud/outscale/mode/accountconsumptions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/clientgateways.pm b/src/cloud/outscale/mode/clientgateways.pm index 6f622ee4f..352a3e15c 100644 --- a/src/cloud/outscale/mode/clientgateways.pm +++ b/src/cloud/outscale/mode/clientgateways.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/internetservices.pm b/src/cloud/outscale/mode/internetservices.pm index dc3d72642..d43758571 100644 --- a/src/cloud/outscale/mode/internetservices.pm +++ b/src/cloud/outscale/mode/internetservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listclientgateways.pm b/src/cloud/outscale/mode/listclientgateways.pm index 7268e2f66..196b79750 100644 --- a/src/cloud/outscale/mode/listclientgateways.pm +++ b/src/cloud/outscale/mode/listclientgateways.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listinternetservices.pm b/src/cloud/outscale/mode/listinternetservices.pm index 5fe9dcf09..6a3f20962 100644 --- a/src/cloud/outscale/mode/listinternetservices.pm +++ b/src/cloud/outscale/mode/listinternetservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listloadbalancers.pm b/src/cloud/outscale/mode/listloadbalancers.pm index 078952452..816b2c501 100644 --- a/src/cloud/outscale/mode/listloadbalancers.pm +++ b/src/cloud/outscale/mode/listloadbalancers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listnatservices.pm b/src/cloud/outscale/mode/listnatservices.pm index 52aa275d6..f2c96bcc0 100644 --- a/src/cloud/outscale/mode/listnatservices.pm +++ b/src/cloud/outscale/mode/listnatservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listnets.pm b/src/cloud/outscale/mode/listnets.pm index 771faa2a9..d681c4787 100644 --- a/src/cloud/outscale/mode/listnets.pm +++ b/src/cloud/outscale/mode/listnets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listquotas.pm b/src/cloud/outscale/mode/listquotas.pm index 77f5d4338..2e16b6967 100644 --- a/src/cloud/outscale/mode/listquotas.pm +++ b/src/cloud/outscale/mode/listquotas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listroutetables.pm b/src/cloud/outscale/mode/listroutetables.pm index 155513d80..4095deac6 100644 --- a/src/cloud/outscale/mode/listroutetables.pm +++ b/src/cloud/outscale/mode/listroutetables.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listsubnets.pm b/src/cloud/outscale/mode/listsubnets.pm index 433a576e3..6502d4601 100644 --- a/src/cloud/outscale/mode/listsubnets.pm +++ b/src/cloud/outscale/mode/listsubnets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listvirtualgateways.pm b/src/cloud/outscale/mode/listvirtualgateways.pm index 2230c1563..c1d090de4 100644 --- a/src/cloud/outscale/mode/listvirtualgateways.pm +++ b/src/cloud/outscale/mode/listvirtualgateways.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listvms.pm b/src/cloud/outscale/mode/listvms.pm index 6888c61fb..c3790c5d4 100644 --- a/src/cloud/outscale/mode/listvms.pm +++ b/src/cloud/outscale/mode/listvms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listvolumes.pm b/src/cloud/outscale/mode/listvolumes.pm index 68fb7fd76..b0e23c0e1 100644 --- a/src/cloud/outscale/mode/listvolumes.pm +++ b/src/cloud/outscale/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/listvpnconnections.pm b/src/cloud/outscale/mode/listvpnconnections.pm index 3e2b51ab2..265803162 100644 --- a/src/cloud/outscale/mode/listvpnconnections.pm +++ b/src/cloud/outscale/mode/listvpnconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/loadbalancers.pm b/src/cloud/outscale/mode/loadbalancers.pm index ae4ec5c4d..006cd0766 100644 --- a/src/cloud/outscale/mode/loadbalancers.pm +++ b/src/cloud/outscale/mode/loadbalancers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/natservices.pm b/src/cloud/outscale/mode/natservices.pm index b09373019..29ee28b18 100644 --- a/src/cloud/outscale/mode/natservices.pm +++ b/src/cloud/outscale/mode/natservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/nets.pm b/src/cloud/outscale/mode/nets.pm index fd8251516..176cddf6d 100644 --- a/src/cloud/outscale/mode/nets.pm +++ b/src/cloud/outscale/mode/nets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/quotas.pm b/src/cloud/outscale/mode/quotas.pm index c9638f91a..51376127e 100644 --- a/src/cloud/outscale/mode/quotas.pm +++ b/src/cloud/outscale/mode/quotas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/routetables.pm b/src/cloud/outscale/mode/routetables.pm index 4344ffe80..410a0da54 100644 --- a/src/cloud/outscale/mode/routetables.pm +++ b/src/cloud/outscale/mode/routetables.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/subnets.pm b/src/cloud/outscale/mode/subnets.pm index 5b2be0bbb..dd89a006d 100644 --- a/src/cloud/outscale/mode/subnets.pm +++ b/src/cloud/outscale/mode/subnets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/virtualgateways.pm b/src/cloud/outscale/mode/virtualgateways.pm index 200f17a03..3d6813325 100644 --- a/src/cloud/outscale/mode/virtualgateways.pm +++ b/src/cloud/outscale/mode/virtualgateways.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/vms.pm b/src/cloud/outscale/mode/vms.pm index 345256e18..6ba90984e 100644 --- a/src/cloud/outscale/mode/vms.pm +++ b/src/cloud/outscale/mode/vms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/volumes.pm b/src/cloud/outscale/mode/volumes.pm index 74b48f8e8..4eb42e409 100644 --- a/src/cloud/outscale/mode/volumes.pm +++ b/src/cloud/outscale/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/mode/vpnconnections.pm b/src/cloud/outscale/mode/vpnconnections.pm index fc08ad571..1e374aeae 100644 --- a/src/cloud/outscale/mode/vpnconnections.pm +++ b/src/cloud/outscale/mode/vpnconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/outscale/plugin.pm b/src/cloud/outscale/plugin.pm index 879164dc2..27cb468a5 100644 --- a/src/cloud/outscale/plugin.pm +++ b/src/cloud/outscale/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ovh/restapi/custom/api.pm b/src/cloud/ovh/restapi/custom/api.pm index 525d1da95..fb9b76b56 100644 --- a/src/cloud/ovh/restapi/custom/api.pm +++ b/src/cloud/ovh/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ovh/restapi/mode/quotausage.pm b/src/cloud/ovh/restapi/mode/quotausage.pm index ecf34edfc..6e18aa626 100644 --- a/src/cloud/ovh/restapi/mode/quotausage.pm +++ b/src/cloud/ovh/restapi/mode/quotausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ovh/restapi/mode/sms.pm b/src/cloud/ovh/restapi/mode/sms.pm index 974d53189..f83353d4b 100644 --- a/src/cloud/ovh/restapi/mode/sms.pm +++ b/src/cloud/ovh/restapi/mode/sms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/ovh/restapi/plugin.pm b/src/cloud/ovh/restapi/plugin.pm index 2144c0b60..4e904b782 100644 --- a/src/cloud/ovh/restapi/plugin.pm +++ b/src/cloud/ovh/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/containerstatus.pm b/src/cloud/prometheus/direct/kubernetes/mode/containerstatus.pm index dc3ee2bd2..3f07912c3 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/containerstatus.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/containerstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/daemonsetstatus.pm b/src/cloud/prometheus/direct/kubernetes/mode/daemonsetstatus.pm index 1f903b5c8..36476d3ef 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/daemonsetstatus.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/daemonsetstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/deploymentstatus.pm b/src/cloud/prometheus/direct/kubernetes/mode/deploymentstatus.pm index c2183b11c..a93bd2ca8 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/deploymentstatus.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/deploymentstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/listcontainers.pm b/src/cloud/prometheus/direct/kubernetes/mode/listcontainers.pm index 5aa75792d..1804b0df5 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/listcontainers.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/listcontainers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/listdaemonsets.pm b/src/cloud/prometheus/direct/kubernetes/mode/listdaemonsets.pm index dc2c9bf1d..27c03cac7 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/listdaemonsets.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/listdaemonsets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/listdeployments.pm b/src/cloud/prometheus/direct/kubernetes/mode/listdeployments.pm index b8047265d..eb3d3b48f 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/listdeployments.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/listdeployments.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/listnamespaces.pm b/src/cloud/prometheus/direct/kubernetes/mode/listnamespaces.pm index 4d7faf965..e46c1573a 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/listnamespaces.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/listnamespaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/listnodes.pm b/src/cloud/prometheus/direct/kubernetes/mode/listnodes.pm index c2b858246..03624927c 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/listnodes.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/listservices.pm b/src/cloud/prometheus/direct/kubernetes/mode/listservices.pm index 7ed1237da..3ff3e1add 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/listservices.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/namespacestatus.pm b/src/cloud/prometheus/direct/kubernetes/mode/namespacestatus.pm index 9930ede76..fa40b724e 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/namespacestatus.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/namespacestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/mode/nodestatus.pm b/src/cloud/prometheus/direct/kubernetes/mode/nodestatus.pm index 538fade8c..9d634a5bf 100644 --- a/src/cloud/prometheus/direct/kubernetes/mode/nodestatus.pm +++ b/src/cloud/prometheus/direct/kubernetes/mode/nodestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/kubernetes/plugin.pm b/src/cloud/prometheus/direct/kubernetes/plugin.pm index 881e0ee42..c21fecac0 100644 --- a/src/cloud/prometheus/direct/kubernetes/plugin.pm +++ b/src/cloud/prometheus/direct/kubernetes/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/nginxingresscontroller/mode/connections.pm b/src/cloud/prometheus/direct/nginxingresscontroller/mode/connections.pm index 528dc6222..86de51c36 100644 --- a/src/cloud/prometheus/direct/nginxingresscontroller/mode/connections.pm +++ b/src/cloud/prometheus/direct/nginxingresscontroller/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/nginxingresscontroller/mode/requests.pm b/src/cloud/prometheus/direct/nginxingresscontroller/mode/requests.pm index 48b2721af..60a6e7070 100644 --- a/src/cloud/prometheus/direct/nginxingresscontroller/mode/requests.pm +++ b/src/cloud/prometheus/direct/nginxingresscontroller/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/direct/nginxingresscontroller/plugin.pm b/src/cloud/prometheus/direct/nginxingresscontroller/plugin.pm index 10549606c..798d26198 100644 --- a/src/cloud/prometheus/direct/nginxingresscontroller/plugin.pm +++ b/src/cloud/prometheus/direct/nginxingresscontroller/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/cadvisor/mode/cpu.pm b/src/cloud/prometheus/exporters/cadvisor/mode/cpu.pm index 91b2be5cf..207daee8f 100644 --- a/src/cloud/prometheus/exporters/cadvisor/mode/cpu.pm +++ b/src/cloud/prometheus/exporters/cadvisor/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -158,7 +158,7 @@ Check containers CPU usage and throttled. =item B<--cpu-attribute> -Set the cpu attribute to match element (must be a PromQL filter, Default: 'cpu="total"') +Set the CPU attribute to match element (must be a PromQL filter, Default: 'cpu="total"') =item B<--container> diff --git a/src/cloud/prometheus/exporters/cadvisor/mode/listcontainers.pm b/src/cloud/prometheus/exporters/cadvisor/mode/listcontainers.pm index 988665479..58489d9d0 100644 --- a/src/cloud/prometheus/exporters/cadvisor/mode/listcontainers.pm +++ b/src/cloud/prometheus/exporters/cadvisor/mode/listcontainers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/cadvisor/mode/load.pm b/src/cloud/prometheus/exporters/cadvisor/mode/load.pm index 15ec9d70c..fa675e7d1 100644 --- a/src/cloud/prometheus/exporters/cadvisor/mode/load.pm +++ b/src/cloud/prometheus/exporters/cadvisor/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/cadvisor/mode/memory.pm b/src/cloud/prometheus/exporters/cadvisor/mode/memory.pm index 73835be4e..54af5b22c 100644 --- a/src/cloud/prometheus/exporters/cadvisor/mode/memory.pm +++ b/src/cloud/prometheus/exporters/cadvisor/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/cadvisor/mode/storage.pm b/src/cloud/prometheus/exporters/cadvisor/mode/storage.pm index 31c6bcb84..425cb93b5 100644 --- a/src/cloud/prometheus/exporters/cadvisor/mode/storage.pm +++ b/src/cloud/prometheus/exporters/cadvisor/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/cadvisor/mode/taskstate.pm b/src/cloud/prometheus/exporters/cadvisor/mode/taskstate.pm index 5772c2b15..16b120eaf 100644 --- a/src/cloud/prometheus/exporters/cadvisor/mode/taskstate.pm +++ b/src/cloud/prometheus/exporters/cadvisor/mode/taskstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/cadvisor/plugin.pm b/src/cloud/prometheus/exporters/cadvisor/plugin.pm index 27aacdbbe..692a1ec92 100644 --- a/src/cloud/prometheus/exporters/cadvisor/plugin.pm +++ b/src/cloud/prometheus/exporters/cadvisor/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/nodeexporter/mode/cpu.pm b/src/cloud/prometheus/exporters/nodeexporter/mode/cpu.pm index 4b1c4ebe1..761716859 100644 --- a/src/cloud/prometheus/exporters/nodeexporter/mode/cpu.pm +++ b/src/cloud/prometheus/exporters/nodeexporter/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -182,7 +182,7 @@ Filter on a specific instance (must be a PromQL filter, Default: 'instance=~".*" =item B<--cpu> -Filter on a specific cpu (must be a PromQL filter, Default: 'cpu=~".*"') +Filter on a specific CPU (must be a PromQL filter, Default: 'cpu=~".*"') =item B<--warning-*> diff --git a/src/cloud/prometheus/exporters/nodeexporter/mode/cpudetailed.pm b/src/cloud/prometheus/exporters/nodeexporter/mode/cpudetailed.pm index 4c5e2ba8f..ca7d5dc3c 100644 --- a/src/cloud/prometheus/exporters/nodeexporter/mode/cpudetailed.pm +++ b/src/cloud/prometheus/exporters/nodeexporter/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -312,7 +312,7 @@ Filter on a specific instance (must be a PromQL filter, Default: 'instance=~".*" =item B<--cpu> -Filter on a specific cpu (must be a PromQL filter, Default: 'cpu=~".*"') +Filter on a specific CPU (must be a PromQL filter, Default: 'cpu=~".*"') =item B<--type> diff --git a/src/cloud/prometheus/exporters/nodeexporter/mode/load.pm b/src/cloud/prometheus/exporters/nodeexporter/mode/load.pm index e4c51cf57..843757b2b 100644 --- a/src/cloud/prometheus/exporters/nodeexporter/mode/load.pm +++ b/src/cloud/prometheus/exporters/nodeexporter/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/nodeexporter/mode/memory.pm b/src/cloud/prometheus/exporters/nodeexporter/mode/memory.pm index 8e43e51fb..897e99139 100644 --- a/src/cloud/prometheus/exporters/nodeexporter/mode/memory.pm +++ b/src/cloud/prometheus/exporters/nodeexporter/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/nodeexporter/mode/storage.pm b/src/cloud/prometheus/exporters/nodeexporter/mode/storage.pm index d5c44142a..f8c5b4e1d 100644 --- a/src/cloud/prometheus/exporters/nodeexporter/mode/storage.pm +++ b/src/cloud/prometheus/exporters/nodeexporter/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/exporters/nodeexporter/plugin.pm b/src/cloud/prometheus/exporters/nodeexporter/plugin.pm index 414c73ae3..3a2604de6 100644 --- a/src/cloud/prometheus/exporters/nodeexporter/plugin.pm +++ b/src/cloud/prometheus/exporters/nodeexporter/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/restapi/custom/api.pm b/src/cloud/prometheus/restapi/custom/api.pm index c7318f253..2808fe876 100644 --- a/src/cloud/prometheus/restapi/custom/api.pm +++ b/src/cloud/prometheus/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/restapi/mode/discovery.pm b/src/cloud/prometheus/restapi/mode/discovery.pm index e7a97421d..4a479930e 100644 --- a/src/cloud/prometheus/restapi/mode/discovery.pm +++ b/src/cloud/prometheus/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/restapi/mode/expression.pm b/src/cloud/prometheus/restapi/mode/expression.pm index bc3af2d1f..43f9c983c 100644 --- a/src/cloud/prometheus/restapi/mode/expression.pm +++ b/src/cloud/prometheus/restapi/mode/expression.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/restapi/mode/targetstatus.pm b/src/cloud/prometheus/restapi/mode/targetstatus.pm index 5073fdd5a..a5e285253 100644 --- a/src/cloud/prometheus/restapi/mode/targetstatus.pm +++ b/src/cloud/prometheus/restapi/mode/targetstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/prometheus/restapi/plugin.pm b/src/cloud/prometheus/restapi/plugin.pm index 21c46442b..49d9c754c 100644 --- a/src/cloud/prometheus/restapi/plugin.pm +++ b/src/cloud/prometheus/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/custom/api.pm b/src/cloud/talend/tmc/custom/api.pm index b35ddd55b..289cc4329 100644 --- a/src/cloud/talend/tmc/custom/api.pm +++ b/src/cloud/talend/tmc/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/cache.pm b/src/cloud/talend/tmc/mode/cache.pm index 4df906e89..0e1d5e78e 100644 --- a/src/cloud/talend/tmc/mode/cache.pm +++ b/src/cloud/talend/tmc/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/listenvironments.pm b/src/cloud/talend/tmc/mode/listenvironments.pm index 7eb00c4fe..dd08de9f8 100644 --- a/src/cloud/talend/tmc/mode/listenvironments.pm +++ b/src/cloud/talend/tmc/mode/listenvironments.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/listplans.pm b/src/cloud/talend/tmc/mode/listplans.pm index 906169a2e..49d487e9d 100644 --- a/src/cloud/talend/tmc/mode/listplans.pm +++ b/src/cloud/talend/tmc/mode/listplans.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/listremoteengines.pm b/src/cloud/talend/tmc/mode/listremoteengines.pm index fb286de26..0edc94a6d 100644 --- a/src/cloud/talend/tmc/mode/listremoteengines.pm +++ b/src/cloud/talend/tmc/mode/listremoteengines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/listtasks.pm b/src/cloud/talend/tmc/mode/listtasks.pm index cc249ade5..5d57eaedd 100644 --- a/src/cloud/talend/tmc/mode/listtasks.pm +++ b/src/cloud/talend/tmc/mode/listtasks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/plans.pm b/src/cloud/talend/tmc/mode/plans.pm index 229245d8a..dcedb2e46 100644 --- a/src/cloud/talend/tmc/mode/plans.pm +++ b/src/cloud/talend/tmc/mode/plans.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/remoteengines.pm b/src/cloud/talend/tmc/mode/remoteengines.pm index 326923f7f..ac248ac3f 100644 --- a/src/cloud/talend/tmc/mode/remoteengines.pm +++ b/src/cloud/talend/tmc/mode/remoteengines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/mode/tasks.pm b/src/cloud/talend/tmc/mode/tasks.pm index 196cf5d88..1e23b8f97 100644 --- a/src/cloud/talend/tmc/mode/tasks.pm +++ b/src/cloud/talend/tmc/mode/tasks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/talend/tmc/plugin.pm b/src/cloud/talend/tmc/plugin.pm index 55e7bd102..82ca78b63 100644 --- a/src/cloud/talend/tmc/plugin.pm +++ b/src/cloud/talend/tmc/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/custom/api.pm b/src/cloud/vmware/velocloud/restapi/custom/api.pm index 3af92b5aa..b713fae36 100644 --- a/src/cloud/vmware/velocloud/restapi/custom/api.pm +++ b/src/cloud/vmware/velocloud/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/applicationusage.pm b/src/cloud/vmware/velocloud/restapi/mode/applicationusage.pm index 38c8dc5f5..365b9d685 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/applicationusage.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/applicationusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/categoryusage.pm b/src/cloud/vmware/velocloud/restapi/mode/categoryusage.pm index bea7193ee..4d60423c8 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/categoryusage.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/categoryusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/discovery.pm b/src/cloud/vmware/velocloud/restapi/mode/discovery.pm index ee00f5322..6a8189f7f 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/discovery.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/edgeqoe.pm b/src/cloud/vmware/velocloud/restapi/mode/edgeqoe.pm index a3cadde33..feaf49102 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/edgeqoe.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/edgeqoe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/edgestatus.pm b/src/cloud/vmware/velocloud/restapi/mode/edgestatus.pm index e9b33990f..7dff5aff5 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/edgestatus.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/edgestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/linkstatus.pm b/src/cloud/vmware/velocloud/restapi/mode/linkstatus.pm index 16cda4464..277ac3d78 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/linkstatus.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/linkstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/linkusage.pm b/src/cloud/vmware/velocloud/restapi/mode/linkusage.pm index 8b7870f82..414903e67 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/linkusage.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/linkusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/listedges.pm b/src/cloud/vmware/velocloud/restapi/mode/listedges.pm index 273bf042e..038d72406 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/listedges.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/listedges.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/mode/listlinks.pm b/src/cloud/vmware/velocloud/restapi/mode/listlinks.pm index 59660957d..5c3430174 100644 --- a/src/cloud/vmware/velocloud/restapi/mode/listlinks.pm +++ b/src/cloud/vmware/velocloud/restapi/mode/listlinks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/cloud/vmware/velocloud/restapi/plugin.pm b/src/cloud/vmware/velocloud/restapi/plugin.pm index fe650e498..4b40d51a1 100644 --- a/src/cloud/vmware/velocloud/restapi/plugin.pm +++ b/src/cloud/vmware/velocloud/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/contrib/check_plugins.pl b/src/contrib/check_plugins.pl index 9c904f450..5191b3444 100755 --- a/src/contrib/check_plugins.pl +++ b/src/contrib/check_plugins.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/contrib/collection/snmp/zxtm-pool.json b/src/contrib/collection/snmp/zxtm-pool.json new file mode 100644 index 000000000..d82b2c861 --- /dev/null +++ b/src/contrib/collection/snmp/zxtm-pool.json @@ -0,0 +1,84 @@ +{ + "constants": { + "okState": "active", + "criticalState": "disabled", + "criticalConnSecond": null, + "criticalCurrConn": null + }, + "mapping": { + "poolState": { + "1": "active", + "2": "disabled", + "3": "draining", + "4": "unused", + "5": "unknown" + } + }, + "snmp": { + "tables": [ + { + "name": "poolEntry", + "oid": ".1.3.6.1.4.1.7146.1.2.3.2.1", + "used_instance": "\\.1\\.3\\.6\\.1\\.4\\.1\\.7146\\.1\\.2\\.3\\.2\\.1\\.\\d+\\.(\\d+(\\.\\d+)+)", + "entries": [ + { + "name": "poolName", + "oid": ".1.3.6.1.4.1.7146.1.2.3.2.1.1" + }, + { + "name": "poolState", + "oid": ".1.3.6.1.4.1.7146.1.2.3.2.1.14", + "map": "poolState" + }, + { + "name": "poolTotalConn", + "oid": ".1.3.6.1.4.1.7146.1.2.3.2.1.10", + "sampling": 1 + }, + { + "name": "poolCurrentConn", + "oid": ".1.3.6.1.4.1.7146.1.2.3.2.1.48" + } + ] + } + ] + }, + "selection_loop": [ + { + "name": "Pool ZXTM", + "source": "%(snmp.tables.poolEntry)", + "expand_table": { + "poolEntry": "%(snmp.tables.poolEntry.[%(poolEntry.instance)])" + }, + "critical": "%(poolEntry.poolState) =~ /%(constants.criticalState)/ or (defined(%(constants.criticalConnSecond)) and %(poolEntry.poolTotalConnPerSeconds) >= %(constants.criticalConnSecond)) or (defined(%(constants.criticalCurrConn)) and %(poolEntry.poolCurrentConn) >= %(constants.criticalCurrConn))", + "perfdatas": [ + { + "nlabel": "connS", + "instances": ["%(poolEntry.poolName)"], + "value": "%(poolEntry.poolTotalConnPerSeconds)", + "critical": "%(constants.criticalConnSecond)", + "unit": "conn/s", + "min": 0 + }, + { + "nlabel": "conn", + "instances": ["%(poolEntry.poolName)"], + "value": "%(poolEntry.poolCurrentConn)", + "critical": "%(constants.criticalConn)", + "unit": "conn", + "min": 0 + } + ], + "formatting": { + "printf_msg": "Device '%s' state is '%s', current connetions are '%d', with conn/s '%.2f'", + "printf_var": [ + "%(poolEntry.poolName)", + "%(poolEntry.poolState)", + "%(poolEntry.poolCurrentConn)", + "%(poolEntry.poolTotalConnPerSeconds)" + ], + "display_ok": true + } + } + ] +} diff --git a/src/contrib/collection/snmp/zxtm-virtualserver.json b/src/contrib/collection/snmp/zxtm-virtualserver.json new file mode 100644 index 000000000..fdf24fec2 --- /dev/null +++ b/src/contrib/collection/snmp/zxtm-virtualserver.json @@ -0,0 +1,64 @@ +{ + "constants": { + "criticalCurrConn": null + }, + "mapping": { + }, + "snmp": { + "tables": [ + { + "name": "virtualserverEntry", + "oid": ".1.3.6.1.4.1.7146.1.2.2.2.1", + "used_instance": "\\.1\\.3\\.6\\.1\\.4\\.1\\.7146\\.1\\.2\\.2\\.2\\.1\\.\\d+\\.(\\d+(\\.\\d+)+)", + "entries": [ + { + "name": "virtualserverName", + "oid": ".1.3.6.1.4.1.7146.1.2.2.2.1.1" + }, + { + "name": "virtualserverCurrentConn", + "oid": ".1.3.6.1.4.1.7146.1.2.2.2.1.9" + }, + { + "name": "virtualServerMaxConnections", + "oid": ".1.3.6.1.4.1.7146.1.2.2.2.1.10" + }, + { + "name": "virtualserverTotalHTTPRequests", + "oid": ".1.3.6.1.4.1.7146.1.2.2.2.1.43" + } + ] + } + ] + }, + "selection_loop": [ + { + "name": "Virtual Server ZXTM", + "source": "%(snmp.tables.virtualserverEntry)", + "expand_table": { + "virtualserverEntry": "%(snmp.tables.virtualserverEntry.[%(virtualserverEntry.instance)])" + }, + "critical": "defined(%(constants.criticalCurrConn)) and %(virtualserverEntry.virtualserverCurrentConn) >= %(constants.criticalCurrConn)", + "perfdatas": [ + { + "nlabel": "conn", + "instances": ["%(virtualserverEntry.virtualserverName)"], + "value": "%(virtualserverEntry.virtualserverCurrentConn)", + "critical": "%(constants.criticalConn)", + "unit": "conn", + "min": 0 + } + ], + "formatting": { + "printf_msg": "Device '%s' current connections are '%d', max connections are '%d', total HTTP requests are '%d'", + "printf_var": [ + "%(virtualserverEntry.virtualserverName)", + "%(virtualserverEntry.virtualserverCurrentConn)", + "%(virtualserverEntry.virtualServerMaxConnections)", + "%(virtualserverEntry.virtualserverTotalHTTPRequests)" + ], + "display_ok": true + } + } + ] +} diff --git a/src/contrib/tutorial/apps/myawesomeapp/api/plugin.pm b/src/contrib/tutorial/apps/myawesomeapp/api/plugin.pm index e6c3c3035..e9ebafc77 100644 --- a/src/contrib/tutorial/apps/myawesomeapp/api/plugin.pm +++ b/src/contrib/tutorial/apps/myawesomeapp/api/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/contrib/tutorial/network/mysnmpplugin/snmp/mode/cpu.pm b/src/contrib/tutorial/network/mysnmpplugin/snmp/mode/cpu.pm new file mode 100644 index 000000000..5a0e5be5b --- /dev/null +++ b/src/contrib/tutorial/network/mysnmpplugin/snmp/mode/cpu.pm @@ -0,0 +1,184 @@ +# +# Copyright 2023 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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. +# + +# Path to the plugin +package network::mysnmpplugin::snmp::mode::cpu; + +# Consider this as mandatory when writing a new mode. +use base qw(centreon::plugins::templates::counter); + +# Needed libraries +use strict; +use warnings; + +sub prefix_cpu_output { + my ($self, %options) = @_; + + return "CPU '" . $options{instance_value}->{name} . "' usage: "; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + # app_metrics groups connections and errors and each will receive value for both instances (my-awesome-frontend and my-awesome-db) + + #A compléter + + # the type => 1 explicits that + # You can define a callback (cb) function to manage the output prefix. This function is called + # each time a value is passed to the counter and can be shared across multiple counters. + { name => 'cpu', type => 1, cb_prefix_output => 'prefix_cpu_output', message_multiple => 'All CPUs are ok' } + ]; + + $self->{maps_counters}->{cpu} = [ + { label => 'cpu-usage-prct', nlabel => 'cpu.usage.percentage', set => { + key_values => [ { name => 'cpu_usage' }, { name => 'name' } ], + output_template => '%.2f %%', + perfdatas => [ + # we add the label_extra_instance option to have one perfdata per instance + { label => 'cpu', template => '%.2f', min => 0, max => 100, unit => '%', label_extra_instance => 1, instance_use => 'name' } + ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + # All options/properties of this mode, always add the force_new_perfdata => 1 to enable new metric/performance data naming. + # It also where you can specify that the plugin uses a cache file for example + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + # Declare options + $options{options}->add_options(arguments => { + # One the left it's the option name that will be used in the command line. The ':s' at the end is to + # define that this options takes a value. + # On the right, it's the code name for this option, optionnaly you can define a default value so the user + # doesn't have to set it. + # option name => variable name + 'filter-id:s' => { name => 'filter_id' } + }); + + return $self; +} + +sub manage_selection { + my ($self, %options) = @_; + ################################################### + ##### Load SNMP informations to a result hash ##### + ################################################### + + # Select relevant oids for CPU monitoring + my $mapping = { + # hashKey => { oid => 'oid_number_path'} + hrProcessorID => { oid => '.1.3.6.1.2.1.25.3.3.1.1' }, + hrProcessorLoad => { oid => '.1.3.6.1.2.1.25.3.3.1.2' } + # + }; + + # Point at the begining of the SNMP table + # Oid to point the table ahead all the oids given in mapping + my $oid_hrProcessorTable = '.1.3.6.1.2.1.25.3.3.1'; + + # Use SNMP Centreon plugins tools to push SNMP result in hash to handle with. + # $cpu_result is a hash table where keys are oids + my $cpu_result = $options{snmp}->get_table( + oid => $oid_hrProcessorTable, + nothing_quit => 1 + ); + + ################################################### + ##### SNMP Result table to browse ##### + ################################################### + foreach my $oid (keys %{$cpu_result}) { + next if ($oid !~ /^$mapping->{hrProcessorID}->{oid}\.(.*)$/); + + # Catch table instance if exist : + # Instance is a number availible for a same oid refering to different target + my $instance = $1; + # Uncomment the lines below to see what instance looks like : + + # use Data::Dumper; + # print Dumper($oid); + # print Dumper($instance); + + # Data Dumper returns : with oid = hrProcessorID.instance + # $VAR1 = '.1.3.6.1.2.1.25.3.3.1.1.769'; + # $VAR1 = '769'; + # $VAR1 = '.1.3.6.1.2.1.25.3.3.1.1.768'; + # $VAR1 = '768'; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $cpu_result, instance => $instance); + + # Here is the way to handle with basic name/id filter. + # This filter is compare with hrProcessorID and in case of no match the oid is skipped + if (defined($self->{option_results}->{filter_id}) && $self->{option_results}->{filter_id} ne '' && + $result->{hrProcessorID} !~ /$self->{option_results}->{filter_id}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{hrProcessorID} . "': no matching filter.", debug => 1); + next; + } + + # If the oid is not skipped above, here is convert the target values in result hash. + # Here is where the counter magic happens. + # $self->{cpu} is your counter definition (see $self->{maps_counters}->{}) + # Here, we map the obtained string $result->{hrProcessorLoad} with the cpu_usage key_value in the counter. + $self->{cpu}->{$instance} = { + name => $result->{hrProcessorID}, + cpu_usage => $result->{hrProcessorLoad} + }; + } + + # IMPORTANT ! + # If you use a way to filter the values set in result hash, + # check if at the end of parsing the result table isn't empty. + # If it's the case, add a message for user to explain the filter doesn't match. + if (scalar(keys %{$self->{cpu}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No processor ID matching with filter found."); + $self->{output}->option_exit(); + } +} + +1; + +__END__ + +=head1 MODE + +Check system CPUs. + +=over 8 + +=item B<--filter-id> + +Filter on one ID name. + +=item B<--warning> + +Warning threshold for CPU. + +=item B<--critical> + +Critical threshold for CPU. + +=back + +=cut \ No newline at end of file diff --git a/src/contrib/tutorial/network/mysnmpplugin/snmp/plugin.pm b/src/contrib/tutorial/network/mysnmpplugin/snmp/plugin.pm new file mode 100644 index 000000000..099fde6d8 --- /dev/null +++ b/src/contrib/tutorial/network/mysnmpplugin/snmp/plugin.pm @@ -0,0 +1,47 @@ +# +# Copyright 2023 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 network::mysnmpplugin::snmp::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_snmp); + +sub new { + my ( $class, %options ) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{modes} = { + 'cpu' => 'network::mysnmpplugin::snmp::mode::cpu' + }; + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check my-plugin-snmp CPU through SNMP. + +=cut \ No newline at end of file diff --git a/src/database/cassandra/jmx/mode/cachesusage.pm b/src/database/cassandra/jmx/mode/cachesusage.pm index 23710ffa0..3ec66a8fc 100644 --- a/src/database/cassandra/jmx/mode/cachesusage.pm +++ b/src/database/cassandra/jmx/mode/cachesusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/cassandra/jmx/mode/clientrequestsusage.pm b/src/database/cassandra/jmx/mode/clientrequestsusage.pm index 71e932df8..826689509 100644 --- a/src/database/cassandra/jmx/mode/clientrequestsusage.pm +++ b/src/database/cassandra/jmx/mode/clientrequestsusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/cassandra/jmx/mode/threadpoolsusage.pm b/src/database/cassandra/jmx/mode/threadpoolsusage.pm index 845a1dbb5..c806358dd 100644 --- a/src/database/cassandra/jmx/mode/threadpoolsusage.pm +++ b/src/database/cassandra/jmx/mode/threadpoolsusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/cassandra/jmx/plugin.pm b/src/database/cassandra/jmx/plugin.pm index 53b1bfd1e..704aaf177 100644 --- a/src/database/cassandra/jmx/plugin.pm +++ b/src/database/cassandra/jmx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/couchdb/restapi/custom/api.pm b/src/database/couchdb/restapi/custom/api.pm index 1be87d5f5..78c52cd6f 100644 --- a/src/database/couchdb/restapi/custom/api.pm +++ b/src/database/couchdb/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/couchdb/restapi/mode/server.pm b/src/database/couchdb/restapi/mode/server.pm index 7b2039af8..4b0591a16 100644 --- a/src/database/couchdb/restapi/mode/server.pm +++ b/src/database/couchdb/restapi/mode/server.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/couchdb/restapi/plugin.pm b/src/database/couchdb/restapi/plugin.pm index b47043c76..7528471be 100644 --- a/src/database/couchdb/restapi/plugin.pm +++ b/src/database/couchdb/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/dbi.pm b/src/database/db2/dbi.pm index e0a323d2c..8ccaa46de 100644 --- a/src/database/db2/dbi.pm +++ b/src/database/db2/dbi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/mode/connectedusers.pm b/src/database/db2/mode/connectedusers.pm index 1157e5bf8..6da2ce34d 100644 --- a/src/database/db2/mode/connectedusers.pm +++ b/src/database/db2/mode/connectedusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/mode/databaselogs.pm b/src/database/db2/mode/databaselogs.pm index 4fa81ace5..2ef702b10 100644 --- a/src/database/db2/mode/databaselogs.pm +++ b/src/database/db2/mode/databaselogs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/mode/databaseusage.pm b/src/database/db2/mode/databaseusage.pm index 041a272f2..d7bba01db 100644 --- a/src/database/db2/mode/databaseusage.pm +++ b/src/database/db2/mode/databaseusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/mode/hadr.pm b/src/database/db2/mode/hadr.pm index d5dee5dca..0878f9a9e 100644 --- a/src/database/db2/mode/hadr.pm +++ b/src/database/db2/mode/hadr.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/mode/listtablespaces.pm b/src/database/db2/mode/listtablespaces.pm index 2bc2f0074..650ffe72b 100644 --- a/src/database/db2/mode/listtablespaces.pm +++ b/src/database/db2/mode/listtablespaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/mode/tablespaces.pm b/src/database/db2/mode/tablespaces.pm index 69013c0fb..c61c0904e 100644 --- a/src/database/db2/mode/tablespaces.pm +++ b/src/database/db2/mode/tablespaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/db2/plugin.pm b/src/database/db2/plugin.pm index f721d179c..fd3cbd016 100644 --- a/src/database/db2/plugin.pm +++ b/src/database/db2/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/custom/api.pm b/src/database/elasticsearch/restapi/custom/api.pm index 90d0abb4c..2f1722468 100644 --- a/src/database/elasticsearch/restapi/custom/api.pm +++ b/src/database/elasticsearch/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/mode/clusterstatistics.pm b/src/database/elasticsearch/restapi/mode/clusterstatistics.pm index 9d53f02a2..d4486ce2b 100644 --- a/src/database/elasticsearch/restapi/mode/clusterstatistics.pm +++ b/src/database/elasticsearch/restapi/mode/clusterstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/mode/indicestatistics.pm b/src/database/elasticsearch/restapi/mode/indicestatistics.pm index 236ab3b8e..8e0409cb7 100644 --- a/src/database/elasticsearch/restapi/mode/indicestatistics.pm +++ b/src/database/elasticsearch/restapi/mode/indicestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/mode/license.pm b/src/database/elasticsearch/restapi/mode/license.pm index 3be29e481..c0ded3a88 100644 --- a/src/database/elasticsearch/restapi/mode/license.pm +++ b/src/database/elasticsearch/restapi/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/mode/listindices.pm b/src/database/elasticsearch/restapi/mode/listindices.pm index 2f503c855..685b96221 100644 --- a/src/database/elasticsearch/restapi/mode/listindices.pm +++ b/src/database/elasticsearch/restapi/mode/listindices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/mode/listnodes.pm b/src/database/elasticsearch/restapi/mode/listnodes.pm index ff3d8957f..15c3aee58 100644 --- a/src/database/elasticsearch/restapi/mode/listnodes.pm +++ b/src/database/elasticsearch/restapi/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/mode/nodestatistics.pm b/src/database/elasticsearch/restapi/mode/nodestatistics.pm index d7e2bc61d..79e0561f9 100644 --- a/src/database/elasticsearch/restapi/mode/nodestatistics.pm +++ b/src/database/elasticsearch/restapi/mode/nodestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/elasticsearch/restapi/plugin.pm b/src/database/elasticsearch/restapi/plugin.pm index 6e0665aad..ca25cbf65 100644 --- a/src/database/elasticsearch/restapi/plugin.pm +++ b/src/database/elasticsearch/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/firebird/mode/longqueries.pm b/src/database/firebird/mode/longqueries.pm index ba34c1652..a1d0a37cb 100644 --- a/src/database/firebird/mode/longqueries.pm +++ b/src/database/firebird/mode/longqueries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/firebird/mode/memory.pm b/src/database/firebird/mode/memory.pm index 5805a6a6a..5f5395c89 100644 --- a/src/database/firebird/mode/memory.pm +++ b/src/database/firebird/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/firebird/mode/pages.pm b/src/database/firebird/mode/pages.pm index 83ed61c4e..b98e450a4 100644 --- a/src/database/firebird/mode/pages.pm +++ b/src/database/firebird/mode/pages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/firebird/mode/queries.pm b/src/database/firebird/mode/queries.pm index 52d3f058d..f10ff3326 100644 --- a/src/database/firebird/mode/queries.pm +++ b/src/database/firebird/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/firebird/mode/users.pm b/src/database/firebird/mode/users.pm index 17f8840fa..ac840555d 100644 --- a/src/database/firebird/mode/users.pm +++ b/src/database/firebird/mode/users.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/firebird/plugin.pm b/src/database/firebird/plugin.pm index def308bce..236f42c94 100644 --- a/src/database/firebird/plugin.pm +++ b/src/database/firebird/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/custom/api.pm b/src/database/influxdb/custom/api.pm index 78fbeac2f..4de5588ac 100644 --- a/src/database/influxdb/custom/api.pm +++ b/src/database/influxdb/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/mode/connectiontime.pm b/src/database/influxdb/mode/connectiontime.pm index 356b4c988..ed4f1e8c8 100644 --- a/src/database/influxdb/mode/connectiontime.pm +++ b/src/database/influxdb/mode/connectiontime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/mode/databasestatistics.pm b/src/database/influxdb/mode/databasestatistics.pm index 605210ebe..884c3e792 100644 --- a/src/database/influxdb/mode/databasestatistics.pm +++ b/src/database/influxdb/mode/databasestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/mode/httpserverstatistics.pm b/src/database/influxdb/mode/httpserverstatistics.pm index 31df3012f..801a6da03 100644 --- a/src/database/influxdb/mode/httpserverstatistics.pm +++ b/src/database/influxdb/mode/httpserverstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/mode/listdatabases.pm b/src/database/influxdb/mode/listdatabases.pm index 67c196dbd..e98631add 100644 --- a/src/database/influxdb/mode/listdatabases.pm +++ b/src/database/influxdb/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/mode/query.pm b/src/database/influxdb/mode/query.pm index 0150e32c4..18b6f4b83 100644 --- a/src/database/influxdb/mode/query.pm +++ b/src/database/influxdb/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/mode/writestatistics.pm b/src/database/influxdb/mode/writestatistics.pm index f5444c13d..63b94baab 100644 --- a/src/database/influxdb/mode/writestatistics.pm +++ b/src/database/influxdb/mode/writestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/influxdb/plugin.pm b/src/database/influxdb/plugin.pm index 9b605dfcf..79b41d147 100644 --- a/src/database/influxdb/plugin.pm +++ b/src/database/influxdb/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/archivelevel0.pm b/src/database/informix/snmp/mode/archivelevel0.pm index 1127b0cab..cfc32be16 100644 --- a/src/database/informix/snmp/mode/archivelevel0.pm +++ b/src/database/informix/snmp/mode/archivelevel0.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/chunkstatus.pm b/src/database/informix/snmp/mode/chunkstatus.pm index beced37f3..62aa9bfde 100644 --- a/src/database/informix/snmp/mode/chunkstatus.pm +++ b/src/database/informix/snmp/mode/chunkstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/dbspaceusage.pm b/src/database/informix/snmp/mode/dbspaceusage.pm index 6a124e97a..f0dd386e3 100644 --- a/src/database/informix/snmp/mode/dbspaceusage.pm +++ b/src/database/informix/snmp/mode/dbspaceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/globalcache.pm b/src/database/informix/snmp/mode/globalcache.pm index 195544e25..8a2cb0365 100644 --- a/src/database/informix/snmp/mode/globalcache.pm +++ b/src/database/informix/snmp/mode/globalcache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/listdbspaces.pm b/src/database/informix/snmp/mode/listdbspaces.pm index d8718aadf..4c52bc946 100644 --- a/src/database/informix/snmp/mode/listdbspaces.pm +++ b/src/database/informix/snmp/mode/listdbspaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/listinstances.pm b/src/database/informix/snmp/mode/listinstances.pm index b73127796..b5565ed35 100644 --- a/src/database/informix/snmp/mode/listinstances.pm +++ b/src/database/informix/snmp/mode/listinstances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/lockstats.pm b/src/database/informix/snmp/mode/lockstats.pm index a29a5a67c..0b260b810 100644 --- a/src/database/informix/snmp/mode/lockstats.pm +++ b/src/database/informix/snmp/mode/lockstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/logfileusage.pm b/src/database/informix/snmp/mode/logfileusage.pm index 54fccd6c3..a4c3973f6 100644 --- a/src/database/informix/snmp/mode/logfileusage.pm +++ b/src/database/informix/snmp/mode/logfileusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/mode/sessions.pm b/src/database/informix/snmp/mode/sessions.pm index 417ca162b..332664968 100644 --- a/src/database/informix/snmp/mode/sessions.pm +++ b/src/database/informix/snmp/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/snmp/plugin.pm b/src/database/informix/snmp/plugin.pm index 1e47a1d81..7d7b2b8f7 100644 --- a/src/database/informix/snmp/plugin.pm +++ b/src/database/informix/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/archivelevel0.pm b/src/database/informix/sql/mode/archivelevel0.pm index 31cfc2f0e..011d47703 100644 --- a/src/database/informix/sql/mode/archivelevel0.pm +++ b/src/database/informix/sql/mode/archivelevel0.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/checkpoints.pm b/src/database/informix/sql/mode/checkpoints.pm index ff02a5376..4047b015e 100644 --- a/src/database/informix/sql/mode/checkpoints.pm +++ b/src/database/informix/sql/mode/checkpoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/chunkstates.pm b/src/database/informix/sql/mode/chunkstates.pm index 4c299f909..d8d00026e 100644 --- a/src/database/informix/sql/mode/chunkstates.pm +++ b/src/database/informix/sql/mode/chunkstates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/dbspacesusage.pm b/src/database/informix/sql/mode/dbspacesusage.pm index be28a4444..b12286e27 100644 --- a/src/database/informix/sql/mode/dbspacesusage.pm +++ b/src/database/informix/sql/mode/dbspacesusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/globalcache.pm b/src/database/informix/sql/mode/globalcache.pm index c10bdef23..ab01524fe 100644 --- a/src/database/informix/sql/mode/globalcache.pm +++ b/src/database/informix/sql/mode/globalcache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/listdatabases.pm b/src/database/informix/sql/mode/listdatabases.pm index 850bb8f7f..d799cec07 100644 --- a/src/database/informix/sql/mode/listdatabases.pm +++ b/src/database/informix/sql/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/listdbspaces.pm b/src/database/informix/sql/mode/listdbspaces.pm index 537c216bb..e3cddba7a 100644 --- a/src/database/informix/sql/mode/listdbspaces.pm +++ b/src/database/informix/sql/mode/listdbspaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/lockoverflow.pm b/src/database/informix/sql/mode/lockoverflow.pm index f9dc313d3..a42d0c206 100644 --- a/src/database/informix/sql/mode/lockoverflow.pm +++ b/src/database/informix/sql/mode/lockoverflow.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/logfilesusage.pm b/src/database/informix/sql/mode/logfilesusage.pm index 6d14d372b..025e7ee66 100644 --- a/src/database/informix/sql/mode/logfilesusage.pm +++ b/src/database/informix/sql/mode/logfilesusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/longtxs.pm b/src/database/informix/sql/mode/longtxs.pm index 77ea5d3c6..ff5b63f68 100644 --- a/src/database/informix/sql/mode/longtxs.pm +++ b/src/database/informix/sql/mode/longtxs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/sessions.pm b/src/database/informix/sql/mode/sessions.pm index 1637adb6b..41cd92115 100644 --- a/src/database/informix/sql/mode/sessions.pm +++ b/src/database/informix/sql/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/mode/tablelocks.pm b/src/database/informix/sql/mode/tablelocks.pm index d9c5f69b7..ef26cfc57 100644 --- a/src/database/informix/sql/mode/tablelocks.pm +++ b/src/database/informix/sql/mode/tablelocks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/informix/sql/plugin.pm b/src/database/informix/sql/plugin.pm index b061f451c..f69e10fff 100644 --- a/src/database/informix/sql/plugin.pm +++ b/src/database/informix/sql/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/custom/driver.pm b/src/database/mongodb/custom/driver.pm index bd27c40ae..8cd65853f 100644 --- a/src/database/mongodb/custom/driver.pm +++ b/src/database/mongodb/custom/driver.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/collectionstatistics.pm b/src/database/mongodb/mode/collectionstatistics.pm index b6af74b07..42d9b2638 100644 --- a/src/database/mongodb/mode/collectionstatistics.pm +++ b/src/database/mongodb/mode/collectionstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/connections.pm b/src/database/mongodb/mode/connections.pm index a828737e9..37b8b594f 100644 --- a/src/database/mongodb/mode/connections.pm +++ b/src/database/mongodb/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/connectiontime.pm b/src/database/mongodb/mode/connectiontime.pm index a7b5517a1..102e7dd9b 100644 --- a/src/database/mongodb/mode/connectiontime.pm +++ b/src/database/mongodb/mode/connectiontime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/databasestatistics.pm b/src/database/mongodb/mode/databasestatistics.pm index 07198d1d8..13e008ffc 100644 --- a/src/database/mongodb/mode/databasestatistics.pm +++ b/src/database/mongodb/mode/databasestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/listdatabases.pm b/src/database/mongodb/mode/listdatabases.pm index 71a4460cc..d22e2f571 100644 --- a/src/database/mongodb/mode/listdatabases.pm +++ b/src/database/mongodb/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/queries.pm b/src/database/mongodb/mode/queries.pm index 695310eba..b85eee08c 100644 --- a/src/database/mongodb/mode/queries.pm +++ b/src/database/mongodb/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/mode/replicationstatus.pm b/src/database/mongodb/mode/replicationstatus.pm index dacf50ffd..f48d9dc55 100644 --- a/src/database/mongodb/mode/replicationstatus.pm +++ b/src/database/mongodb/mode/replicationstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mongodb/plugin.pm b/src/database/mongodb/plugin.pm index 832b3e7a2..d69ef7b18 100644 --- a/src/database/mongodb/plugin.pm +++ b/src/database/mongodb/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/dbi.pm b/src/database/mssql/dbi.pm index 3b01f389c..43f2002bd 100644 --- a/src/database/mssql/dbi.pm +++ b/src/database/mssql/dbi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/backupage.pm b/src/database/mssql/mode/backupage.pm index f9912aa0a..ac30daa2d 100644 --- a/src/database/mssql/mode/backupage.pm +++ b/src/database/mssql/mode/backupage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/blockedprocesses.pm b/src/database/mssql/mode/blockedprocesses.pm index 8ba0e1965..c48d84250 100644 --- a/src/database/mssql/mode/blockedprocesses.pm +++ b/src/database/mssql/mode/blockedprocesses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/cachehitratio.pm b/src/database/mssql/mode/cachehitratio.pm index bdad8f4bd..7f1b36d7a 100644 --- a/src/database/mssql/mode/cachehitratio.pm +++ b/src/database/mssql/mode/cachehitratio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/connectedusers.pm b/src/database/mssql/mode/connectedusers.pm index 6166dace5..1af27d977 100644 --- a/src/database/mssql/mode/connectedusers.pm +++ b/src/database/mssql/mode/connectedusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/databasessize.pm b/src/database/mssql/mode/databasessize.pm index 53496e9ee..449f61299 100644 --- a/src/database/mssql/mode/databasessize.pm +++ b/src/database/mssql/mode/databasessize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/deadlocks.pm b/src/database/mssql/mode/deadlocks.pm index 236d47433..9efc3140d 100644 --- a/src/database/mssql/mode/deadlocks.pm +++ b/src/database/mssql/mode/deadlocks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/failedjobs.pm b/src/database/mssql/mode/failedjobs.pm index 3ddb32a78..9ef623b96 100644 --- a/src/database/mssql/mode/failedjobs.pm +++ b/src/database/mssql/mode/failedjobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/listdatabases.pm b/src/database/mssql/mode/listdatabases.pm index 4645750ae..22d96e56b 100644 --- a/src/database/mssql/mode/listdatabases.pm +++ b/src/database/mssql/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/lockswaits.pm b/src/database/mssql/mode/lockswaits.pm index 467add54d..76af17dde 100644 --- a/src/database/mssql/mode/lockswaits.pm +++ b/src/database/mssql/mode/lockswaits.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/pagelifeexpectancy.pm b/src/database/mssql/mode/pagelifeexpectancy.pm index ff03d188e..96db3fce5 100644 --- a/src/database/mssql/mode/pagelifeexpectancy.pm +++ b/src/database/mssql/mode/pagelifeexpectancy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/resources/types.pm b/src/database/mssql/mode/resources/types.pm index 8c6d6a57a..fac6dd58d 100644 --- a/src/database/mssql/mode/resources/types.pm +++ b/src/database/mssql/mode/resources/types.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/tables.pm b/src/database/mssql/mode/tables.pm index f351ad08b..fd92f5b0d 100644 --- a/src/database/mssql/mode/tables.pm +++ b/src/database/mssql/mode/tables.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/mode/transactions.pm b/src/database/mssql/mode/transactions.pm index 081b8ba72..9d8c72dc8 100644 --- a/src/database/mssql/mode/transactions.pm +++ b/src/database/mssql/mode/transactions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mssql/plugin.pm b/src/database/mssql/plugin.pm index bce550132..459e84b03 100644 --- a/src/database/mssql/plugin.pm +++ b/src/database/mssql/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/dbi.pm b/src/database/mysql/dbi.pm index f24d3b5d1..2d5207bd9 100644 --- a/src/database/mysql/dbi.pm +++ b/src/database/mysql/dbi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/backup.pm b/src/database/mysql/mode/backup.pm index 96725800d..96107139f 100644 --- a/src/database/mysql/mode/backup.pm +++ b/src/database/mysql/mode/backup.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/databasessize.pm b/src/database/mysql/mode/databasessize.pm index 17ab2255e..fdb849a01 100644 --- a/src/database/mysql/mode/databasessize.pm +++ b/src/database/mysql/mode/databasessize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/innodbbufferpoolhitrate.pm b/src/database/mysql/mode/innodbbufferpoolhitrate.pm index df53baead..4b60bf58d 100644 --- a/src/database/mysql/mode/innodbbufferpoolhitrate.pm +++ b/src/database/mysql/mode/innodbbufferpoolhitrate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/longqueries.pm b/src/database/mysql/mode/longqueries.pm index 1b72b8796..f27fd3ac0 100644 --- a/src/database/mysql/mode/longqueries.pm +++ b/src/database/mysql/mode/longqueries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/myisamkeycachehitrate.pm b/src/database/mysql/mode/myisamkeycachehitrate.pm index c9d47ee48..1cf657fa4 100644 --- a/src/database/mysql/mode/myisamkeycachehitrate.pm +++ b/src/database/mysql/mode/myisamkeycachehitrate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/openfiles.pm b/src/database/mysql/mode/openfiles.pm index 9ffb2c31d..d4ea41df1 100644 --- a/src/database/mysql/mode/openfiles.pm +++ b/src/database/mysql/mode/openfiles.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/opentables.pm b/src/database/mysql/mode/opentables.pm index 44fccee53..85964773d 100644 --- a/src/database/mysql/mode/opentables.pm +++ b/src/database/mysql/mode/opentables.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/passwordexpiration.pm b/src/database/mysql/mode/passwordexpiration.pm index 16e371d94..cb5867404 100644 --- a/src/database/mysql/mode/passwordexpiration.pm +++ b/src/database/mysql/mode/passwordexpiration.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/qcachehitrate.pm b/src/database/mysql/mode/qcachehitrate.pm index f117673fd..df662b0fd 100644 --- a/src/database/mysql/mode/qcachehitrate.pm +++ b/src/database/mysql/mode/qcachehitrate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/queries.pm b/src/database/mysql/mode/queries.pm index 5cbe1d837..f7cfecf1b 100644 --- a/src/database/mysql/mode/queries.pm +++ b/src/database/mysql/mode/queries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/replication.pm b/src/database/mysql/mode/replication.pm index fd6da7296..8891450f6 100644 --- a/src/database/mysql/mode/replication.pm +++ b/src/database/mysql/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/slowqueries.pm b/src/database/mysql/mode/slowqueries.pm index 4f982a66e..ecef180ef 100644 --- a/src/database/mysql/mode/slowqueries.pm +++ b/src/database/mysql/mode/slowqueries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/threadsconnected.pm b/src/database/mysql/mode/threadsconnected.pm index 9b89837f6..8b3869b15 100644 --- a/src/database/mysql/mode/threadsconnected.pm +++ b/src/database/mysql/mode/threadsconnected.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mode/uptime.pm b/src/database/mysql/mode/uptime.pm index 7f7296015..e8b7bb991 100644 --- a/src/database/mysql/mode/uptime.pm +++ b/src/database/mysql/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/mysqlcmd.pm b/src/database/mysql/mysqlcmd.pm index 6f3266fc3..da8ba77f4 100644 --- a/src/database/mysql/mysqlcmd.pm +++ b/src/database/mysql/mysqlcmd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/mysql/plugin.pm b/src/database/mysql/plugin.pm index 14258eda4..c782d621b 100644 --- a/src/database/mysql/plugin.pm +++ b/src/database/mysql/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/dbi.pm b/src/database/oracle/dbi.pm index 054ba1d04..8202f5eb6 100644 --- a/src/database/oracle/dbi.pm +++ b/src/database/oracle/dbi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/asmdiskgroupusage.pm b/src/database/oracle/mode/asmdiskgroupusage.pm index 68cc0d65a..7ab96fe5e 100644 --- a/src/database/oracle/mode/asmdiskgroupusage.pm +++ b/src/database/oracle/mode/asmdiskgroupusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/connectedusers.pm b/src/database/oracle/mode/connectedusers.pm index cb6f9f896..1afbceef6 100644 --- a/src/database/oracle/mode/connectedusers.pm +++ b/src/database/oracle/mode/connectedusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/corruptedblocks.pm b/src/database/oracle/mode/corruptedblocks.pm index f6b9146e0..9b4b7f449 100644 --- a/src/database/oracle/mode/corruptedblocks.pm +++ b/src/database/oracle/mode/corruptedblocks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/datacachehitratio.pm b/src/database/oracle/mode/datacachehitratio.pm index 0c469f79d..f674dec0a 100644 --- a/src/database/oracle/mode/datacachehitratio.pm +++ b/src/database/oracle/mode/datacachehitratio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/datafilesstatus.pm b/src/database/oracle/mode/datafilesstatus.pm index bac6a2533..33cf0b1eb 100644 --- a/src/database/oracle/mode/datafilesstatus.pm +++ b/src/database/oracle/mode/datafilesstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/dataguard.pm b/src/database/oracle/mode/dataguard.pm index 7dab07482..2b24b4275 100644 --- a/src/database/oracle/mode/dataguard.pm +++ b/src/database/oracle/mode/dataguard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/dictionarycacheusage.pm b/src/database/oracle/mode/dictionarycacheusage.pm index c7ce2a0fd..54f339ff0 100644 --- a/src/database/oracle/mode/dictionarycacheusage.pm +++ b/src/database/oracle/mode/dictionarycacheusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/eventwaitsusage.pm b/src/database/oracle/mode/eventwaitsusage.pm index 2c619a6f1..5c26c2476 100644 --- a/src/database/oracle/mode/eventwaitsusage.pm +++ b/src/database/oracle/mode/eventwaitsusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/frausage.pm b/src/database/oracle/mode/frausage.pm index 931326eae..b4e6ba253 100644 --- a/src/database/oracle/mode/frausage.pm +++ b/src/database/oracle/mode/frausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/invalidobject.pm b/src/database/oracle/mode/invalidobject.pm index 5ea908b3b..5eee58c05 100644 --- a/src/database/oracle/mode/invalidobject.pm +++ b/src/database/oracle/mode/invalidobject.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/librarycacheusage.pm b/src/database/oracle/mode/librarycacheusage.pm index 7b60b09fe..ca7fa06e1 100644 --- a/src/database/oracle/mode/librarycacheusage.pm +++ b/src/database/oracle/mode/librarycacheusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/listasmdiskgroups.pm b/src/database/oracle/mode/listasmdiskgroups.pm index e0b359afb..37483e242 100644 --- a/src/database/oracle/mode/listasmdiskgroups.pm +++ b/src/database/oracle/mode/listasmdiskgroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/listtablespaces.pm b/src/database/oracle/mode/listtablespaces.pm index 09b1ba26a..a07233cc8 100644 --- a/src/database/oracle/mode/listtablespaces.pm +++ b/src/database/oracle/mode/listtablespaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/longqueries.pm b/src/database/oracle/mode/longqueries.pm index a38d21c71..cf2aef060 100644 --- a/src/database/oracle/mode/longqueries.pm +++ b/src/database/oracle/mode/longqueries.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/passwordexpiration.pm b/src/database/oracle/mode/passwordexpiration.pm index a538bb0b7..4fdaa684a 100644 --- a/src/database/oracle/mode/passwordexpiration.pm +++ b/src/database/oracle/mode/passwordexpiration.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/processusage.pm b/src/database/oracle/mode/processusage.pm index 98e36d81c..4d363e967 100644 --- a/src/database/oracle/mode/processusage.pm +++ b/src/database/oracle/mode/processusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/redologusage.pm b/src/database/oracle/mode/redologusage.pm index dc6c3c658..cc62cebb4 100644 --- a/src/database/oracle/mode/redologusage.pm +++ b/src/database/oracle/mode/redologusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/rmanbackupage.pm b/src/database/oracle/mode/rmanbackupage.pm index de9357dd8..b659855d4 100644 --- a/src/database/oracle/mode/rmanbackupage.pm +++ b/src/database/oracle/mode/rmanbackupage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/rmanbackupproblems.pm b/src/database/oracle/mode/rmanbackupproblems.pm index cf6d6b8f1..fc575728f 100644 --- a/src/database/oracle/mode/rmanbackupproblems.pm +++ b/src/database/oracle/mode/rmanbackupproblems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/rmanonlinebackupage.pm b/src/database/oracle/mode/rmanonlinebackupage.pm index 17d9b00a6..028c743ad 100644 --- a/src/database/oracle/mode/rmanonlinebackupage.pm +++ b/src/database/oracle/mode/rmanonlinebackupage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/rollbacksegmentusage.pm b/src/database/oracle/mode/rollbacksegmentusage.pm index 09072bafb..ac9bcfc74 100644 --- a/src/database/oracle/mode/rollbacksegmentusage.pm +++ b/src/database/oracle/mode/rollbacksegmentusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/sessionusage.pm b/src/database/oracle/mode/sessionusage.pm index 3f58ad56d..d47519d5f 100644 --- a/src/database/oracle/mode/sessionusage.pm +++ b/src/database/oracle/mode/sessionusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/tablespaceusage.pm b/src/database/oracle/mode/tablespaceusage.pm index 1467dc4af..58f5a3b30 100644 --- a/src/database/oracle/mode/tablespaceusage.pm +++ b/src/database/oracle/mode/tablespaceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/mode/tnsping.pm b/src/database/oracle/mode/tnsping.pm index bc0a6f685..f53dabf7b 100644 --- a/src/database/oracle/mode/tnsping.pm +++ b/src/database/oracle/mode/tnsping.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/oracle/plugin.pm b/src/database/oracle/plugin.pm index b46bcffeb..a45603a8c 100644 --- a/src/database/oracle/plugin.pm +++ b/src/database/oracle/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/dbi.pm b/src/database/postgres/dbi.pm index b09c07fe2..f45f3be84 100644 --- a/src/database/postgres/dbi.pm +++ b/src/database/postgres/dbi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/backends.pm b/src/database/postgres/mode/backends.pm index 95b9dff48..a847019ca 100644 --- a/src/database/postgres/mode/backends.pm +++ b/src/database/postgres/mode/backends.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/bloat.pm b/src/database/postgres/mode/bloat.pm index 452b984c9..6ef6ccffc 100644 --- a/src/database/postgres/mode/bloat.pm +++ b/src/database/postgres/mode/bloat.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/connectiontime.pm b/src/database/postgres/mode/connectiontime.pm index 4db8b6537..9f2111047 100644 --- a/src/database/postgres/mode/connectiontime.pm +++ b/src/database/postgres/mode/connectiontime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/databasesize.pm b/src/database/postgres/mode/databasesize.pm index e45539030..6629e9bd4 100644 --- a/src/database/postgres/mode/databasesize.pm +++ b/src/database/postgres/mode/databasesize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/hitratio.pm b/src/database/postgres/mode/hitratio.pm index dfae1d496..d2ac14804 100644 --- a/src/database/postgres/mode/hitratio.pm +++ b/src/database/postgres/mode/hitratio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/listdatabases.pm b/src/database/postgres/mode/listdatabases.pm index 13b7d7d1a..da7b618f6 100644 --- a/src/database/postgres/mode/listdatabases.pm +++ b/src/database/postgres/mode/listdatabases.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/locks.pm b/src/database/postgres/mode/locks.pm index 5385d52e7..1c73d3f02 100644 --- a/src/database/postgres/mode/locks.pm +++ b/src/database/postgres/mode/locks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/querytime.pm b/src/database/postgres/mode/querytime.pm index 1caf72327..83e1fe0da 100644 --- a/src/database/postgres/mode/querytime.pm +++ b/src/database/postgres/mode/querytime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/statistics.pm b/src/database/postgres/mode/statistics.pm index 7d5127c97..5c726002f 100644 --- a/src/database/postgres/mode/statistics.pm +++ b/src/database/postgres/mode/statistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/tablespace.pm b/src/database/postgres/mode/tablespace.pm index b9e094039..c690d259b 100644 --- a/src/database/postgres/mode/tablespace.pm +++ b/src/database/postgres/mode/tablespace.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/timesync.pm b/src/database/postgres/mode/timesync.pm index b63e79013..79be61691 100644 --- a/src/database/postgres/mode/timesync.pm +++ b/src/database/postgres/mode/timesync.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/mode/vacuum.pm b/src/database/postgres/mode/vacuum.pm index a1ace946f..5e4968c01 100644 --- a/src/database/postgres/mode/vacuum.pm +++ b/src/database/postgres/mode/vacuum.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/plugin.pm b/src/database/postgres/plugin.pm index 152282474..875c22c8b 100644 --- a/src/database/postgres/plugin.pm +++ b/src/database/postgres/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/postgres/psqlcmd.pm b/src/database/postgres/psqlcmd.pm index 5be314624..7adb9d08e 100644 --- a/src/database/postgres/psqlcmd.pm +++ b/src/database/postgres/psqlcmd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/custom/cli.pm b/src/database/redis/custom/cli.pm index a26d72b5f..f6c3a7450 100644 --- a/src/database/redis/custom/cli.pm +++ b/src/database/redis/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/custom/perlmod.pm b/src/database/redis/custom/perlmod.pm index 2bbc32a20..00da87dc0 100644 --- a/src/database/redis/custom/perlmod.pm +++ b/src/database/redis/custom/perlmod.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/clients.pm b/src/database/redis/mode/clients.pm index 6c1bd8c17..90cb50af3 100644 --- a/src/database/redis/mode/clients.pm +++ b/src/database/redis/mode/clients.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/commands.pm b/src/database/redis/mode/commands.pm index 898b9e8e1..e27f4a702 100644 --- a/src/database/redis/mode/commands.pm +++ b/src/database/redis/mode/commands.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/connections.pm b/src/database/redis/mode/connections.pm index cc0a4c1a1..5169d094c 100644 --- a/src/database/redis/mode/connections.pm +++ b/src/database/redis/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/cpu.pm b/src/database/redis/mode/cpu.pm index 31508be21..1b7f693e3 100644 --- a/src/database/redis/mode/cpu.pm +++ b/src/database/redis/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/memory.pm b/src/database/redis/mode/memory.pm index ef1f8208c..48400f1e5 100644 --- a/src/database/redis/mode/memory.pm +++ b/src/database/redis/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/persistence.pm b/src/database/redis/mode/persistence.pm index c3dacc6dd..7fe7cf582 100644 --- a/src/database/redis/mode/persistence.pm +++ b/src/database/redis/mode/persistence.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/mode/replication.pm b/src/database/redis/mode/replication.pm index abc33382b..3834b7a76 100644 --- a/src/database/redis/mode/replication.pm +++ b/src/database/redis/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/redis/plugin.pm b/src/database/redis/plugin.pm index fefec2fde..49dad4bf7 100644 --- a/src/database/redis/plugin.pm +++ b/src/database/redis/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/rrdtool/local/custom/cli.pm b/src/database/rrdtool/local/custom/cli.pm index 088dfcece..5c751642f 100644 --- a/src/database/rrdtool/local/custom/cli.pm +++ b/src/database/rrdtool/local/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/rrdtool/local/custom/perlmod.pm b/src/database/rrdtool/local/custom/perlmod.pm index ba351270c..fdf299437 100644 --- a/src/database/rrdtool/local/custom/perlmod.pm +++ b/src/database/rrdtool/local/custom/perlmod.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/rrdtool/local/mode/query.pm b/src/database/rrdtool/local/mode/query.pm index d1ff92039..e0f0f9f49 100644 --- a/src/database/rrdtool/local/mode/query.pm +++ b/src/database/rrdtool/local/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/rrdtool/local/plugin.pm b/src/database/rrdtool/local/plugin.pm index e8201adfa..903d95c35 100644 --- a/src/database/rrdtool/local/plugin.pm +++ b/src/database/rrdtool/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/mode/blockedtransactions.pm b/src/database/sap/hana/mode/blockedtransactions.pm index d2e311496..dd6c61166 100644 --- a/src/database/sap/hana/mode/blockedtransactions.pm +++ b/src/database/sap/hana/mode/blockedtransactions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/mode/connectedusers.pm b/src/database/sap/hana/mode/connectedusers.pm index 8a89d2510..ede32d08b 100644 --- a/src/database/sap/hana/mode/connectedusers.pm +++ b/src/database/sap/hana/mode/connectedusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/mode/diskusage.pm b/src/database/sap/hana/mode/diskusage.pm index d1c917108..ef7f4f816 100644 --- a/src/database/sap/hana/mode/diskusage.pm +++ b/src/database/sap/hana/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/mode/hostcpu.pm b/src/database/sap/hana/mode/hostcpu.pm index 44f8ddf94..984ee3c6d 100644 --- a/src/database/sap/hana/mode/hostcpu.pm +++ b/src/database/sap/hana/mode/hostcpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/mode/hostmemory.pm b/src/database/sap/hana/mode/hostmemory.pm index 2e6dd7dba..cb69946d2 100644 --- a/src/database/sap/hana/mode/hostmemory.pm +++ b/src/database/sap/hana/mode/hostmemory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/mode/volumeusage.pm b/src/database/sap/hana/mode/volumeusage.pm index 26a23bb61..37c55cbef 100644 --- a/src/database/sap/hana/mode/volumeusage.pm +++ b/src/database/sap/hana/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sap/hana/plugin.pm b/src/database/sap/hana/plugin.pm index 29cba4943..2b592bc1b 100644 --- a/src/database/sap/hana/plugin.pm +++ b/src/database/sap/hana/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sybase/mode/blockedprocesses.pm b/src/database/sybase/mode/blockedprocesses.pm index ef0556c11..e20837ffe 100644 --- a/src/database/sybase/mode/blockedprocesses.pm +++ b/src/database/sybase/mode/blockedprocesses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sybase/mode/connectedusers.pm b/src/database/sybase/mode/connectedusers.pm index cccc1c129..b9dd7661a 100644 --- a/src/database/sybase/mode/connectedusers.pm +++ b/src/database/sybase/mode/connectedusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sybase/mode/databasessize.pm b/src/database/sybase/mode/databasessize.pm index 126ccbf40..e10e88a1c 100644 --- a/src/database/sybase/mode/databasessize.pm +++ b/src/database/sybase/mode/databasessize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/sybase/plugin.pm b/src/database/sybase/plugin.pm index f8820d85a..1563cb065 100644 --- a/src/database/sybase/plugin.pm +++ b/src/database/sybase/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/warp10/sensision/mode/fetchstatistics.pm b/src/database/warp10/sensision/mode/fetchstatistics.pm index 7ad00ef2f..5c994c5dd 100644 --- a/src/database/warp10/sensision/mode/fetchstatistics.pm +++ b/src/database/warp10/sensision/mode/fetchstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/warp10/sensision/mode/scriptstatistics.pm b/src/database/warp10/sensision/mode/scriptstatistics.pm index 2b5d1baa7..8a7121b21 100644 --- a/src/database/warp10/sensision/mode/scriptstatistics.pm +++ b/src/database/warp10/sensision/mode/scriptstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/database/warp10/sensision/plugin.pm b/src/database/warp10/sensision/plugin.pm index 48555e6a9..e471e58a2 100644 --- a/src/database/warp10/sensision/plugin.pm +++ b/src/database/warp10/sensision/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/custommode/simple.pm b/src/example/custommode/simple.pm index b77ed624e..f5cfd8179 100644 --- a/src/example/custommode/simple.pm +++ b/src/example/custommode/simple.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/mode/getvalue.pm b/src/example/mode/getvalue.pm index 727656be9..65b8c4b43 100644 --- a/src/example/mode/getvalue.pm +++ b/src/example/mode/getvalue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/mode/launchcmd.pm b/src/example/mode/launchcmd.pm index 1d63cbcf3..8157f0557 100644 --- a/src/example/mode/launchcmd.pm +++ b/src/example/mode/launchcmd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/mode/testcustom.pm b/src/example/mode/testcustom.pm index 542a38cab..994c415f7 100644 --- a/src/example/mode/testcustom.pm +++ b/src/example/mode/testcustom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/plugin_command.pm b/src/example/plugin_command.pm index 5490c6932..829376d6f 100644 --- a/src/example/plugin_command.pm +++ b/src/example/plugin_command.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/plugin_custom.pm b/src/example/plugin_custom.pm index 944cc741a..5d8c8c889 100644 --- a/src/example/plugin_custom.pm +++ b/src/example/plugin_custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/example/plugin_snmp.pm b/src/example/plugin_snmp.pm index f26679f4d..a9f0b451b 100644 --- a/src/example/plugin_snmp.pm +++ b/src/example/plugin_snmp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/apc/snmp/mode/components/entity.pm b/src/hardware/ats/apc/snmp/mode/components/entity.pm index 73f9166d9..0e0a11b0e 100644 --- a/src/hardware/ats/apc/snmp/mode/components/entity.pm +++ b/src/hardware/ats/apc/snmp/mode/components/entity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/apc/snmp/mode/devicestatus.pm b/src/hardware/ats/apc/snmp/mode/devicestatus.pm index 79f0291cc..18fc82c64 100644 --- a/src/hardware/ats/apc/snmp/mode/devicestatus.pm +++ b/src/hardware/ats/apc/snmp/mode/devicestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/apc/snmp/mode/inputlines.pm b/src/hardware/ats/apc/snmp/mode/inputlines.pm index 038216421..8f60fd44a 100644 --- a/src/hardware/ats/apc/snmp/mode/inputlines.pm +++ b/src/hardware/ats/apc/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/apc/snmp/mode/ntp.pm b/src/hardware/ats/apc/snmp/mode/ntp.pm index f2a0345da..13d6d7e68 100644 --- a/src/hardware/ats/apc/snmp/mode/ntp.pm +++ b/src/hardware/ats/apc/snmp/mode/ntp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/apc/snmp/mode/outputlines.pm b/src/hardware/ats/apc/snmp/mode/outputlines.pm index 9bf5f7cc4..397f1e3c8 100644 --- a/src/hardware/ats/apc/snmp/mode/outputlines.pm +++ b/src/hardware/ats/apc/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/apc/snmp/plugin.pm b/src/hardware/ats/apc/snmp/plugin.pm index 2a59e8c78..0b1f5efda 100644 --- a/src/hardware/ats/apc/snmp/plugin.pm +++ b/src/hardware/ats/apc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/eaton/snmp/mode/inputlines.pm b/src/hardware/ats/eaton/snmp/mode/inputlines.pm index c97d9e144..aa335793c 100644 --- a/src/hardware/ats/eaton/snmp/mode/inputlines.pm +++ b/src/hardware/ats/eaton/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/eaton/snmp/mode/outputline.pm b/src/hardware/ats/eaton/snmp/mode/outputline.pm index c0f6a5ee0..58d7a824a 100644 --- a/src/hardware/ats/eaton/snmp/mode/outputline.pm +++ b/src/hardware/ats/eaton/snmp/mode/outputline.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/eaton/snmp/mode/system.pm b/src/hardware/ats/eaton/snmp/mode/system.pm index 32240765c..5792e87bd 100644 --- a/src/hardware/ats/eaton/snmp/mode/system.pm +++ b/src/hardware/ats/eaton/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ats/eaton/snmp/plugin.pm b/src/hardware/ats/eaton/snmp/plugin.pm index 43490344b..79311b387 100644 --- a/src/hardware/ats/eaton/snmp/plugin.pm +++ b/src/hardware/ats/eaton/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/abb/cms700/snmp/mode/listsensors.pm b/src/hardware/devices/abb/cms700/snmp/mode/listsensors.pm index f5842e6bb..7052b743e 100644 --- a/src/hardware/devices/abb/cms700/snmp/mode/listsensors.pm +++ b/src/hardware/devices/abb/cms700/snmp/mode/listsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/abb/cms700/snmp/mode/mainsmeasurements.pm b/src/hardware/devices/abb/cms700/snmp/mode/mainsmeasurements.pm index 2d7cc08d0..b39403b6d 100644 --- a/src/hardware/devices/abb/cms700/snmp/mode/mainsmeasurements.pm +++ b/src/hardware/devices/abb/cms700/snmp/mode/mainsmeasurements.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/abb/cms700/snmp/mode/sensorsmeasurements.pm b/src/hardware/devices/abb/cms700/snmp/mode/sensorsmeasurements.pm index d0cf288f0..0c1d8c769 100644 --- a/src/hardware/devices/abb/cms700/snmp/mode/sensorsmeasurements.pm +++ b/src/hardware/devices/abb/cms700/snmp/mode/sensorsmeasurements.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/abb/cms700/snmp/plugin.pm b/src/hardware/devices/abb/cms700/snmp/plugin.pm index fdeed3363..80b787d45 100644 --- a/src/hardware/devices/abb/cms700/snmp/plugin.pm +++ b/src/hardware/devices/abb/cms700/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/acstatus.pm b/src/hardware/devices/aeg/acm/snmp/mode/acstatus.pm index d2059cd07..ba01e58d6 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/acstatus.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/acstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/alarmsstatus.pm b/src/hardware/devices/aeg/acm/snmp/mode/alarmsstatus.pm index 11d9367d5..619fc99c4 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/alarmsstatus.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/alarmsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/batterystatus.pm b/src/hardware/devices/aeg/acm/snmp/mode/batterystatus.pm index 251804653..764f702ab 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/batterystatus.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/components/multiple.pm b/src/hardware/devices/aeg/acm/snmp/mode/components/multiple.pm index 82adb5055..d9422513f 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/components/multiple.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/components/multiple.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/components/simple.pm b/src/hardware/devices/aeg/acm/snmp/mode/components/simple.pm index 2d6740370..68fd5d0b4 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/components/simple.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/components/simple.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/loadstatus.pm b/src/hardware/devices/aeg/acm/snmp/mode/loadstatus.pm index f9bf5be38..e3a97e34b 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/loadstatus.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/loadstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/mode/rectifierstatus.pm b/src/hardware/devices/aeg/acm/snmp/mode/rectifierstatus.pm index 5b1c346f8..e21dcb2a0 100644 --- a/src/hardware/devices/aeg/acm/snmp/mode/rectifierstatus.pm +++ b/src/hardware/devices/aeg/acm/snmp/mode/rectifierstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/aeg/acm/snmp/plugin.pm b/src/hardware/devices/aeg/acm/snmp/plugin.pm index bb6ea7402..9c31d1f4d 100644 --- a/src/hardware/devices/aeg/acm/snmp/plugin.pm +++ b/src/hardware/devices/aeg/acm/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/barco/cs/restapi/custom/api.pm b/src/hardware/devices/barco/cs/restapi/custom/api.pm index 70fd952f0..67cac0cfa 100644 --- a/src/hardware/devices/barco/cs/restapi/custom/api.pm +++ b/src/hardware/devices/barco/cs/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/barco/cs/restapi/mode/device.pm b/src/hardware/devices/barco/cs/restapi/mode/device.pm index 329cb5b36..28265df39 100644 --- a/src/hardware/devices/barco/cs/restapi/mode/device.pm +++ b/src/hardware/devices/barco/cs/restapi/mode/device.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/barco/cs/restapi/plugin.pm b/src/hardware/devices/barco/cs/restapi/plugin.pm index f74ef16ac..c3f5299e0 100644 --- a/src/hardware/devices/barco/cs/restapi/plugin.pm +++ b/src/hardware/devices/barco/cs/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hanwha/snmp/mode/components/sdcard.pm b/src/hardware/devices/camera/hanwha/snmp/mode/components/sdcard.pm index 969fb082c..df504c1fa 100644 --- a/src/hardware/devices/camera/hanwha/snmp/mode/components/sdcard.pm +++ b/src/hardware/devices/camera/hanwha/snmp/mode/components/sdcard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hanwha/snmp/mode/components/service.pm b/src/hardware/devices/camera/hanwha/snmp/mode/components/service.pm index 966d9753b..1cc30d15d 100644 --- a/src/hardware/devices/camera/hanwha/snmp/mode/components/service.pm +++ b/src/hardware/devices/camera/hanwha/snmp/mode/components/service.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hanwha/snmp/mode/hardware.pm b/src/hardware/devices/camera/hanwha/snmp/mode/hardware.pm index 931901c15..06fd31e91 100644 --- a/src/hardware/devices/camera/hanwha/snmp/mode/hardware.pm +++ b/src/hardware/devices/camera/hanwha/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hanwha/snmp/plugin.pm b/src/hardware/devices/camera/hanwha/snmp/plugin.pm index 6d9966a3b..f155cba27 100644 --- a/src/hardware/devices/camera/hanwha/snmp/plugin.pm +++ b/src/hardware/devices/camera/hanwha/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hikvision/snmp/mode/cpu.pm b/src/hardware/devices/camera/hikvision/snmp/mode/cpu.pm index 055f24c91..117bb82bd 100644 --- a/src/hardware/devices/camera/hikvision/snmp/mode/cpu.pm +++ b/src/hardware/devices/camera/hikvision/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -81,7 +81,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/hardware/devices/camera/hikvision/snmp/mode/disk.pm b/src/hardware/devices/camera/hikvision/snmp/mode/disk.pm index 0a86a8773..8afea1f33 100644 --- a/src/hardware/devices/camera/hikvision/snmp/mode/disk.pm +++ b/src/hardware/devices/camera/hikvision/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hikvision/snmp/mode/memory.pm b/src/hardware/devices/camera/hikvision/snmp/mode/memory.pm index 210475404..890cfa5e2 100644 --- a/src/hardware/devices/camera/hikvision/snmp/mode/memory.pm +++ b/src/hardware/devices/camera/hikvision/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hikvision/snmp/mode/time.pm b/src/hardware/devices/camera/hikvision/snmp/mode/time.pm index 30691b4c1..60f3d7a83 100644 --- a/src/hardware/devices/camera/hikvision/snmp/mode/time.pm +++ b/src/hardware/devices/camera/hikvision/snmp/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/hikvision/snmp/plugin.pm b/src/hardware/devices/camera/hikvision/snmp/plugin.pm index 0571ae4c4..bb9d79ec6 100644 --- a/src/hardware/devices/camera/hikvision/snmp/plugin.pm +++ b/src/hardware/devices/camera/hikvision/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/mobotix/snmp/mode/system.pm b/src/hardware/devices/camera/mobotix/snmp/mode/system.pm index 2c08461d0..2211f555c 100644 --- a/src/hardware/devices/camera/mobotix/snmp/mode/system.pm +++ b/src/hardware/devices/camera/mobotix/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/mobotix/snmp/plugin.pm b/src/hardware/devices/camera/mobotix/snmp/plugin.pm index 2a8891159..e2788a8d7 100644 --- a/src/hardware/devices/camera/mobotix/snmp/plugin.pm +++ b/src/hardware/devices/camera/mobotix/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/optelecom/snmp/mode/alarms.pm b/src/hardware/devices/camera/optelecom/snmp/mode/alarms.pm index 51e56e0c3..c6c7aa415 100644 --- a/src/hardware/devices/camera/optelecom/snmp/mode/alarms.pm +++ b/src/hardware/devices/camera/optelecom/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/optelecom/snmp/mode/interfaces.pm b/src/hardware/devices/camera/optelecom/snmp/mode/interfaces.pm index 4115cae2d..d9db00c88 100644 --- a/src/hardware/devices/camera/optelecom/snmp/mode/interfaces.pm +++ b/src/hardware/devices/camera/optelecom/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/hardware/devices/camera/optelecom/snmp/mode/networks.pm b/src/hardware/devices/camera/optelecom/snmp/mode/networks.pm index b578666fa..293ab07ea 100644 --- a/src/hardware/devices/camera/optelecom/snmp/mode/networks.pm +++ b/src/hardware/devices/camera/optelecom/snmp/mode/networks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/optelecom/snmp/mode/temperatures.pm b/src/hardware/devices/camera/optelecom/snmp/mode/temperatures.pm index 875206143..b76202cca 100644 --- a/src/hardware/devices/camera/optelecom/snmp/mode/temperatures.pm +++ b/src/hardware/devices/camera/optelecom/snmp/mode/temperatures.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/optelecom/snmp/mode/uptime.pm b/src/hardware/devices/camera/optelecom/snmp/mode/uptime.pm index ff16b4da9..3182b0b62 100644 --- a/src/hardware/devices/camera/optelecom/snmp/mode/uptime.pm +++ b/src/hardware/devices/camera/optelecom/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/camera/optelecom/snmp/plugin.pm b/src/hardware/devices/camera/optelecom/snmp/plugin.pm index c69c7c78c..e31a93f6a 100644 --- a/src/hardware/devices/camera/optelecom/snmp/plugin.pm +++ b/src/hardware/devices/camera/optelecom/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/custom/api.pm b/src/hardware/devices/cisco/ces/restapi/custom/api.pm index 9c7539410..6f76b7d71 100644 --- a/src/hardware/devices/cisco/ces/restapi/custom/api.pm +++ b/src/hardware/devices/cisco/ces/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/callsrt.pm b/src/hardware/devices/cisco/ces/restapi/mode/callsrt.pm index 7ceedd0a8..5eeeb8422 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/callsrt.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/callsrt.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/callssummary.pm b/src/hardware/devices/cisco/ces/restapi/mode/callssummary.pm index f1747b678..44e5ce27f 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/callssummary.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/callssummary.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/certificates.pm b/src/hardware/devices/cisco/ces/restapi/mode/certificates.pm index 54b58b8d3..a2197d598 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/certificates.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/certificates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components.pm b/src/hardware/devices/cisco/ces/restapi/mode/components.pm index e4776987f..7c2c68a97 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/ad.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/ad.pm index ef1b002c7..36ad24e9d 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/ad.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/ad.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/aic.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/aic.pm index 7c8df5700..bb16fa5af 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/aic.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/aic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/aoc.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/aoc.pm index 37f05eb4e..621a6886a 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/aoc.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/aoc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/camera.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/camera.pm index b996ea822..ed0a8d504 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/camera.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/camera.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/software.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/software.pm index d148a06b2..48fc52f36 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/software.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/software.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/st.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/st.pm index 1354d7024..e2c4aee51 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/st.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/st.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/temperature.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/temperature.pm index 77f3d77a6..1c1e96c91 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/temperature.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/vic.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/vic.pm index ffd71eb59..4482b474f 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/vic.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/vic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/vis.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/vis.pm index 0b46c73d8..8223f91ef 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/vis.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/vis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/voc.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/voc.pm index 9f490b29b..6e24526a9 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/voc.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/voc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/components/webex.pm b/src/hardware/devices/cisco/ces/restapi/mode/components/webex.pm index 8d1bfcfdd..20d08222b 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/components/webex.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/components/webex.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/peripherals.pm b/src/hardware/devices/cisco/ces/restapi/mode/peripherals.pm index 1874821cf..3144a53a0 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/peripherals.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/peripherals.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/mode/sessions.pm b/src/hardware/devices/cisco/ces/restapi/mode/sessions.pm index ed5702ff2..6c6f12c15 100644 --- a/src/hardware/devices/cisco/ces/restapi/mode/sessions.pm +++ b/src/hardware/devices/cisco/ces/restapi/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/ces/restapi/plugin.pm b/src/hardware/devices/cisco/ces/restapi/plugin.pm index e32613616..077eba126 100644 --- a/src/hardware/devices/cisco/ces/restapi/plugin.pm +++ b/src/hardware/devices/cisco/ces/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/cts/snmp/mode/calls.pm b/src/hardware/devices/cisco/cts/snmp/mode/calls.pm index ef4f595f7..42d44aaea 100644 --- a/src/hardware/devices/cisco/cts/snmp/mode/calls.pm +++ b/src/hardware/devices/cisco/cts/snmp/mode/calls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/cts/snmp/mode/peripherals.pm b/src/hardware/devices/cisco/cts/snmp/mode/peripherals.pm index b03b7f589..c477a4849 100644 --- a/src/hardware/devices/cisco/cts/snmp/mode/peripherals.pm +++ b/src/hardware/devices/cisco/cts/snmp/mode/peripherals.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/cisco/cts/snmp/plugin.pm b/src/hardware/devices/cisco/cts/snmp/plugin.pm index 410ecf1a3..98a56dc3a 100644 --- a/src/hardware/devices/cisco/cts/snmp/plugin.pm +++ b/src/hardware/devices/cisco/cts/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/eltek/enexus/snmp/mode/alarms.pm b/src/hardware/devices/eltek/enexus/snmp/mode/alarms.pm index b56f3e459..7f9569e61 100644 --- a/src/hardware/devices/eltek/enexus/snmp/mode/alarms.pm +++ b/src/hardware/devices/eltek/enexus/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/eltek/enexus/snmp/mode/battery.pm b/src/hardware/devices/eltek/enexus/snmp/mode/battery.pm index d81ca0709..edc073a4d 100644 --- a/src/hardware/devices/eltek/enexus/snmp/mode/battery.pm +++ b/src/hardware/devices/eltek/enexus/snmp/mode/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/eltek/enexus/snmp/mode/load.pm b/src/hardware/devices/eltek/enexus/snmp/mode/load.pm index 641f9bd27..a73037604 100644 --- a/src/hardware/devices/eltek/enexus/snmp/mode/load.pm +++ b/src/hardware/devices/eltek/enexus/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/eltek/enexus/snmp/mode/outputs.pm b/src/hardware/devices/eltek/enexus/snmp/mode/outputs.pm index b82c8c998..e1f5f3cf2 100644 --- a/src/hardware/devices/eltek/enexus/snmp/mode/outputs.pm +++ b/src/hardware/devices/eltek/enexus/snmp/mode/outputs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/eltek/enexus/snmp/plugin.pm b/src/hardware/devices/eltek/enexus/snmp/plugin.pm index 6a5581825..b7e1bc882 100644 --- a/src/hardware/devices/eltek/enexus/snmp/plugin.pm +++ b/src/hardware/devices/eltek/enexus/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/gorgy/ntpserver/snmp/mode/globalstatus.pm b/src/hardware/devices/gorgy/ntpserver/snmp/mode/globalstatus.pm index 1baabd415..b478157cd 100644 --- a/src/hardware/devices/gorgy/ntpserver/snmp/mode/globalstatus.pm +++ b/src/hardware/devices/gorgy/ntpserver/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/gorgy/ntpserver/snmp/plugin.pm b/src/hardware/devices/gorgy/ntpserver/snmp/plugin.pm index cd6753758..03f0acc2d 100644 --- a/src/hardware/devices/gorgy/ntpserver/snmp/plugin.pm +++ b/src/hardware/devices/gorgy/ntpserver/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/custom/api.pm b/src/hardware/devices/hikvision/nvr/isapi/custom/api.pm index be0c74598..2ff917ac1 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/custom/api.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/cpu.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/cpu.pm index 632a074da..633225987 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/cpu.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for @@ -72,7 +72,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/device.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/device.pm index 97ab852e1..b9ecc0982 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/device.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/device.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/disks.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/disks.pm index 9fd1d3dc5..a2ac029b5 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/disks.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/memory.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/memory.pm index 33ba5d2c9..9545d1ed0 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/memory.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/protocols.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/protocols.pm index 4eb203328..01f0876a9 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/protocols.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/protocols.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/time.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/time.pm index 5069ff796..d64824062 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/time.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/mode/uptime.pm b/src/hardware/devices/hikvision/nvr/isapi/mode/uptime.pm index 10edf14b8..44b4843a4 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/mode/uptime.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/isapi/plugin.pm b/src/hardware/devices/hikvision/nvr/isapi/plugin.pm index adcdd4001..d0e1c4fcc 100644 --- a/src/hardware/devices/hikvision/nvr/isapi/plugin.pm +++ b/src/hardware/devices/hikvision/nvr/isapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/snmp/mode/disks.pm b/src/hardware/devices/hikvision/nvr/snmp/mode/disks.pm index 66dec7b18..e83d88773 100644 --- a/src/hardware/devices/hikvision/nvr/snmp/mode/disks.pm +++ b/src/hardware/devices/hikvision/nvr/snmp/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/snmp/mode/memory.pm b/src/hardware/devices/hikvision/nvr/snmp/mode/memory.pm index 8854470a0..6a108305a 100644 --- a/src/hardware/devices/hikvision/nvr/snmp/mode/memory.pm +++ b/src/hardware/devices/hikvision/nvr/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/snmp/mode/uptime.pm b/src/hardware/devices/hikvision/nvr/snmp/mode/uptime.pm index 0103e0c68..5fe15add2 100644 --- a/src/hardware/devices/hikvision/nvr/snmp/mode/uptime.pm +++ b/src/hardware/devices/hikvision/nvr/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hikvision/nvr/snmp/plugin.pm b/src/hardware/devices/hikvision/nvr/snmp/plugin.pm index 959930d23..80252d38e 100644 --- a/src/hardware/devices/hikvision/nvr/snmp/plugin.pm +++ b/src/hardware/devices/hikvision/nvr/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/ewon/snmp/mode/listtags.pm b/src/hardware/devices/hms/ewon/snmp/mode/listtags.pm index e2302414a..635db53a1 100644 --- a/src/hardware/devices/hms/ewon/snmp/mode/listtags.pm +++ b/src/hardware/devices/hms/ewon/snmp/mode/listtags.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/ewon/snmp/mode/tags.pm b/src/hardware/devices/hms/ewon/snmp/mode/tags.pm index e0ee93dbb..126e98b8a 100644 --- a/src/hardware/devices/hms/ewon/snmp/mode/tags.pm +++ b/src/hardware/devices/hms/ewon/snmp/mode/tags.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/ewon/snmp/plugin.pm b/src/hardware/devices/hms/ewon/snmp/plugin.pm index 31c46a6a7..239cf9c08 100644 --- a/src/hardware/devices/hms/ewon/snmp/plugin.pm +++ b/src/hardware/devices/hms/ewon/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/netbiter/argos/restapi/custom/api.pm b/src/hardware/devices/hms/netbiter/argos/restapi/custom/api.pm index f3a572911..9a536610a 100644 --- a/src/hardware/devices/hms/netbiter/argos/restapi/custom/api.pm +++ b/src/hardware/devices/hms/netbiter/argos/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/netbiter/argos/restapi/mode/alarms.pm b/src/hardware/devices/hms/netbiter/argos/restapi/mode/alarms.pm index 3e19565ac..db342f430 100644 --- a/src/hardware/devices/hms/netbiter/argos/restapi/mode/alarms.pm +++ b/src/hardware/devices/hms/netbiter/argos/restapi/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and cluster monitoring for diff --git a/src/hardware/devices/hms/netbiter/argos/restapi/mode/discovery.pm b/src/hardware/devices/hms/netbiter/argos/restapi/mode/discovery.pm index db69736b4..15207c7d0 100644 --- a/src/hardware/devices/hms/netbiter/argos/restapi/mode/discovery.pm +++ b/src/hardware/devices/hms/netbiter/argos/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/netbiter/argos/restapi/mode/listsensors.pm b/src/hardware/devices/hms/netbiter/argos/restapi/mode/listsensors.pm index a67150645..3ae8e642e 100644 --- a/src/hardware/devices/hms/netbiter/argos/restapi/mode/listsensors.pm +++ b/src/hardware/devices/hms/netbiter/argos/restapi/mode/listsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/hms/netbiter/argos/restapi/mode/sensors.pm b/src/hardware/devices/hms/netbiter/argos/restapi/mode/sensors.pm index 950225c68..2d9cd82aa 100644 --- a/src/hardware/devices/hms/netbiter/argos/restapi/mode/sensors.pm +++ b/src/hardware/devices/hms/netbiter/argos/restapi/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and cluster monitoring for diff --git a/src/hardware/devices/hms/netbiter/argos/restapi/plugin.pm b/src/hardware/devices/hms/netbiter/argos/restapi/plugin.pm index df2185bb3..7d9ba462b 100644 --- a/src/hardware/devices/hms/netbiter/argos/restapi/plugin.pm +++ b/src/hardware/devices/hms/netbiter/argos/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/masterclock/ntp100gps/snmp/mode/gpsstatus.pm b/src/hardware/devices/masterclock/ntp100gps/snmp/mode/gpsstatus.pm index 8702da21f..adab0ae64 100644 --- a/src/hardware/devices/masterclock/ntp100gps/snmp/mode/gpsstatus.pm +++ b/src/hardware/devices/masterclock/ntp100gps/snmp/mode/gpsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/masterclock/ntp100gps/snmp/mode/ntpperformance.pm b/src/hardware/devices/masterclock/ntp100gps/snmp/mode/ntpperformance.pm index 6185c5e4e..dc4b0a41b 100644 --- a/src/hardware/devices/masterclock/ntp100gps/snmp/mode/ntpperformance.pm +++ b/src/hardware/devices/masterclock/ntp100gps/snmp/mode/ntpperformance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/nvidia/gpu/smi/mode/stats.pm b/src/hardware/devices/nvidia/gpu/smi/mode/stats.pm index b5d6b0db3..c7cae05fa 100644 --- a/src/hardware/devices/nvidia/gpu/smi/mode/stats.pm +++ b/src/hardware/devices/nvidia/gpu/smi/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/nvidia/gpu/smi/plugin.pm b/src/hardware/devices/nvidia/gpu/smi/plugin.pm index 47f2ad9ab..3a517259e 100644 --- a/src/hardware/devices/nvidia/gpu/smi/plugin.pm +++ b/src/hardware/devices/nvidia/gpu/smi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/pexip/infinity/managementapi/custom/api.pm b/src/hardware/devices/pexip/infinity/managementapi/custom/api.pm index 96fa681f2..19226e255 100644 --- a/src/hardware/devices/pexip/infinity/managementapi/custom/api.pm +++ b/src/hardware/devices/pexip/infinity/managementapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/pexip/infinity/managementapi/mode/licenses.pm b/src/hardware/devices/pexip/infinity/managementapi/mode/licenses.pm index 4b3928412..c0e23f1d9 100644 --- a/src/hardware/devices/pexip/infinity/managementapi/mode/licenses.pm +++ b/src/hardware/devices/pexip/infinity/managementapi/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/pexip/infinity/managementapi/plugin.pm b/src/hardware/devices/pexip/infinity/managementapi/plugin.pm index 45087f8c0..49998fb98 100644 --- a/src/hardware/devices/pexip/infinity/managementapi/plugin.pm +++ b/src/hardware/devices/pexip/infinity/managementapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/dma/snmp/mode/alerts.pm b/src/hardware/devices/polycom/dma/snmp/mode/alerts.pm index 90cfb5ef3..d58b09425 100644 --- a/src/hardware/devices/polycom/dma/snmp/mode/alerts.pm +++ b/src/hardware/devices/polycom/dma/snmp/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/dma/snmp/mode/clusters.pm b/src/hardware/devices/polycom/dma/snmp/mode/clusters.pm index 63dd10f25..2f854a9e8 100644 --- a/src/hardware/devices/polycom/dma/snmp/mode/clusters.pm +++ b/src/hardware/devices/polycom/dma/snmp/mode/clusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/dma/snmp/mode/conferencemanager.pm b/src/hardware/devices/polycom/dma/snmp/mode/conferencemanager.pm index 4b9c57507..b6a048eb1 100644 --- a/src/hardware/devices/polycom/dma/snmp/mode/conferencemanager.pm +++ b/src/hardware/devices/polycom/dma/snmp/mode/conferencemanager.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/dma/snmp/mode/deviceregistrations.pm b/src/hardware/devices/polycom/dma/snmp/mode/deviceregistrations.pm index fc638495b..d9b2aa875 100644 --- a/src/hardware/devices/polycom/dma/snmp/mode/deviceregistrations.pm +++ b/src/hardware/devices/polycom/dma/snmp/mode/deviceregistrations.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/dma/snmp/mode/serversusage.pm b/src/hardware/devices/polycom/dma/snmp/mode/serversusage.pm index c1c6917a5..1988f3a8f 100644 --- a/src/hardware/devices/polycom/dma/snmp/mode/serversusage.pm +++ b/src/hardware/devices/polycom/dma/snmp/mode/serversusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/dma/snmp/plugin.pm b/src/hardware/devices/polycom/dma/snmp/plugin.pm index cd58662e2..614ff0d9a 100644 --- a/src/hardware/devices/polycom/dma/snmp/plugin.pm +++ b/src/hardware/devices/polycom/dma/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/groupseries/snmp/plugin.pm b/src/hardware/devices/polycom/groupseries/snmp/plugin.pm index a83326147..fcda1f7e1 100644 --- a/src/hardware/devices/polycom/groupseries/snmp/plugin.pm +++ b/src/hardware/devices/polycom/groupseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/hdx/snmp/mode/viewstationstats.pm b/src/hardware/devices/polycom/hdx/snmp/mode/viewstationstats.pm index 6f874bb6f..fb2206702 100644 --- a/src/hardware/devices/polycom/hdx/snmp/mode/viewstationstats.pm +++ b/src/hardware/devices/polycom/hdx/snmp/mode/viewstationstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/hdx/snmp/plugin.pm b/src/hardware/devices/polycom/hdx/snmp/plugin.pm index eef162384..0ead8d5c6 100644 --- a/src/hardware/devices/polycom/hdx/snmp/plugin.pm +++ b/src/hardware/devices/polycom/hdx/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/mode/clusterstatus.pm b/src/hardware/devices/polycom/rprm/snmp/mode/clusterstatus.pm index 87fcf5daa..75e26ae8b 100644 --- a/src/hardware/devices/polycom/rprm/snmp/mode/clusterstatus.pm +++ b/src/hardware/devices/polycom/rprm/snmp/mode/clusterstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/mode/license.pm b/src/hardware/devices/polycom/rprm/snmp/mode/license.pm index 558aa256f..fa9b58204 100644 --- a/src/hardware/devices/polycom/rprm/snmp/mode/license.pm +++ b/src/hardware/devices/polycom/rprm/snmp/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/mode/provisioning.pm b/src/hardware/devices/polycom/rprm/snmp/mode/provisioning.pm index 9ac644fc6..501b295a4 100644 --- a/src/hardware/devices/polycom/rprm/snmp/mode/provisioning.pm +++ b/src/hardware/devices/polycom/rprm/snmp/mode/provisioning.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/mode/sitelinks.pm b/src/hardware/devices/polycom/rprm/snmp/mode/sitelinks.pm index cbdbac112..d5da3a4f5 100644 --- a/src/hardware/devices/polycom/rprm/snmp/mode/sitelinks.pm +++ b/src/hardware/devices/polycom/rprm/snmp/mode/sitelinks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/mode/sites.pm b/src/hardware/devices/polycom/rprm/snmp/mode/sites.pm index 1cfea7798..f3c661bf0 100644 --- a/src/hardware/devices/polycom/rprm/snmp/mode/sites.pm +++ b/src/hardware/devices/polycom/rprm/snmp/mode/sites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/mode/updates.pm b/src/hardware/devices/polycom/rprm/snmp/mode/updates.pm index a3f1c213b..b97cc7932 100644 --- a/src/hardware/devices/polycom/rprm/snmp/mode/updates.pm +++ b/src/hardware/devices/polycom/rprm/snmp/mode/updates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/rprm/snmp/plugin.pm b/src/hardware/devices/polycom/rprm/snmp/plugin.pm index 6086555a3..40c8ee26f 100644 --- a/src/hardware/devices/polycom/rprm/snmp/plugin.pm +++ b/src/hardware/devices/polycom/rprm/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/custom/api.pm b/src/hardware/devices/polycom/trio/restapi/custom/api.pm index 3a36b5c71..094416955 100644 --- a/src/hardware/devices/polycom/trio/restapi/custom/api.pm +++ b/src/hardware/devices/polycom/trio/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/mode/callsrt.pm b/src/hardware/devices/polycom/trio/restapi/mode/callsrt.pm index fe0e59c0d..ae47bd558 100644 --- a/src/hardware/devices/polycom/trio/restapi/mode/callsrt.pm +++ b/src/hardware/devices/polycom/trio/restapi/mode/callsrt.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/mode/callssummary.pm b/src/hardware/devices/polycom/trio/restapi/mode/callssummary.pm index 85ed45c7b..18555e16e 100644 --- a/src/hardware/devices/polycom/trio/restapi/mode/callssummary.pm +++ b/src/hardware/devices/polycom/trio/restapi/mode/callssummary.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/mode/device.pm b/src/hardware/devices/polycom/trio/restapi/mode/device.pm index 67bce56f1..eb81715d2 100644 --- a/src/hardware/devices/polycom/trio/restapi/mode/device.pm +++ b/src/hardware/devices/polycom/trio/restapi/mode/device.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -142,7 +142,7 @@ __END__ =head1 MODE -Check device cpu, memory and state. +Check device CPU, memory and state. =over 8 diff --git a/src/hardware/devices/polycom/trio/restapi/mode/network.pm b/src/hardware/devices/polycom/trio/restapi/mode/network.pm index 3d27537a1..df5c4cc92 100644 --- a/src/hardware/devices/polycom/trio/restapi/mode/network.pm +++ b/src/hardware/devices/polycom/trio/restapi/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/mode/paired.pm b/src/hardware/devices/polycom/trio/restapi/mode/paired.pm index 8eb7a95ec..78e23b319 100644 --- a/src/hardware/devices/polycom/trio/restapi/mode/paired.pm +++ b/src/hardware/devices/polycom/trio/restapi/mode/paired.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/mode/registration.pm b/src/hardware/devices/polycom/trio/restapi/mode/registration.pm index 4dc8498aa..53b9221f7 100644 --- a/src/hardware/devices/polycom/trio/restapi/mode/registration.pm +++ b/src/hardware/devices/polycom/trio/restapi/mode/registration.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/polycom/trio/restapi/plugin.pm b/src/hardware/devices/polycom/trio/restapi/plugin.pm index cff974546..be2234a10 100644 --- a/src/hardware/devices/polycom/trio/restapi/plugin.pm +++ b/src/hardware/devices/polycom/trio/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/hwstatus.pm b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/hwstatus.pm index c4a5d753c..926c6d21e 100644 --- a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/hwstatus.pm +++ b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/hwstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/memory.pm b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/memory.pm index 7695ebedb..a48e001e2 100644 --- a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/memory.pm +++ b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/temperature.pm b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/temperature.pm index c1cc9a262..357f4ccff 100644 --- a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/temperature.pm +++ b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/hardware.pm b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/hardware.pm index 261aa2566..b0e7b60b2 100644 --- a/src/hardware/devices/safenet/hsm/protecttoolkit/mode/hardware.pm +++ b/src/hardware/devices/safenet/hsm/protecttoolkit/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/safenet/hsm/protecttoolkit/plugin.pm b/src/hardware/devices/safenet/hsm/protecttoolkit/plugin.pm index 5e98458c6..1c6016d88 100644 --- a/src/hardware/devices/safenet/hsm/protecttoolkit/plugin.pm +++ b/src/hardware/devices/safenet/hsm/protecttoolkit/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/safenet/keysecure/snmp/plugin.pm b/src/hardware/devices/safenet/keysecure/snmp/plugin.pm index fc4e80d73..60c968d6d 100644 --- a/src/hardware/devices/safenet/keysecure/snmp/plugin.pm +++ b/src/hardware/devices/safenet/keysecure/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/alarms.pm b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/alarms.pm index 44fa3e403..da18261f5 100644 --- a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/alarms.pm +++ b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/antenna.pm b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/antenna.pm index 5d1481b02..8678d73a5 100644 --- a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/antenna.pm +++ b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/antenna.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/frequency.pm b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/frequency.pm index 7bdddb8a8..e969a8688 100644 --- a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/frequency.pm +++ b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/frequency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/gnss.pm b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/gnss.pm index 3297186d8..adcc36ae0 100644 --- a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/gnss.pm +++ b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/gnss.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/satellites.pm b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/satellites.pm index 9dd464eaf..9fbd44ec8 100644 --- a/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/satellites.pm +++ b/src/hardware/devices/timelinkmicro/tms6001/snmp/mode/satellites.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/appeartv/snmp/mode/alarms.pm b/src/hardware/devices/video/appeartv/snmp/mode/alarms.pm index 33ca4e95b..fc682e000 100644 --- a/src/hardware/devices/video/appeartv/snmp/mode/alarms.pm +++ b/src/hardware/devices/video/appeartv/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/appeartv/snmp/plugin.pm b/src/hardware/devices/video/appeartv/snmp/plugin.pm index 872e2a273..865f54e19 100644 --- a/src/hardware/devices/video/appeartv/snmp/plugin.pm +++ b/src/hardware/devices/video/appeartv/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/audio.pm b/src/hardware/devices/video/axis/snmp/mode/components/audio.pm index b88e16590..86c63b648 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/audio.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/audio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/casing.pm b/src/hardware/devices/video/axis/snmp/mode/components/casing.pm index 3f252a3a6..42ff8e777 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/casing.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/casing.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/fan.pm b/src/hardware/devices/video/axis/snmp/mode/components/fan.pm index c2c0cefad..5ae9e53eb 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/fan.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/psu.pm b/src/hardware/devices/video/axis/snmp/mode/components/psu.pm index caa73e457..a155d5679 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/psu.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/storage.pm b/src/hardware/devices/video/axis/snmp/mode/components/storage.pm index ae66855a6..43b7b90c6 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/storage.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/temperature.pm b/src/hardware/devices/video/axis/snmp/mode/components/temperature.pm index 67adcdb2d..49ecd17c1 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/temperature.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/components/video.pm b/src/hardware/devices/video/axis/snmp/mode/components/video.pm index c0c124c42..daa769640 100644 --- a/src/hardware/devices/video/axis/snmp/mode/components/video.pm +++ b/src/hardware/devices/video/axis/snmp/mode/components/video.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/mode/environment.pm b/src/hardware/devices/video/axis/snmp/mode/environment.pm index ab277ef5c..8e698a2a4 100644 --- a/src/hardware/devices/video/axis/snmp/mode/environment.pm +++ b/src/hardware/devices/video/axis/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/devices/video/axis/snmp/plugin.pm b/src/hardware/devices/video/axis/snmp/plugin.pm index b237019d9..c42ed7ce7 100644 --- a/src/hardware/devices/video/axis/snmp/plugin.pm +++ b/src/hardware/devices/video/axis/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/adder/aim/snmp/mode/deviceusage.pm b/src/hardware/kvm/adder/aim/snmp/mode/deviceusage.pm index 23f1432e3..e4ae2b552 100644 --- a/src/hardware/kvm/adder/aim/snmp/mode/deviceusage.pm +++ b/src/hardware/kvm/adder/aim/snmp/mode/deviceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/adder/aim/snmp/mode/serverusage.pm b/src/hardware/kvm/adder/aim/snmp/mode/serverusage.pm index a9f84fb64..99fa5d772 100644 --- a/src/hardware/kvm/adder/aim/snmp/mode/serverusage.pm +++ b/src/hardware/kvm/adder/aim/snmp/mode/serverusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/adder/aim/snmp/plugin.pm b/src/hardware/kvm/adder/aim/snmp/plugin.pm index 9fd8d5d6b..ef7ff4710 100644 --- a/src/hardware/kvm/adder/aim/snmp/plugin.pm +++ b/src/hardware/kvm/adder/aim/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/avocent/acs/6000/snmp/mode/components/psu.pm b/src/hardware/kvm/avocent/acs/6000/snmp/mode/components/psu.pm index b370b969e..296dd6bdb 100644 --- a/src/hardware/kvm/avocent/acs/6000/snmp/mode/components/psu.pm +++ b/src/hardware/kvm/avocent/acs/6000/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/avocent/acs/6000/snmp/mode/hardware.pm b/src/hardware/kvm/avocent/acs/6000/snmp/mode/hardware.pm index 79e6c0034..9c9782f70 100644 --- a/src/hardware/kvm/avocent/acs/6000/snmp/mode/hardware.pm +++ b/src/hardware/kvm/avocent/acs/6000/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/avocent/acs/6000/snmp/plugin.pm b/src/hardware/kvm/avocent/acs/6000/snmp/plugin.pm index 35d90e38f..5ccb0f852 100644 --- a/src/hardware/kvm/avocent/acs/6000/snmp/plugin.pm +++ b/src/hardware/kvm/avocent/acs/6000/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/kvm/avocent/acs/8000/snmp/mode/serialports.pm b/src/hardware/kvm/avocent/acs/8000/snmp/mode/serialports.pm index 9ec334f29..59a0d971f 100644 --- a/src/hardware/kvm/avocent/acs/8000/snmp/mode/serialports.pm +++ b/src/hardware/kvm/avocent/acs/8000/snmp/mode/serialports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/components/humidity.pm b/src/hardware/pdu/apc/snmp/mode/components/humidity.pm index 0826c97f4..9f61525e7 100644 --- a/src/hardware/pdu/apc/snmp/mode/components/humidity.pm +++ b/src/hardware/pdu/apc/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/components/psu.pm b/src/hardware/pdu/apc/snmp/mode/components/psu.pm index 610dfe452..a1da04489 100644 --- a/src/hardware/pdu/apc/snmp/mode/components/psu.pm +++ b/src/hardware/pdu/apc/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/components/temperature.pm b/src/hardware/pdu/apc/snmp/mode/components/temperature.pm index 26cadfe49..ea36844ce 100644 --- a/src/hardware/pdu/apc/snmp/mode/components/temperature.pm +++ b/src/hardware/pdu/apc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/hardware.pm b/src/hardware/pdu/apc/snmp/mode/hardware.pm index bc15acd25..3ff1513f9 100644 --- a/src/hardware/pdu/apc/snmp/mode/hardware.pm +++ b/src/hardware/pdu/apc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/load.pm b/src/hardware/pdu/apc/snmp/mode/load.pm index 9619b50b2..8bb231faa 100644 --- a/src/hardware/pdu/apc/snmp/mode/load.pm +++ b/src/hardware/pdu/apc/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/ntp.pm b/src/hardware/pdu/apc/snmp/mode/ntp.pm index 73ee21a8a..149fba405 100644 --- a/src/hardware/pdu/apc/snmp/mode/ntp.pm +++ b/src/hardware/pdu/apc/snmp/mode/ntp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/mode/outlet.pm b/src/hardware/pdu/apc/snmp/mode/outlet.pm index 2a8fd73db..ecb73b5d1 100644 --- a/src/hardware/pdu/apc/snmp/mode/outlet.pm +++ b/src/hardware/pdu/apc/snmp/mode/outlet.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/apc/snmp/plugin.pm b/src/hardware/pdu/apc/snmp/plugin.pm index b5821d688..f5515e03d 100644 --- a/src/hardware/pdu/apc/snmp/plugin.pm +++ b/src/hardware/pdu/apc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/clever/snmp/mode/psusage.pm b/src/hardware/pdu/clever/snmp/mode/psusage.pm index 8372844eb..a359376b0 100644 --- a/src/hardware/pdu/clever/snmp/mode/psusage.pm +++ b/src/hardware/pdu/clever/snmp/mode/psusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/clever/snmp/plugin.pm b/src/hardware/pdu/clever/snmp/plugin.pm index 1e565a1c9..1df9413c6 100644 --- a/src/hardware/pdu/clever/snmp/plugin.pm +++ b/src/hardware/pdu/clever/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/cyberpower/snmp/mode/load.pm b/src/hardware/pdu/cyberpower/snmp/mode/load.pm index 52f457b94..0c5c44784 100644 --- a/src/hardware/pdu/cyberpower/snmp/mode/load.pm +++ b/src/hardware/pdu/cyberpower/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/cyberpower/snmp/mode/outlets.pm b/src/hardware/pdu/cyberpower/snmp/mode/outlets.pm index 896fdc812..59309db41 100644 --- a/src/hardware/pdu/cyberpower/snmp/mode/outlets.pm +++ b/src/hardware/pdu/cyberpower/snmp/mode/outlets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/cyberpower/snmp/plugin.pm b/src/hardware/pdu/cyberpower/snmp/plugin.pm index 5b6520c0d..c259bae87 100644 --- a/src/hardware/pdu/cyberpower/snmp/plugin.pm +++ b/src/hardware/pdu/cyberpower/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/eaton/snmp/mode/environment.pm b/src/hardware/pdu/eaton/snmp/mode/environment.pm index 7cc1e283e..f5e9cd441 100644 --- a/src/hardware/pdu/eaton/snmp/mode/environment.pm +++ b/src/hardware/pdu/eaton/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/eaton/snmp/mode/group.pm b/src/hardware/pdu/eaton/snmp/mode/group.pm index 95c71faff..f51eda156 100644 --- a/src/hardware/pdu/eaton/snmp/mode/group.pm +++ b/src/hardware/pdu/eaton/snmp/mode/group.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/eaton/snmp/mode/outlet.pm b/src/hardware/pdu/eaton/snmp/mode/outlet.pm index eb1f742db..2c66de47e 100644 --- a/src/hardware/pdu/eaton/snmp/mode/outlet.pm +++ b/src/hardware/pdu/eaton/snmp/mode/outlet.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/eaton/snmp/plugin.pm b/src/hardware/pdu/eaton/snmp/plugin.pm index c7081044a..70d806fac 100644 --- a/src/hardware/pdu/eaton/snmp/plugin.pm +++ b/src/hardware/pdu/eaton/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/emerson/snmp/mode/globalstatus.pm b/src/hardware/pdu/emerson/snmp/mode/globalstatus.pm index 92afed14c..0bf10b57f 100644 --- a/src/hardware/pdu/emerson/snmp/mode/globalstatus.pm +++ b/src/hardware/pdu/emerson/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/emerson/snmp/mode/psusage.pm b/src/hardware/pdu/emerson/snmp/mode/psusage.pm index 2137aefe8..a6ecfdf3e 100644 --- a/src/hardware/pdu/emerson/snmp/mode/psusage.pm +++ b/src/hardware/pdu/emerson/snmp/mode/psusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/emerson/snmp/mode/receptacles.pm b/src/hardware/pdu/emerson/snmp/mode/receptacles.pm index 9bb53be5f..a358814c4 100644 --- a/src/hardware/pdu/emerson/snmp/mode/receptacles.pm +++ b/src/hardware/pdu/emerson/snmp/mode/receptacles.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/emerson/snmp/plugin.pm b/src/hardware/pdu/emerson/snmp/plugin.pm index 2d8cda765..eabee6381 100644 --- a/src/hardware/pdu/emerson/snmp/plugin.pm +++ b/src/hardware/pdu/emerson/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/gude/epc/snmp/mode/listsppowerchannels.pm b/src/hardware/pdu/gude/epc/snmp/mode/listsppowerchannels.pm index 860fafa53..57ff6add3 100644 --- a/src/hardware/pdu/gude/epc/snmp/mode/listsppowerchannels.pm +++ b/src/hardware/pdu/gude/epc/snmp/mode/listsppowerchannels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/gude/epc/snmp/mode/powerchannels.pm b/src/hardware/pdu/gude/epc/snmp/mode/powerchannels.pm index 236af515f..b1bc1c137 100644 --- a/src/hardware/pdu/gude/epc/snmp/mode/powerchannels.pm +++ b/src/hardware/pdu/gude/epc/snmp/mode/powerchannels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/gude/epc/snmp/mode/resources.pm b/src/hardware/pdu/gude/epc/snmp/mode/resources.pm index 67bdbf005..e2dfa63b5 100644 --- a/src/hardware/pdu/gude/epc/snmp/mode/resources.pm +++ b/src/hardware/pdu/gude/epc/snmp/mode/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/gude/epc/snmp/mode/sppowerchannels.pm b/src/hardware/pdu/gude/epc/snmp/mode/sppowerchannels.pm index d9fc4137e..80e0b5f3d 100644 --- a/src/hardware/pdu/gude/epc/snmp/mode/sppowerchannels.pm +++ b/src/hardware/pdu/gude/epc/snmp/mode/sppowerchannels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/gude/epc/snmp/plugin.pm b/src/hardware/pdu/gude/epc/snmp/plugin.pm index 201347289..c38426510 100644 --- a/src/hardware/pdu/gude/epc/snmp/plugin.pm +++ b/src/hardware/pdu/gude/epc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/mode/components/resources.pm b/src/hardware/pdu/raritan/snmp/mode/components/resources.pm index f86e6087b..12a06d54b 100644 --- a/src/hardware/pdu/raritan/snmp/mode/components/resources.pm +++ b/src/hardware/pdu/raritan/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/mode/components/sensor.pm b/src/hardware/pdu/raritan/snmp/mode/components/sensor.pm index 09b96fa0b..bd36ae992 100644 --- a/src/hardware/pdu/raritan/snmp/mode/components/sensor.pm +++ b/src/hardware/pdu/raritan/snmp/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/mode/externalsensors.pm b/src/hardware/pdu/raritan/snmp/mode/externalsensors.pm index d7d6141cf..ed4f528a2 100644 --- a/src/hardware/pdu/raritan/snmp/mode/externalsensors.pm +++ b/src/hardware/pdu/raritan/snmp/mode/externalsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/mode/inletsensors.pm b/src/hardware/pdu/raritan/snmp/mode/inletsensors.pm index 81d042cc7..5ac6dbdaf 100644 --- a/src/hardware/pdu/raritan/snmp/mode/inletsensors.pm +++ b/src/hardware/pdu/raritan/snmp/mode/inletsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/mode/ocprotsensors.pm b/src/hardware/pdu/raritan/snmp/mode/ocprotsensors.pm index edd759846..df656b2b2 100644 --- a/src/hardware/pdu/raritan/snmp/mode/ocprotsensors.pm +++ b/src/hardware/pdu/raritan/snmp/mode/ocprotsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/mode/outletsensors.pm b/src/hardware/pdu/raritan/snmp/mode/outletsensors.pm index eeb533ed5..1ccdb858b 100644 --- a/src/hardware/pdu/raritan/snmp/mode/outletsensors.pm +++ b/src/hardware/pdu/raritan/snmp/mode/outletsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/raritan/snmp/plugin.pm b/src/hardware/pdu/raritan/snmp/plugin.pm index 146bee466..e879e5f2d 100644 --- a/src/hardware/pdu/raritan/snmp/plugin.pm +++ b/src/hardware/pdu/raritan/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/contact.pm b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/contact.pm index 226d9f390..a12dd7e84 100644 --- a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/contact.pm +++ b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/contact.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/humidity.pm b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/humidity.pm index 36ec2fe31..a761efae4 100644 --- a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/humidity.pm +++ b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/resources.pm b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/resources.pm index 001361c07..35f07d908 100644 --- a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/resources.pm +++ b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/temperature.pm b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/temperature.pm index fd3dd840b..a69c23214 100644 --- a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/temperature.pm +++ b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/sensors.pm b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/sensors.pm index 8f5b7eaa8..637a5c6da 100644 --- a/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/sensors.pm +++ b/src/hardware/pdu/schleifenbauer/gateway/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/pdu/schleifenbauer/gateway/snmp/plugin.pm b/src/hardware/pdu/schleifenbauer/gateway/snmp/plugin.pm index e3ce2f728..ca730ce33 100644 --- a/src/hardware/pdu/schleifenbauer/gateway/snmp/plugin.pm +++ b/src/hardware/pdu/schleifenbauer/gateway/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/printers/standard/rfc3805/mode/coverstatus.pm b/src/hardware/printers/standard/rfc3805/mode/coverstatus.pm index d7c3db174..8c06b012a 100644 --- a/src/hardware/printers/standard/rfc3805/mode/coverstatus.pm +++ b/src/hardware/printers/standard/rfc3805/mode/coverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/printers/standard/rfc3805/mode/markerimpression.pm b/src/hardware/printers/standard/rfc3805/mode/markerimpression.pm index 6f98a5cdf..53e75af49 100644 --- a/src/hardware/printers/standard/rfc3805/mode/markerimpression.pm +++ b/src/hardware/printers/standard/rfc3805/mode/markerimpression.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/printers/standard/rfc3805/mode/markersupply.pm b/src/hardware/printers/standard/rfc3805/mode/markersupply.pm index 233d88310..45431da9b 100644 --- a/src/hardware/printers/standard/rfc3805/mode/markersupply.pm +++ b/src/hardware/printers/standard/rfc3805/mode/markersupply.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/printers/standard/rfc3805/mode/papertray.pm b/src/hardware/printers/standard/rfc3805/mode/papertray.pm index be836ee71..a9767aceb 100644 --- a/src/hardware/printers/standard/rfc3805/mode/papertray.pm +++ b/src/hardware/printers/standard/rfc3805/mode/papertray.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/printers/standard/rfc3805/plugin.pm b/src/hardware/printers/standard/rfc3805/plugin.pm index ea298c12c..4cc854a70 100644 --- a/src/hardware/printers/standard/rfc3805/plugin.pm +++ b/src/hardware/printers/standard/rfc3805/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/components/humidity.pm b/src/hardware/sensors/akcp/snmp/mode/components/humidity.pm index 8a560fd52..a4b8ff9c5 100644 --- a/src/hardware/sensors/akcp/snmp/mode/components/humidity.pm +++ b/src/hardware/sensors/akcp/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/components/resources.pm b/src/hardware/sensors/akcp/snmp/mode/components/resources.pm index 754e25ce1..b85b537c6 100644 --- a/src/hardware/sensors/akcp/snmp/mode/components/resources.pm +++ b/src/hardware/sensors/akcp/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/components/serial.pm b/src/hardware/sensors/akcp/snmp/mode/components/serial.pm index a048a4de8..6d1cd72f4 100644 --- a/src/hardware/sensors/akcp/snmp/mode/components/serial.pm +++ b/src/hardware/sensors/akcp/snmp/mode/components/serial.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/components/switch.pm b/src/hardware/sensors/akcp/snmp/mode/components/switch.pm index 89a9d98be..9e2f6f246 100644 --- a/src/hardware/sensors/akcp/snmp/mode/components/switch.pm +++ b/src/hardware/sensors/akcp/snmp/mode/components/switch.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/components/temperature.pm b/src/hardware/sensors/akcp/snmp/mode/components/temperature.pm index 31b58ed47..bda904ebe 100644 --- a/src/hardware/sensors/akcp/snmp/mode/components/temperature.pm +++ b/src/hardware/sensors/akcp/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/components/water.pm b/src/hardware/sensors/akcp/snmp/mode/components/water.pm index 0d9b62882..4ebba5df3 100644 --- a/src/hardware/sensors/akcp/snmp/mode/components/water.pm +++ b/src/hardware/sensors/akcp/snmp/mode/components/water.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/mode/sensors.pm b/src/hardware/sensors/akcp/snmp/mode/sensors.pm index ade51d403..4f53e67c4 100644 --- a/src/hardware/sensors/akcp/snmp/mode/sensors.pm +++ b/src/hardware/sensors/akcp/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/akcp/snmp/plugin.pm b/src/hardware/sensors/akcp/snmp/plugin.pm index b731f3089..1bb8616a2 100644 --- a/src/hardware/sensors/akcp/snmp/plugin.pm +++ b/src/hardware/sensors/akcp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/apc/snmp/mode/components/fluid.pm b/src/hardware/sensors/apc/snmp/mode/components/fluid.pm index 8b23337ec..dabe6386f 100644 --- a/src/hardware/sensors/apc/snmp/mode/components/fluid.pm +++ b/src/hardware/sensors/apc/snmp/mode/components/fluid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/apc/snmp/mode/components/humidity.pm b/src/hardware/sensors/apc/snmp/mode/components/humidity.pm index b1c48ccc2..95fb1a8e7 100644 --- a/src/hardware/sensors/apc/snmp/mode/components/humidity.pm +++ b/src/hardware/sensors/apc/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/apc/snmp/mode/components/resources.pm b/src/hardware/sensors/apc/snmp/mode/components/resources.pm index a1def3aaa..c7fdd62aa 100644 --- a/src/hardware/sensors/apc/snmp/mode/components/resources.pm +++ b/src/hardware/sensors/apc/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/apc/snmp/mode/components/temperature.pm b/src/hardware/sensors/apc/snmp/mode/components/temperature.pm index 7c2d2a2e1..030e78d7e 100644 --- a/src/hardware/sensors/apc/snmp/mode/components/temperature.pm +++ b/src/hardware/sensors/apc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/apc/snmp/mode/sensors.pm b/src/hardware/sensors/apc/snmp/mode/sensors.pm index b885c6a16..96da3cf03 100644 --- a/src/hardware/sensors/apc/snmp/mode/sensors.pm +++ b/src/hardware/sensors/apc/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/apc/snmp/plugin.pm b/src/hardware/sensors/apc/snmp/plugin.pm index a81696ed3..d5ecc0e35 100644 --- a/src/hardware/sensors/apc/snmp/plugin.pm +++ b/src/hardware/sensors/apc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/comet/p8000/snmp/mode/sensors.pm b/src/hardware/sensors/comet/p8000/snmp/mode/sensors.pm index d4b828325..b46209049 100644 --- a/src/hardware/sensors/comet/p8000/snmp/mode/sensors.pm +++ b/src/hardware/sensors/comet/p8000/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/comet/p8000/snmp/plugin.pm b/src/hardware/sensors/comet/p8000/snmp/plugin.pm index c61532004..624de9972 100644 --- a/src/hardware/sensors/comet/p8000/snmp/plugin.pm +++ b/src/hardware/sensors/comet/p8000/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/geist/snmp/mode/sensors.pm b/src/hardware/sensors/geist/snmp/mode/sensors.pm index fe6316870..714d99a7f 100644 --- a/src/hardware/sensors/geist/snmp/mode/sensors.pm +++ b/src/hardware/sensors/geist/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/geist/snmp/plugin.pm b/src/hardware/sensors/geist/snmp/plugin.pm index 61c0d84b4..10fd22936 100644 --- a/src/hardware/sensors/geist/snmp/plugin.pm +++ b/src/hardware/sensors/geist/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/hwgste/snmp/mode/components/humidity.pm b/src/hardware/sensors/hwgste/snmp/mode/components/humidity.pm index 1f5136524..d57859d6c 100644 --- a/src/hardware/sensors/hwgste/snmp/mode/components/humidity.pm +++ b/src/hardware/sensors/hwgste/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/hwgste/snmp/mode/components/resources.pm b/src/hardware/sensors/hwgste/snmp/mode/components/resources.pm index 9decb3161..41314da7d 100644 --- a/src/hardware/sensors/hwgste/snmp/mode/components/resources.pm +++ b/src/hardware/sensors/hwgste/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/hwgste/snmp/mode/components/temperature.pm b/src/hardware/sensors/hwgste/snmp/mode/components/temperature.pm index fb827b4ee..4b7e1ab4b 100644 --- a/src/hardware/sensors/hwgste/snmp/mode/components/temperature.pm +++ b/src/hardware/sensors/hwgste/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/hwgste/snmp/mode/sensors.pm b/src/hardware/sensors/hwgste/snmp/mode/sensors.pm index 36eab222a..f12ff053f 100644 --- a/src/hardware/sensors/hwgste/snmp/mode/sensors.pm +++ b/src/hardware/sensors/hwgste/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/hwgste/snmp/plugin.pm b/src/hardware/sensors/hwgste/snmp/plugin.pm index b1c7188b4..166719045 100644 --- a/src/hardware/sensors/hwgste/snmp/plugin.pm +++ b/src/hardware/sensors/hwgste/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/jacarta/snmp/mode/components/humidity.pm b/src/hardware/sensors/jacarta/snmp/mode/components/humidity.pm index 26d91b1fb..c092545af 100644 --- a/src/hardware/sensors/jacarta/snmp/mode/components/humidity.pm +++ b/src/hardware/sensors/jacarta/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/jacarta/snmp/mode/components/input.pm b/src/hardware/sensors/jacarta/snmp/mode/components/input.pm index 73c27bed8..c6f43614f 100644 --- a/src/hardware/sensors/jacarta/snmp/mode/components/input.pm +++ b/src/hardware/sensors/jacarta/snmp/mode/components/input.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/jacarta/snmp/mode/components/resources.pm b/src/hardware/sensors/jacarta/snmp/mode/components/resources.pm index adbba8225..a33e28533 100644 --- a/src/hardware/sensors/jacarta/snmp/mode/components/resources.pm +++ b/src/hardware/sensors/jacarta/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/jacarta/snmp/mode/components/temperature.pm b/src/hardware/sensors/jacarta/snmp/mode/components/temperature.pm index 4fd51051e..1bc0b6c85 100644 --- a/src/hardware/sensors/jacarta/snmp/mode/components/temperature.pm +++ b/src/hardware/sensors/jacarta/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/jacarta/snmp/mode/sensors.pm b/src/hardware/sensors/jacarta/snmp/mode/sensors.pm index 7354b727e..e46a75563 100644 --- a/src/hardware/sensors/jacarta/snmp/mode/sensors.pm +++ b/src/hardware/sensors/jacarta/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/jacarta/snmp/plugin.pm b/src/hardware/sensors/jacarta/snmp/plugin.pm index 64dd468e0..25e466d29 100644 --- a/src/hardware/sensors/jacarta/snmp/plugin.pm +++ b/src/hardware/sensors/jacarta/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/airflow.pm b/src/hardware/sensors/netbotz/snmp/mode/components/airflow.pm index d2e25a0b8..993808bc4 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/airflow.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/airflow.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/camera.pm b/src/hardware/sensors/netbotz/snmp/mode/components/camera.pm index f7706c1ab..9a9fb4922 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/camera.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/camera.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/dewpoint.pm b/src/hardware/sensors/netbotz/snmp/mode/components/dewpoint.pm index 16aca3235..547c6b752 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/dewpoint.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/dewpoint.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/doorswitch.pm b/src/hardware/sensors/netbotz/snmp/mode/components/doorswitch.pm index 29a5eb69b..85fe9570e 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/doorswitch.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/doorswitch.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/humidity.pm b/src/hardware/sensors/netbotz/snmp/mode/components/humidity.pm index a3e8a62f4..5590cb12c 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/humidity.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/otherstate.pm b/src/hardware/sensors/netbotz/snmp/mode/components/otherstate.pm index aaddfbe2f..c270308f3 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/otherstate.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/otherstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/resources.pm b/src/hardware/sensors/netbotz/snmp/mode/components/resources.pm index b8654429c..9df620b03 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/resources.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/components/temperature.pm b/src/hardware/sensors/netbotz/snmp/mode/components/temperature.pm index 8d5ac3d9a..15428caa8 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/components/temperature.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/mode/sensors.pm b/src/hardware/sensors/netbotz/snmp/mode/sensors.pm index c8408a88e..0f67eea76 100644 --- a/src/hardware/sensors/netbotz/snmp/mode/sensors.pm +++ b/src/hardware/sensors/netbotz/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/netbotz/snmp/plugin.pm b/src/hardware/sensors/netbotz/snmp/plugin.pm index 29bba272b..502384d66 100644 --- a/src/hardware/sensors/netbotz/snmp/plugin.pm +++ b/src/hardware/sensors/netbotz/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/rittal/cmc3/snmp/mode/devices.pm b/src/hardware/sensors/rittal/cmc3/snmp/mode/devices.pm index 428cbe51f..a4a955d18 100644 --- a/src/hardware/sensors/rittal/cmc3/snmp/mode/devices.pm +++ b/src/hardware/sensors/rittal/cmc3/snmp/mode/devices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/rittal/cmc3/snmp/mode/listdevices.pm b/src/hardware/sensors/rittal/cmc3/snmp/mode/listdevices.pm index 5d2f360e2..c49bacb1c 100644 --- a/src/hardware/sensors/rittal/cmc3/snmp/mode/listdevices.pm +++ b/src/hardware/sensors/rittal/cmc3/snmp/mode/listdevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/rittal/cmc3/snmp/mode/load.pm b/src/hardware/sensors/rittal/cmc3/snmp/mode/load.pm index d1818862d..b86774578 100644 --- a/src/hardware/sensors/rittal/cmc3/snmp/mode/load.pm +++ b/src/hardware/sensors/rittal/cmc3/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/rittal/cmc3/snmp/mode/unitstatus.pm b/src/hardware/sensors/rittal/cmc3/snmp/mode/unitstatus.pm index 80ca940fd..d96263192 100644 --- a/src/hardware/sensors/rittal/cmc3/snmp/mode/unitstatus.pm +++ b/src/hardware/sensors/rittal/cmc3/snmp/mode/unitstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/rittal/cmc3/snmp/mode/uptime.pm b/src/hardware/sensors/rittal/cmc3/snmp/mode/uptime.pm index a486e5c35..806b3e24f 100644 --- a/src/hardware/sensors/rittal/cmc3/snmp/mode/uptime.pm +++ b/src/hardware/sensors/rittal/cmc3/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensorip/snmp/mode/components/humidity.pm b/src/hardware/sensors/sensorip/snmp/mode/components/humidity.pm index fb8dd4387..f3a484e0a 100644 --- a/src/hardware/sensors/sensorip/snmp/mode/components/humidity.pm +++ b/src/hardware/sensors/sensorip/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensorip/snmp/mode/components/sp.pm b/src/hardware/sensors/sensorip/snmp/mode/components/sp.pm index 216ff783e..d3e3c49dd 100644 --- a/src/hardware/sensors/sensorip/snmp/mode/components/sp.pm +++ b/src/hardware/sensors/sensorip/snmp/mode/components/sp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensorip/snmp/mode/components/switch.pm b/src/hardware/sensors/sensorip/snmp/mode/components/switch.pm index df74768b1..5b22d8d0d 100644 --- a/src/hardware/sensors/sensorip/snmp/mode/components/switch.pm +++ b/src/hardware/sensors/sensorip/snmp/mode/components/switch.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensorip/snmp/mode/components/temperature.pm b/src/hardware/sensors/sensorip/snmp/mode/components/temperature.pm index 39b6490d1..15b1e20f8 100644 --- a/src/hardware/sensors/sensorip/snmp/mode/components/temperature.pm +++ b/src/hardware/sensors/sensorip/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensorip/snmp/mode/sensors.pm b/src/hardware/sensors/sensorip/snmp/mode/sensors.pm index db472155c..e50bb076d 100644 --- a/src/hardware/sensors/sensorip/snmp/mode/sensors.pm +++ b/src/hardware/sensors/sensorip/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensorip/snmp/plugin.pm b/src/hardware/sensors/sensorip/snmp/plugin.pm index dc0f6de33..1f274b69f 100644 --- a/src/hardware/sensors/sensorip/snmp/plugin.pm +++ b/src/hardware/sensors/sensorip/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/contact.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/contact.pm index 8c7affc4d..26c7ee048 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/contact.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/contact.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/flood.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/flood.pm index 172c075ac..0b0e538c2 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/flood.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/flood.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/humidity.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/humidity.pm index 0929a19ea..08f2a3e39 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/humidity.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/illumination.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/illumination.pm index d8bdaa159..7a5d3a65b 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/illumination.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/illumination.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/temperature.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/temperature.pm index 937ddb18d..17d394a52 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/temperature.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/thermistor.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/thermistor.pm index ed9289e6a..c7a499588 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/thermistor.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/thermistor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/mode/voltage.pm b/src/hardware/sensors/sensormetrix/em01/web/mode/voltage.pm index c3a7d1893..9b66f9cfe 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/mode/voltage.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/mode/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/sensormetrix/em01/web/plugin.pm b/src/hardware/sensors/sensormetrix/em01/web/plugin.pm index a07692ed7..8aed9e87d 100644 --- a/src/hardware/sensors/sensormetrix/em01/web/plugin.pm +++ b/src/hardware/sensors/sensormetrix/em01/web/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/components/sensors.pm b/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/components/sensors.pm index d64b547a5..a51a8ab48 100644 --- a/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/components/sensors.pm +++ b/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/components/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/sensors.pm b/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/sensors.pm index d93b4c606..18616efb4 100644 --- a/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/sensors.pm +++ b/src/hardware/sensors/serverscheck/sensorgateway/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/serverscheck/sensorgateway/snmp/plugin.pm b/src/hardware/sensors/serverscheck/sensorgateway/snmp/plugin.pm index 09f78a542..32bff22ff 100644 --- a/src/hardware/sensors/serverscheck/sensorgateway/snmp/plugin.pm +++ b/src/hardware/sensors/serverscheck/sensorgateway/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/temperhum/local/mode/environment.pm b/src/hardware/sensors/temperhum/local/mode/environment.pm index fc9c2baab..e60989e90 100644 --- a/src/hardware/sensors/temperhum/local/mode/environment.pm +++ b/src/hardware/sensors/temperhum/local/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/sensors/temperhum/local/plugin.pm b/src/hardware/sensors/temperhum/local/plugin.pm index 1e516116e..71cc9c5be 100644 --- a/src/hardware/sensors/temperhum/local/plugin.pm +++ b/src/hardware/sensors/temperhum/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/auditlogs.pm b/src/hardware/server/cisco/ucs/snmp/mode/auditlogs.pm index 5e77392ae..e780e529f 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/auditlogs.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/auditlogs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/blade.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/blade.pm index 44330034c..c50d2f222 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/blade.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/blade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/chassis.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/chassis.pm index 7ec22784e..51019f2f5 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/chassis.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/cpu.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/cpu.pm index bb318cc06..0af86252e 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/cpu.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/fan.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/fan.pm index 867b7e565..733eff787 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/fan.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/fex.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/fex.pm index 942b0fdff..cb3b1d59d 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/fex.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/fex.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/iocard.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/iocard.pm index 6d71c3019..20e7d84d8 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/iocard.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/iocard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/localdisk.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/localdisk.pm index b99e8f2de..69452007f 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/localdisk.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/localdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/memory.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/memory.pm index 6dc2d398b..b3e905eca 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/memory.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/psu.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/psu.pm index 55c59b9c2..52c07bf00 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/psu.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/components/resources.pm b/src/hardware/server/cisco/ucs/snmp/mode/components/resources.pm index 9e986634f..2659b146f 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/components/resources.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/equipment.pm b/src/hardware/server/cisco/ucs/snmp/mode/equipment.pm index e610d0070..c356b82c9 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/equipment.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/equipment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/faults.pm b/src/hardware/server/cisco/ucs/snmp/mode/faults.pm index 1f88a44e3..fed6a7664 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/faults.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/faults.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/mgmtentities.pm b/src/hardware/server/cisco/ucs/snmp/mode/mgmtentities.pm index 47c0f0071..276743cd4 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/mgmtentities.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/mgmtentities.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/mode/serviceprofile.pm b/src/hardware/server/cisco/ucs/snmp/mode/serviceprofile.pm index 2c3589901..cc16e8624 100644 --- a/src/hardware/server/cisco/ucs/snmp/mode/serviceprofile.pm +++ b/src/hardware/server/cisco/ucs/snmp/mode/serviceprofile.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/cisco/ucs/snmp/plugin.pm b/src/hardware/server/cisco/ucs/snmp/plugin.pm index 5ad329b48..c135044a0 100644 --- a/src/hardware/server/cisco/ucs/snmp/plugin.pm +++ b/src/hardware/server/cisco/ucs/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/chassis.pm b/src/hardware/server/dell/cmc/snmp/mode/components/chassis.pm index 8b973bc75..897752da5 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/chassis.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/disk.pm b/src/hardware/server/dell/cmc/snmp/mode/components/disk.pm index b8dacf8c6..b98ab7275 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/disk.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/health.pm b/src/hardware/server/dell/cmc/snmp/mode/components/health.pm index 8a7283118..65325e321 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/health.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/psu.pm b/src/hardware/server/dell/cmc/snmp/mode/components/psu.pm index 371484b61..e8fb33b86 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/psu.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/resources.pm b/src/hardware/server/dell/cmc/snmp/mode/components/resources.pm index 958fa15af..94ab11029 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/resources.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/temperature.pm b/src/hardware/server/dell/cmc/snmp/mode/components/temperature.pm index fc6c8e0fd..82a8e52a0 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/temperature.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/components/vdisk.pm b/src/hardware/server/dell/cmc/snmp/mode/components/vdisk.pm index 9bd30ed51..f5fc012f9 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/components/vdisk.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/components/vdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/mode/hardware.pm b/src/hardware/server/dell/cmc/snmp/mode/hardware.pm index ecbf63290..db849b625 100644 --- a/src/hardware/server/dell/cmc/snmp/mode/hardware.pm +++ b/src/hardware/server/dell/cmc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/cmc/snmp/plugin.pm b/src/hardware/server/dell/cmc/snmp/plugin.pm index e7e5f8a10..a87609685 100644 --- a/src/hardware/server/dell/cmc/snmp/plugin.pm +++ b/src/hardware/server/dell/cmc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/amperage.pm b/src/hardware/server/dell/idrac/snmp/mode/components/amperage.pm index 37be2f32f..f236ce013 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/amperage.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/amperage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/coolingdevice.pm b/src/hardware/server/dell/idrac/snmp/mode/components/coolingdevice.pm index 6787a45a5..8b7de5920 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/coolingdevice.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/coolingdevice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/coolingunit.pm b/src/hardware/server/dell/idrac/snmp/mode/components/coolingunit.pm index e8e346076..0cb2e59b4 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/coolingunit.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/coolingunit.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/enclosure.pm b/src/hardware/server/dell/idrac/snmp/mode/components/enclosure.pm index 5b34b6900..fb29f5fd7 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/enclosure.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/fru.pm b/src/hardware/server/dell/idrac/snmp/mode/components/fru.pm index 6c3f82284..2044fa144 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/fru.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/fru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/health.pm b/src/hardware/server/dell/idrac/snmp/mode/components/health.pm index 4858b68b4..5a418bf05 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/health.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/memory.pm b/src/hardware/server/dell/idrac/snmp/mode/components/memory.pm index 609efd122..f98b99bf6 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/memory.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/network.pm b/src/hardware/server/dell/idrac/snmp/mode/components/network.pm index 55b954ae2..238bd3153 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/network.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/pci.pm b/src/hardware/server/dell/idrac/snmp/mode/components/pci.pm index b13003b57..843b8c9b8 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/pci.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/pci.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/pdisk.pm b/src/hardware/server/dell/idrac/snmp/mode/components/pdisk.pm index a5af6bd55..f90afadb3 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/pdisk.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/pdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/processor.pm b/src/hardware/server/dell/idrac/snmp/mode/components/processor.pm index 74bbe294a..43252c62b 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/processor.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/processor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/psu.pm b/src/hardware/server/dell/idrac/snmp/mode/components/psu.pm index e3e29f57b..799c1682f 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/psu.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/punit.pm b/src/hardware/server/dell/idrac/snmp/mode/components/punit.pm index 4440fa0cd..475b6fc25 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/punit.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/punit.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/resources.pm b/src/hardware/server/dell/idrac/snmp/mode/components/resources.pm index 4ff61620c..8d410a657 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/resources.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/slot.pm b/src/hardware/server/dell/idrac/snmp/mode/components/slot.pm index 835a4ded4..0a090717c 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/slot.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/slot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/storagebattery.pm b/src/hardware/server/dell/idrac/snmp/mode/components/storagebattery.pm index 2bf4986dd..3bd82de20 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/storagebattery.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/storagebattery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/storagectrl.pm b/src/hardware/server/dell/idrac/snmp/mode/components/storagectrl.pm index 6b7df94c9..f07620310 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/storagectrl.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/storagectrl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/systembattery.pm b/src/hardware/server/dell/idrac/snmp/mode/components/systembattery.pm index a77af883f..4819ab31e 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/systembattery.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/systembattery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/temperature.pm b/src/hardware/server/dell/idrac/snmp/mode/components/temperature.pm index 852269388..f5291083c 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/temperature.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/vdisk.pm b/src/hardware/server/dell/idrac/snmp/mode/components/vdisk.pm index 30b8e7218..3428ee920 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/vdisk.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/vdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/components/voltage.pm b/src/hardware/server/dell/idrac/snmp/mode/components/voltage.pm index 55380b7ed..48276920b 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/components/voltage.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/globalstatus.pm b/src/hardware/server/dell/idrac/snmp/mode/globalstatus.pm index 16aaea438..42fdc0972 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/globalstatus.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/mode/hardware.pm b/src/hardware/server/dell/idrac/snmp/mode/hardware.pm index 48bc65392..bcccbacae 100644 --- a/src/hardware/server/dell/idrac/snmp/mode/hardware.pm +++ b/src/hardware/server/dell/idrac/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/idrac/snmp/plugin.pm b/src/hardware/server/dell/idrac/snmp/plugin.pm index f43f998ce..b083268c3 100644 --- a/src/hardware/server/dell/idrac/snmp/plugin.pm +++ b/src/hardware/server/dell/idrac/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/omem/snmp/mode/components/chassis.pm b/src/hardware/server/dell/omem/snmp/mode/components/chassis.pm index 8433fc107..e6dad3fbd 100644 --- a/src/hardware/server/dell/omem/snmp/mode/components/chassis.pm +++ b/src/hardware/server/dell/omem/snmp/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/omem/snmp/mode/components/health.pm b/src/hardware/server/dell/omem/snmp/mode/components/health.pm index e194ec40a..1b8d7e60e 100644 --- a/src/hardware/server/dell/omem/snmp/mode/components/health.pm +++ b/src/hardware/server/dell/omem/snmp/mode/components/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/omem/snmp/mode/components/psu.pm b/src/hardware/server/dell/omem/snmp/mode/components/psu.pm index bafe45ec6..779b92f79 100644 --- a/src/hardware/server/dell/omem/snmp/mode/components/psu.pm +++ b/src/hardware/server/dell/omem/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/omem/snmp/mode/components/temperature.pm b/src/hardware/server/dell/omem/snmp/mode/components/temperature.pm index f03598d64..8bee11d7e 100644 --- a/src/hardware/server/dell/omem/snmp/mode/components/temperature.pm +++ b/src/hardware/server/dell/omem/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/omem/snmp/mode/hardware.pm b/src/hardware/server/dell/omem/snmp/mode/hardware.pm index 14f8702e9..fc0a676f7 100644 --- a/src/hardware/server/dell/omem/snmp/mode/hardware.pm +++ b/src/hardware/server/dell/omem/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/omem/snmp/plugin.pm b/src/hardware/server/dell/omem/snmp/plugin.pm index 80fa2cc8e..56ebda580 100644 --- a/src/hardware/server/dell/omem/snmp/plugin.pm +++ b/src/hardware/server/dell/omem/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/battery.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/battery.pm index 446308db5..68b328510 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/battery.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/cachebattery.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/cachebattery.pm index 618b73fac..38acdccdb 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/cachebattery.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/cachebattery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/connector.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/connector.pm index 1e7886ef2..eb9f8a4ac 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/connector.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/connector.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/controller.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/controller.pm index ff7b5905f..5b87cc0cf 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/controller.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/controller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/cpu.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/cpu.pm index 5f036d6ec..c65dd56d9 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/cpu.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/esmlog.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/esmlog.pm index 21139ab77..179d64661 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/esmlog.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/esmlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/fan.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/fan.pm index cc8784956..661608a9b 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/fan.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/globalstatus.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/globalstatus.pm index 6c2237056..7b5126318 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/globalstatus.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/logicaldrive.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/logicaldrive.pm index 5e9d758f2..4686836f1 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/logicaldrive.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/logicaldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/memory.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/memory.pm index 0ab49e534..2a72af86a 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/memory.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/physicaldisk.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/physicaldisk.pm index ca234cd3c..4c94d5805 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/physicaldisk.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/physicaldisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/psu.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/psu.pm index 1b6d7d299..67032acd4 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/psu.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/components/temperature.pm b/src/hardware/server/dell/openmanage/snmp/mode/components/temperature.pm index 1c57abff0..9516c0e2b 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/components/temperature.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/mode/hardware.pm b/src/hardware/server/dell/openmanage/snmp/mode/hardware.pm index a3d01889f..269330fd2 100644 --- a/src/hardware/server/dell/openmanage/snmp/mode/hardware.pm +++ b/src/hardware/server/dell/openmanage/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/openmanage/snmp/plugin.pm b/src/hardware/server/dell/openmanage/snmp/plugin.pm index 09b27afcf..805a7a088 100644 --- a/src/hardware/server/dell/openmanage/snmp/plugin.pm +++ b/src/hardware/server/dell/openmanage/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/vxm/restapi/custom/api.pm b/src/hardware/server/dell/vxm/restapi/custom/api.pm index 35d03cdd9..308be3ad3 100644 --- a/src/hardware/server/dell/vxm/restapi/custom/api.pm +++ b/src/hardware/server/dell/vxm/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/vxm/restapi/mode/chassis.pm b/src/hardware/server/dell/vxm/restapi/mode/chassis.pm index 56ad9bea5..558f86106 100644 --- a/src/hardware/server/dell/vxm/restapi/mode/chassis.pm +++ b/src/hardware/server/dell/vxm/restapi/mode/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/vxm/restapi/mode/discovery.pm b/src/hardware/server/dell/vxm/restapi/mode/discovery.pm index 67ce3c8eb..e56d77f7b 100644 --- a/src/hardware/server/dell/vxm/restapi/mode/discovery.pm +++ b/src/hardware/server/dell/vxm/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/vxm/restapi/mode/hosts.pm b/src/hardware/server/dell/vxm/restapi/mode/hosts.pm index 4dac70d26..f0d84dfc9 100644 --- a/src/hardware/server/dell/vxm/restapi/mode/hosts.pm +++ b/src/hardware/server/dell/vxm/restapi/mode/hosts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/dell/vxm/restapi/plugin.pm b/src/hardware/server/dell/vxm/restapi/plugin.pm index 354c37e57..3e682ec91 100644 --- a/src/hardware/server/dell/vxm/restapi/plugin.pm +++ b/src/hardware/server/dell/vxm/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/cpu.pm b/src/hardware/server/fujitsu/snmp/mode/components/cpu.pm index 49195f292..c1095b707 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/cpu.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/disk.pm b/src/hardware/server/fujitsu/snmp/mode/components/disk.pm index fcee6238d..889847495 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/disk.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/fan.pm b/src/hardware/server/fujitsu/snmp/mode/components/fan.pm index 3da6fcb16..51f05a005 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/fan.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/memory.pm b/src/hardware/server/fujitsu/snmp/mode/components/memory.pm index 42d8df266..0e46e90e2 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/memory.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/psu.pm b/src/hardware/server/fujitsu/snmp/mode/components/psu.pm index 1e12c6b2b..30e4686e6 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/psu.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/raid.pm b/src/hardware/server/fujitsu/snmp/mode/components/raid.pm index e597a4ee3..2911aa551 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/raid.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/temperature.pm b/src/hardware/server/fujitsu/snmp/mode/components/temperature.pm index cb7615d25..82dd4c06e 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/temperature.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/components/voltage.pm b/src/hardware/server/fujitsu/snmp/mode/components/voltage.pm index 79cca7827..8920bd1f3 100644 --- a/src/hardware/server/fujitsu/snmp/mode/components/voltage.pm +++ b/src/hardware/server/fujitsu/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/mode/hardware.pm b/src/hardware/server/fujitsu/snmp/mode/hardware.pm index 644ca7af8..423456f15 100644 --- a/src/hardware/server/fujitsu/snmp/mode/hardware.pm +++ b/src/hardware/server/fujitsu/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/fujitsu/snmp/plugin.pm b/src/hardware/server/fujitsu/snmp/plugin.pm index 2c6540a5e..38911e2f3 100644 --- a/src/hardware/server/fujitsu/snmp/plugin.pm +++ b/src/hardware/server/fujitsu/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/blade.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/blade.pm index 233f137a6..39c8359f7 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/blade.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/blade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/enclosure.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/enclosure.pm index c7e09f97e..01da05ca5 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/enclosure.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/fan.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/fan.pm index 4ac1ddbfa..83a938092 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/fan.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/fuse.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/fuse.pm index 69476f5c0..e9187253e 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/fuse.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/fuse.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/manager.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/manager.pm index 8115c6ea0..8abdfec36 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/manager.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/manager.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/network.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/network.pm index b4d43be7f..3b597cc2a 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/network.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/psu.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/psu.pm index fbd63f8b8..3ee3312b3 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/psu.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/components/temperature.pm b/src/hardware/server/hp/bladechassis/snmp/mode/components/temperature.pm index 2a6ca7692..dc6c6ef19 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/components/temperature.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/mode/hardware.pm b/src/hardware/server/hp/bladechassis/snmp/mode/hardware.pm index ee89e357c..ff0c067af 100644 --- a/src/hardware/server/hp/bladechassis/snmp/mode/hardware.pm +++ b/src/hardware/server/hp/bladechassis/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/bladechassis/snmp/plugin.pm b/src/hardware/server/hp/bladechassis/snmp/plugin.pm index 79f55efec..6187345cf 100644 --- a/src/hardware/server/hp/bladechassis/snmp/plugin.pm +++ b/src/hardware/server/hp/bladechassis/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/restapi/custom/api.pm b/src/hardware/server/hp/ilo/restapi/custom/api.pm index 1104f9b45..97ab687c5 100644 --- a/src/hardware/server/hp/ilo/restapi/custom/api.pm +++ b/src/hardware/server/hp/ilo/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/restapi/plugin.pm b/src/hardware/server/hp/ilo/restapi/plugin.pm index 3d1c6e191..0f055893c 100644 --- a/src/hardware/server/hp/ilo/restapi/plugin.pm +++ b/src/hardware/server/hp/ilo/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/custom/api.pm b/src/hardware/server/hp/ilo/xmlapi/custom/api.pm index 4fd79ef45..25a699c4d 100644 --- a/src/hardware/server/hp/ilo/xmlapi/custom/api.pm +++ b/src/hardware/server/hp/ilo/xmlapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/battery.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/battery.pm index aa33d0428..76dd3b6ec 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/battery.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/bios.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/bios.pm index a8025f318..58612e3cd 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/bios.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/bios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/cpu.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/cpu.pm index a1aacb18c..53d4ac5c6 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/cpu.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/ctrl.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/ctrl.pm index eec90f388..790014fbf 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/ctrl.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/ctrl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/driveencl.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/driveencl.pm index ff002d241..4172fc8b7 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/driveencl.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/driveencl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/fan.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/fan.pm index d3c5f7c7c..b4a1359da 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/fan.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/ldrive.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/ldrive.pm index ee3292aab..e5e766910 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/ldrive.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/ldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/memory.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/memory.pm index 244374781..849ab5a34 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/memory.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/nic.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/nic.pm index fe0eb200d..1cdd68e10 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/nic.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/nic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/pdrive.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/pdrive.pm index 55ff5be80..68c359a4d 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/pdrive.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/pdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/psu.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/psu.pm index fc90ed23a..df4374bb8 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/psu.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/temperature.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/temperature.pm index f406e7bac..adb9b20ff 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/temperature.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/components/vrm.pm b/src/hardware/server/hp/ilo/xmlapi/mode/components/vrm.pm index 1047a01b1..2414a7059 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/components/vrm.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/components/vrm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/mode/hardware.pm b/src/hardware/server/hp/ilo/xmlapi/mode/hardware.pm index 5b8fc1245..930b41aff 100644 --- a/src/hardware/server/hp/ilo/xmlapi/mode/hardware.pm +++ b/src/hardware/server/hp/ilo/xmlapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/ilo/xmlapi/plugin.pm b/src/hardware/server/hp/ilo/xmlapi/plugin.pm index 809c10f16..08f7b43e3 100644 --- a/src/hardware/server/hp/ilo/xmlapi/plugin.pm +++ b/src/hardware/server/hp/ilo/xmlapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/oneview/restapi/custom/api.pm b/src/hardware/server/hp/oneview/restapi/custom/api.pm index f929e4cc3..6fce8be3d 100644 --- a/src/hardware/server/hp/oneview/restapi/custom/api.pm +++ b/src/hardware/server/hp/oneview/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/oneview/restapi/mode/components/enclosure.pm b/src/hardware/server/hp/oneview/restapi/mode/components/enclosure.pm index 78c750004..49c1ddc09 100644 --- a/src/hardware/server/hp/oneview/restapi/mode/components/enclosure.pm +++ b/src/hardware/server/hp/oneview/restapi/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/oneview/restapi/mode/components/server.pm b/src/hardware/server/hp/oneview/restapi/mode/components/server.pm index 7efbbfa9e..0cae0f5a0 100644 --- a/src/hardware/server/hp/oneview/restapi/mode/components/server.pm +++ b/src/hardware/server/hp/oneview/restapi/mode/components/server.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/oneview/restapi/mode/hardware.pm b/src/hardware/server/hp/oneview/restapi/mode/hardware.pm index a0530f71b..49e423993 100644 --- a/src/hardware/server/hp/oneview/restapi/mode/hardware.pm +++ b/src/hardware/server/hp/oneview/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/oneview/restapi/mode/storagepools.pm b/src/hardware/server/hp/oneview/restapi/mode/storagepools.pm index 773f21b1e..72b8045b1 100644 --- a/src/hardware/server/hp/oneview/restapi/mode/storagepools.pm +++ b/src/hardware/server/hp/oneview/restapi/mode/storagepools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/oneview/restapi/plugin.pm b/src/hardware/server/hp/oneview/restapi/plugin.pm index beac072e3..92ca5c1fe 100644 --- a/src/hardware/server/hp/oneview/restapi/plugin.pm +++ b/src/hardware/server/hp/oneview/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/cpu.pm b/src/hardware/server/hp/proliant/snmp/mode/components/cpu.pm index b2c402e96..c2bcf7482 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/cpu.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/daacc.pm b/src/hardware/server/hp/proliant/snmp/mode/components/daacc.pm index 8f4213f45..85b3a1520 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/daacc.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/daacc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/dactl.pm b/src/hardware/server/hp/proliant/snmp/mode/components/dactl.pm index 6384f7b25..57fbce694 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/dactl.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/dactl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/daldrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/daldrive.pm index 372e75fc1..f94fae795 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/daldrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/daldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/dapdrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/dapdrive.pm index 5b701c6fe..d99a37d1b 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/dapdrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/dapdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/fan.pm b/src/hardware/server/hp/proliant/snmp/mode/components/fan.pm index 6853126f0..dd306c071 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/fan.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalacc.pm b/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalacc.pm index 11ae0c918..6c09ff3e5 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalacc.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalacc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalctl.pm b/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalctl.pm index c69e7b202..58edeb885 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalctl.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/fcaexternalctl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/fcahostctl.pm b/src/hardware/server/hp/proliant/snmp/mode/components/fcahostctl.pm index 600bfe67a..4d2ee62a4 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/fcahostctl.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/fcahostctl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/fcaldrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/fcaldrive.pm index a4f8ed899..557bc7ef1 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/fcaldrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/fcaldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/fcapdrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/fcapdrive.pm index 41f544791..0f089a7e5 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/fcapdrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/fcapdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/idectl.pm b/src/hardware/server/hp/proliant/snmp/mode/components/idectl.pm index 698a74e5b..7c791b2e5 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/idectl.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/idectl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/ideldrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/ideldrive.pm index 278bcbe11..62512bc85 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/ideldrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/ideldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/idepdrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/idepdrive.pm index f7c5d7a20..6bdf8ee3e 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/idepdrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/idepdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/ilo.pm b/src/hardware/server/hp/proliant/snmp/mode/components/ilo.pm index 2cdec9d64..d7c50e434 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/ilo.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/ilo.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/lnic.pm b/src/hardware/server/hp/proliant/snmp/mode/components/lnic.pm index 3dd1bd2fa..72005b97e 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/lnic.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/lnic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/memory.pm b/src/hardware/server/hp/proliant/snmp/mode/components/memory.pm index 90d61e748..ed8f02332 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/memory.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/pc.pm b/src/hardware/server/hp/proliant/snmp/mode/components/pc.pm index a4bf18a90..0faaa18ed 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/pc.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/pc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/pnic.pm b/src/hardware/server/hp/proliant/snmp/mode/components/pnic.pm index 597be1c2b..54d910828 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/pnic.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/pnic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/psu.pm b/src/hardware/server/hp/proliant/snmp/mode/components/psu.pm index 3c99fb478..2170b4eb7 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/psu.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/sasctl.pm b/src/hardware/server/hp/proliant/snmp/mode/components/sasctl.pm index b11ec6519..7403c73d5 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/sasctl.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/sasctl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/sasldrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/sasldrive.pm index bdb991e00..da3c770d2 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/sasldrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/sasldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/saspdrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/saspdrive.pm index 06beaf2cc..500c189f3 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/saspdrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/saspdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/scsictl.pm b/src/hardware/server/hp/proliant/snmp/mode/components/scsictl.pm index 42acfd5a2..f0cb5fc7c 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/scsictl.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/scsictl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/scsildrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/scsildrive.pm index e8aa067f6..abee54ed4 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/scsildrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/scsildrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/scsipdrive.pm b/src/hardware/server/hp/proliant/snmp/mode/components/scsipdrive.pm index 10660e46f..b02ee1baf 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/scsipdrive.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/scsipdrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/components/temperature.pm b/src/hardware/server/hp/proliant/snmp/mode/components/temperature.pm index c763874b0..1349eef63 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/components/temperature.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/globalstatus.pm b/src/hardware/server/hp/proliant/snmp/mode/globalstatus.pm index 90267c8b7..945fb0b9e 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/globalstatus.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/mode/hardware.pm b/src/hardware/server/hp/proliant/snmp/mode/hardware.pm index c77eb5db4..9807610a8 100644 --- a/src/hardware/server/hp/proliant/snmp/mode/hardware.pm +++ b/src/hardware/server/hp/proliant/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/hp/proliant/snmp/plugin.pm b/src/hardware/server/hp/proliant/snmp/plugin.pm index ff069a5c8..340f8d32d 100644 --- a/src/hardware/server/hp/proliant/snmp/plugin.pm +++ b/src/hardware/server/hp/proliant/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/blade.pm b/src/hardware/server/huawei/hmm/snmp/mode/blade.pm index cb6f549e9..be7af5391 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/blade.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/blade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/chassis.pm b/src/hardware/server/huawei/hmm/snmp/mode/chassis.pm index 2389d58c5..34b8bc7ce 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/chassis.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/blade.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/blade.pm index 823bdf8ec..77397f7c3 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/blade.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/blade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/cpu.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/cpu.pm index ad9672ab5..245d75897 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/cpu.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/disk.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/disk.pm index f6c3eb98b..3d0ac11a5 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/disk.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/fan.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/fan.pm index f360600dc..2d3485971 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/fan.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/memory.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/memory.pm index 8ba37377f..7d0c1f6c4 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/memory.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/mezz.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/mezz.pm index 5f066a925..0b10e5cfc 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/mezz.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/mezz.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/psu.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/psu.pm index 3841b8c0c..1ec6b5622 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/psu.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/raidcontroller.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/raidcontroller.pm index e5a82cf19..60614c2a0 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/raidcontroller.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/raidcontroller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/switch.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/switch.pm index 67f6c5962..042d851e5 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/switch.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/switch.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/mode/components/temperature.pm b/src/hardware/server/huawei/hmm/snmp/mode/components/temperature.pm index e1659ab4b..98af4a606 100644 --- a/src/hardware/server/huawei/hmm/snmp/mode/components/temperature.pm +++ b/src/hardware/server/huawei/hmm/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/hmm/snmp/plugin.pm b/src/hardware/server/huawei/hmm/snmp/plugin.pm index 9056cb53a..d9a774911 100644 --- a/src/hardware/server/huawei/hmm/snmp/plugin.pm +++ b/src/hardware/server/huawei/hmm/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/component.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/component.pm index f02b762a8..640be1913 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/component.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/component.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/cpu.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/cpu.pm index 1ca36bc64..54a8b7706 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/cpu.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/fan.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/fan.pm index 5d633d22e..3520f17f6 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/fan.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/harddisk.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/harddisk.pm index 5f0170bd4..76ddd224d 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/harddisk.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/harddisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/logicaldrive.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/logicaldrive.pm index 08b9fec22..e31422fa3 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/logicaldrive.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/logicaldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/memory.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/memory.pm index 09a18829a..2f179d9f5 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/memory.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/pcie.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/pcie.pm index 192055ac7..86308a56d 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/pcie.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/pcie.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/psu.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/psu.pm index 4b05668ef..3137a4a0a 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/psu.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/raidcontroller.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/raidcontroller.pm index a0e0f0f24..20fd3d889 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/raidcontroller.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/raidcontroller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/components/temperature.pm b/src/hardware/server/huawei/ibmc/snmp/mode/components/temperature.pm index 18fa6a347..8dc124972 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/components/temperature.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/mode/hardware.pm b/src/hardware/server/huawei/ibmc/snmp/mode/hardware.pm index 2c35757e9..64bfdf4b0 100644 --- a/src/hardware/server/huawei/ibmc/snmp/mode/hardware.pm +++ b/src/hardware/server/huawei/ibmc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/huawei/ibmc/snmp/plugin.pm b/src/hardware/server/huawei/ibmc/snmp/plugin.pm index 5dd129bb4..7ac4ebe65 100644 --- a/src/hardware/server/huawei/ibmc/snmp/plugin.pm +++ b/src/hardware/server/huawei/ibmc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/ambient.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/ambient.pm index c6490dfef..8919eb45f 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/ambient.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/ambient.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/blade.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/blade.pm index 1c046c847..0d609f732 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/blade.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/blade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/blower.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/blower.pm index 7dac12955..3b23e7095 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/blower.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/blower.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisfan.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisfan.pm index 80079d198..3fc0ada1b 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisfan.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisfan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisstatus.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisstatus.pm index 9033598b7..d8fbc7324 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisstatus.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/chassisstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/fanpack.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/fanpack.pm index aa4c06f74..217a1375d 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/fanpack.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/fanpack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/powermodule.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/powermodule.pm index e423adc24..bff747e60 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/powermodule.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/powermodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/switchmodule.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/switchmodule.pm index 3f1bacb49..f2439ea93 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/switchmodule.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/switchmodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/components/systemhealth.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/components/systemhealth.pm index ceb8f06c1..f63f43952 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/components/systemhealth.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/components/systemhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/mode/hardware.pm b/src/hardware/server/ibm/bladecenter/snmp/mode/hardware.pm index 59e454450..36ebd8b0a 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/mode/hardware.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/bladecenter/snmp/plugin.pm b/src/hardware/server/ibm/bladecenter/snmp/plugin.pm index 75eba3f70..5fc42a327 100644 --- a/src/hardware/server/ibm/bladecenter/snmp/plugin.pm +++ b/src/hardware/server/ibm/bladecenter/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/hmc/ssh/mode/hardwareerrors.pm b/src/hardware/server/ibm/hmc/ssh/mode/hardwareerrors.pm index 2995a3236..579f391e0 100644 --- a/src/hardware/server/ibm/hmc/ssh/mode/hardwareerrors.pm +++ b/src/hardware/server/ibm/hmc/ssh/mode/hardwareerrors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/hmc/ssh/mode/ledstatus.pm b/src/hardware/server/ibm/hmc/ssh/mode/ledstatus.pm index ea0105cc1..b3fb7ec5a 100644 --- a/src/hardware/server/ibm/hmc/ssh/mode/ledstatus.pm +++ b/src/hardware/server/ibm/hmc/ssh/mode/ledstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/hmc/ssh/plugin.pm b/src/hardware/server/ibm/hmc/ssh/plugin.pm index 2589cb55c..01750652f 100644 --- a/src/hardware/server/ibm/hmc/ssh/plugin.pm +++ b/src/hardware/server/ibm/hmc/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/cpu.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/cpu.pm index 379f8b81e..50e96d4f8 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/cpu.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/disk.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/disk.pm index 8cb01bcb8..2e362fd80 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/disk.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/fan.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/fan.pm index 779a55fcb..21d3c0c6a 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/fan.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/global.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/global.pm index 8e0c73de7..1b104cd49 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/global.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/global.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/memory.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/memory.pm index 9f672d6a8..72a8fc5ba 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/memory.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/power.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/power.pm index f062a1e71..1f56ee2fb 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/power.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/power.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/temperature.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/temperature.pm index 53757f50b..1484684c1 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/temperature.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/voltage.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/voltage.pm index 931082bda..01f4ef4dd 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/voltage.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/environment.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/environment.pm index b329090e6..402e53def 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/environment.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/eventlog.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/eventlog.pm index 387ff7081..4d360f432 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/eventlog.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/mode/eventlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/ibm/mgmt_cards/imm/snmp/plugin.pm b/src/hardware/server/ibm/mgmt_cards/imm/snmp/plugin.pm index e898d4bd5..649546f96 100644 --- a/src/hardware/server/ibm/mgmt_cards/imm/snmp/plugin.pm +++ b/src/hardware/server/ibm/mgmt_cards/imm/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/components/disk.pm b/src/hardware/server/lenovo/xcc/snmp/mode/components/disk.pm index 4119aac70..1ae76a823 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/components/disk.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/components/fan.pm b/src/hardware/server/lenovo/xcc/snmp/mode/components/fan.pm index 7807a7591..0870d1e39 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/components/fan.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/components/psu.pm b/src/hardware/server/lenovo/xcc/snmp/mode/components/psu.pm index d157bf7c5..603007d2f 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/components/psu.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/components/raidvolume.pm b/src/hardware/server/lenovo/xcc/snmp/mode/components/raidvolume.pm index e2e32614f..591626b62 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/components/raidvolume.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/components/raidvolume.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/components/temperature.pm b/src/hardware/server/lenovo/xcc/snmp/mode/components/temperature.pm index 06d90fe4f..694640d83 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/components/temperature.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/components/voltage.pm b/src/hardware/server/lenovo/xcc/snmp/mode/components/voltage.pm index a03a6ea89..1ef732e7a 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/components/voltage.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/mode/hardware.pm b/src/hardware/server/lenovo/xcc/snmp/mode/hardware.pm index 363bb44be..b803e6fc4 100644 --- a/src/hardware/server/lenovo/xcc/snmp/mode/hardware.pm +++ b/src/hardware/server/lenovo/xcc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/lenovo/xcc/snmp/plugin.pm b/src/hardware/server/lenovo/xcc/snmp/plugin.pm index 769df1730..434729910 100644 --- a/src/hardware/server/lenovo/xcc/snmp/plugin.pm +++ b/src/hardware/server/lenovo/xcc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/disk.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/disk.pm index 5e9e02193..0f0d56a7f 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/disk.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/fan.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/fan.pm index d28e68d04..dc08ea823 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/fan.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/psu.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/psu.pm index ed317b9b8..2c08acfbc 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/psu.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/sensors.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/sensors.pm index 65208cf08..908d5eb77 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/sensors.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/si.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/si.pm index 3fd38bc32..054f23b3a 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/si.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/si.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/temperature.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/temperature.pm index 38ba94c43..696c137d3 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/temperature.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/components/showenvironment/voltage.pm b/src/hardware/server/sun/mgmt_cards/components/showenvironment/voltage.pm index 7fa3c36f8..3310de03b 100644 --- a/src/hardware/server/sun/mgmt_cards/components/showenvironment/voltage.pm +++ b/src/hardware/server/sun/mgmt_cards/components/showenvironment/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/lib/telnet.pm b/src/hardware/server/sun/mgmt_cards/lib/telnet.pm index ef66a1e5d..aa345c0ca 100644 --- a/src/hardware/server/sun/mgmt_cards/lib/telnet.pm +++ b/src/hardware/server/sun/mgmt_cards/lib/telnet.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/environmentsf2xx.pm b/src/hardware/server/sun/mgmt_cards/mode/environmentsf2xx.pm index 32433a697..4ef44c9aa 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/environmentsf2xx.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/environmentsf2xx.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/environmentv4xx.pm b/src/hardware/server/sun/mgmt_cards/mode/environmentv4xx.pm index 872f4733e..54e87a3a3 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/environmentv4xx.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/environmentv4xx.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/environmentv8xx.pm b/src/hardware/server/sun/mgmt_cards/mode/environmentv8xx.pm index ae470792b..f5d3e03b6 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/environmentv8xx.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/environmentv8xx.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/showboards.pm b/src/hardware/server/sun/mgmt_cards/mode/showboards.pm index b4d7f601d..669e812d2 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/showboards.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/showboards.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/showenvironment.pm b/src/hardware/server/sun/mgmt_cards/mode/showenvironment.pm index f02554188..28534b027 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/showenvironment.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/showenvironment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/showfaults.pm b/src/hardware/server/sun/mgmt_cards/mode/showfaults.pm index b5e1d27e0..c34656f39 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/showfaults.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/showfaults.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/showfaulty.pm b/src/hardware/server/sun/mgmt_cards/mode/showfaulty.pm index 81acbca91..40f7faf68 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/showfaulty.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/showfaulty.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/mode/showstatus.pm b/src/hardware/server/sun/mgmt_cards/mode/showstatus.pm index 183a78cda..05fbef46d 100644 --- a/src/hardware/server/sun/mgmt_cards/mode/showstatus.pm +++ b/src/hardware/server/sun/mgmt_cards/mode/showstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mgmt_cards/plugin.pm b/src/hardware/server/sun/mgmt_cards/plugin.pm index e4b603f69..68fe3c6c6 100644 --- a/src/hardware/server/sun/mgmt_cards/plugin.pm +++ b/src/hardware/server/sun/mgmt_cards/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mseries/mode/domains.pm b/src/hardware/server/sun/mseries/mode/domains.pm index f603e58d0..771965402 100644 --- a/src/hardware/server/sun/mseries/mode/domains.pm +++ b/src/hardware/server/sun/mseries/mode/domains.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mseries/mode/hardware.pm b/src/hardware/server/sun/mseries/mode/hardware.pm index 7d6a19127..1dba8e928 100644 --- a/src/hardware/server/sun/mseries/mode/hardware.pm +++ b/src/hardware/server/sun/mseries/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/mseries/plugin.pm b/src/hardware/server/sun/mseries/plugin.pm index 512e2f7fc..9c5f32bc3 100644 --- a/src/hardware/server/sun/mseries/plugin.pm +++ b/src/hardware/server/sun/mseries/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/sfxxk/mode/boards.pm b/src/hardware/server/sun/sfxxk/mode/boards.pm index 2c3eb8018..85ffe80cd 100644 --- a/src/hardware/server/sun/sfxxk/mode/boards.pm +++ b/src/hardware/server/sun/sfxxk/mode/boards.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/sfxxk/mode/environment.pm b/src/hardware/server/sun/sfxxk/mode/environment.pm index ef829aefb..dc5fc6763 100644 --- a/src/hardware/server/sun/sfxxk/mode/environment.pm +++ b/src/hardware/server/sun/sfxxk/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/sfxxk/mode/failover.pm b/src/hardware/server/sun/sfxxk/mode/failover.pm index ff4d11771..a24931a9b 100644 --- a/src/hardware/server/sun/sfxxk/mode/failover.pm +++ b/src/hardware/server/sun/sfxxk/mode/failover.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/sfxxk/plugin.pm b/src/hardware/server/sun/sfxxk/plugin.pm index a0f4f04c9..91410630b 100644 --- a/src/hardware/server/sun/sfxxk/plugin.pm +++ b/src/hardware/server/sun/sfxxk/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/sun/snmp/plugin.pm b/src/hardware/server/sun/snmp/plugin.pm index f0f19a276..994100d42 100644 --- a/src/hardware/server/sun/snmp/plugin.pm +++ b/src/hardware/server/sun/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/supermicro/bmc/snmp/mode/hardware.pm b/src/hardware/server/supermicro/bmc/snmp/mode/hardware.pm index 881fbc0df..0d3ba29e0 100644 --- a/src/hardware/server/supermicro/bmc/snmp/mode/hardware.pm +++ b/src/hardware/server/supermicro/bmc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/supermicro/bmc/snmp/plugin.pm b/src/hardware/server/supermicro/bmc/snmp/plugin.pm index 559ba2f77..d3bf0a6b5 100644 --- a/src/hardware/server/supermicro/bmc/snmp/plugin.pm +++ b/src/hardware/server/supermicro/bmc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/supermicro/superdoctor/snmp/mode/hardware.pm b/src/hardware/server/supermicro/superdoctor/snmp/mode/hardware.pm index 22dccf0df..dda960eee 100644 --- a/src/hardware/server/supermicro/superdoctor/snmp/mode/hardware.pm +++ b/src/hardware/server/supermicro/superdoctor/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/supermicro/superdoctor/snmp/plugin.pm b/src/hardware/server/supermicro/superdoctor/snmp/plugin.pm index e5372e76c..41c20eaec 100644 --- a/src/hardware/server/supermicro/superdoctor/snmp/plugin.pm +++ b/src/hardware/server/supermicro/superdoctor/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/component.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/component.pm index 037961b5d..372d01b89 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/component.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/component.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/cpu.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/cpu.pm index 7eb0871f4..b12fa9fab 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/cpu.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/fan.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/fan.pm index 72c19172d..093f7479a 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/fan.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/harddisk.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/harddisk.pm index 778215d32..333365bed 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/harddisk.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/harddisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/logicaldrive.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/logicaldrive.pm index fefa98a71..745184e7c 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/logicaldrive.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/logicaldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/memory.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/memory.pm index 0b238b612..a22d7bce5 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/memory.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/pcie.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/pcie.pm index 5c4d2fe33..5a314b027 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/pcie.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/pcie.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/psu.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/psu.pm index 2ac8dc979..ca4224a78 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/psu.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/raidcontroller.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/raidcontroller.pm index a672655de..fc94f5c6e 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/raidcontroller.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/raidcontroller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/components/temperature.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/components/temperature.pm index e4ada4786..7935b262f 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/components/temperature.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/mode/hardware.pm b/src/hardware/server/xfusion/ibmc/snmp/mode/hardware.pm index c8a871bb4..3bea779ec 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/mode/hardware.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/server/xfusion/ibmc/snmp/plugin.pm b/src/hardware/server/xfusion/ibmc/snmp/plugin.pm index 076aa4833..0f783ace3 100644 --- a/src/hardware/server/xfusion/ibmc/snmp/plugin.pm +++ b/src/hardware/server/xfusion/ibmc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/aes/snmp/mode/services.pm b/src/hardware/telephony/avaya/aes/snmp/mode/services.pm index 632da9130..adefff2e5 100644 --- a/src/hardware/telephony/avaya/aes/snmp/mode/services.pm +++ b/src/hardware/telephony/avaya/aes/snmp/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/aes/snmp/plugin.pm b/src/hardware/telephony/avaya/aes/snmp/plugin.pm index f538d7ef2..933cfc1b9 100644 --- a/src/hardware/telephony/avaya/aes/snmp/plugin.pm +++ b/src/hardware/telephony/avaya/aes/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/cm/snmp/mode/calls.pm b/src/hardware/telephony/avaya/cm/snmp/mode/calls.pm index 55db18e4a..de60fffea 100644 --- a/src/hardware/telephony/avaya/cm/snmp/mode/calls.pm +++ b/src/hardware/telephony/avaya/cm/snmp/mode/calls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/cm/snmp/mode/licenses.pm b/src/hardware/telephony/avaya/cm/snmp/mode/licenses.pm index 1b482ca67..c7e8fcc02 100644 --- a/src/hardware/telephony/avaya/cm/snmp/mode/licenses.pm +++ b/src/hardware/telephony/avaya/cm/snmp/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/cm/snmp/mode/trunks.pm b/src/hardware/telephony/avaya/cm/snmp/mode/trunks.pm index c661b0504..fe8bb97e3 100644 --- a/src/hardware/telephony/avaya/cm/snmp/mode/trunks.pm +++ b/src/hardware/telephony/avaya/cm/snmp/mode/trunks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/cm/snmp/plugin.pm b/src/hardware/telephony/avaya/cm/snmp/plugin.pm index 7fbf61241..c16c6cbad 100644 --- a/src/hardware/telephony/avaya/cm/snmp/plugin.pm +++ b/src/hardware/telephony/avaya/cm/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/mediagateway/snmp/mode/components/alarm.pm b/src/hardware/telephony/avaya/mediagateway/snmp/mode/components/alarm.pm index e89640dd0..9afadbd22 100644 --- a/src/hardware/telephony/avaya/mediagateway/snmp/mode/components/alarm.pm +++ b/src/hardware/telephony/avaya/mediagateway/snmp/mode/components/alarm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/mediagateway/snmp/mode/controllerstatus.pm b/src/hardware/telephony/avaya/mediagateway/snmp/mode/controllerstatus.pm index 0ad918a64..ca0dce3cf 100644 --- a/src/hardware/telephony/avaya/mediagateway/snmp/mode/controllerstatus.pm +++ b/src/hardware/telephony/avaya/mediagateway/snmp/mode/controllerstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/mediagateway/snmp/mode/hardware.pm b/src/hardware/telephony/avaya/mediagateway/snmp/mode/hardware.pm index 9f099184b..04bff7d71 100644 --- a/src/hardware/telephony/avaya/mediagateway/snmp/mode/hardware.pm +++ b/src/hardware/telephony/avaya/mediagateway/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/telephony/avaya/mediagateway/snmp/plugin.pm b/src/hardware/telephony/avaya/mediagateway/snmp/plugin.pm index 307508a56..79a9039cc 100644 --- a/src/hardware/telephony/avaya/mediagateway/snmp/plugin.pm +++ b/src/hardware/telephony/avaya/mediagateway/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/alpha/snmp/mode/alarms.pm b/src/hardware/ups/alpha/snmp/mode/alarms.pm index 1dc301420..6881292d4 100644 --- a/src/hardware/ups/alpha/snmp/mode/alarms.pm +++ b/src/hardware/ups/alpha/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/alpha/snmp/mode/batterystatus.pm b/src/hardware/ups/alpha/snmp/mode/batterystatus.pm index 99251cd9c..5296e2ec7 100644 --- a/src/hardware/ups/alpha/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/alpha/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/apc/snmp/mode/batterystatus.pm b/src/hardware/ups/apc/snmp/mode/batterystatus.pm index f55c33d64..cd85d9840 100644 --- a/src/hardware/ups/apc/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/apc/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/apc/snmp/mode/inputlines.pm b/src/hardware/ups/apc/snmp/mode/inputlines.pm index d21a7ffa4..54d3dc493 100644 --- a/src/hardware/ups/apc/snmp/mode/inputlines.pm +++ b/src/hardware/ups/apc/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/apc/snmp/mode/ntp.pm b/src/hardware/ups/apc/snmp/mode/ntp.pm index f19aaf29e..26fa8d658 100644 --- a/src/hardware/ups/apc/snmp/mode/ntp.pm +++ b/src/hardware/ups/apc/snmp/mode/ntp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/apc/snmp/mode/outputlines.pm b/src/hardware/ups/apc/snmp/mode/outputlines.pm index 50bd441b6..2320f6e60 100644 --- a/src/hardware/ups/apc/snmp/mode/outputlines.pm +++ b/src/hardware/ups/apc/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/apc/snmp/mode/sensors.pm b/src/hardware/ups/apc/snmp/mode/sensors.pm index 2b9adc25c..0cacce02a 100644 --- a/src/hardware/ups/apc/snmp/mode/sensors.pm +++ b/src/hardware/ups/apc/snmp/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/apc/snmp/mode/uptime.pm b/src/hardware/ups/apc/snmp/mode/uptime.pm index 57390638c..3c9f6dcf7 100644 --- a/src/hardware/ups/apc/snmp/mode/uptime.pm +++ b/src/hardware/ups/apc/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/mode/battery.pm b/src/hardware/ups/ees/snmp/mode/battery.pm index 1d5a4d4ad..da86fc171 100644 --- a/src/hardware/ups/ees/snmp/mode/battery.pm +++ b/src/hardware/ups/ees/snmp/mode/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/mode/input.pm b/src/hardware/ups/ees/snmp/mode/input.pm index 57c68e461..5be817184 100644 --- a/src/hardware/ups/ees/snmp/mode/input.pm +++ b/src/hardware/ups/ees/snmp/mode/input.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/mode/rectifier.pm b/src/hardware/ups/ees/snmp/mode/rectifier.pm index 768f48fd9..3111592b3 100644 --- a/src/hardware/ups/ees/snmp/mode/rectifier.pm +++ b/src/hardware/ups/ees/snmp/mode/rectifier.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/mode/system.pm b/src/hardware/ups/ees/snmp/mode/system.pm index 883d741ab..8a42b7c02 100644 --- a/src/hardware/ups/ees/snmp/mode/system.pm +++ b/src/hardware/ups/ees/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/mode/temperature.pm b/src/hardware/ups/ees/snmp/mode/temperature.pm index e5addbc96..2d8ba426f 100644 --- a/src/hardware/ups/ees/snmp/mode/temperature.pm +++ b/src/hardware/ups/ees/snmp/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/mode/uptime.pm b/src/hardware/ups/ees/snmp/mode/uptime.pm index 765899541..3d613eae2 100644 --- a/src/hardware/ups/ees/snmp/mode/uptime.pm +++ b/src/hardware/ups/ees/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/ees/snmp/plugin.pm b/src/hardware/ups/ees/snmp/plugin.pm index a336c6cfa..260fb1037 100644 --- a/src/hardware/ups/ees/snmp/plugin.pm +++ b/src/hardware/ups/ees/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/himoinsa/snmp/mode/frequency.pm b/src/hardware/ups/himoinsa/snmp/mode/frequency.pm index 64b417f25..9e564e72d 100644 --- a/src/hardware/ups/himoinsa/snmp/mode/frequency.pm +++ b/src/hardware/ups/himoinsa/snmp/mode/frequency.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/himoinsa/snmp/mode/fuellevel.pm b/src/hardware/ups/himoinsa/snmp/mode/fuellevel.pm index 6e61a8948..3d2a1592a 100644 --- a/src/hardware/ups/himoinsa/snmp/mode/fuellevel.pm +++ b/src/hardware/ups/himoinsa/snmp/mode/fuellevel.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/himoinsa/snmp/mode/phase.pm b/src/hardware/ups/himoinsa/snmp/mode/phase.pm index 668752207..7fd5d6c41 100644 --- a/src/hardware/ups/himoinsa/snmp/mode/phase.pm +++ b/src/hardware/ups/himoinsa/snmp/mode/phase.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/himoinsa/snmp/mode/status.pm b/src/hardware/ups/himoinsa/snmp/mode/status.pm index 50f5cc108..53720837f 100644 --- a/src/hardware/ups/himoinsa/snmp/mode/status.pm +++ b/src/hardware/ups/himoinsa/snmp/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/himoinsa/snmp/mode/uptime.pm b/src/hardware/ups/himoinsa/snmp/mode/uptime.pm index f163d2c30..0c4f6ccc6 100644 --- a/src/hardware/ups/himoinsa/snmp/mode/uptime.pm +++ b/src/hardware/ups/himoinsa/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/himoinsa/snmp/mode/voltage.pm b/src/hardware/ups/himoinsa/snmp/mode/voltage.pm index ff9089dd7..72b6d7952 100644 --- a/src/hardware/ups/himoinsa/snmp/mode/voltage.pm +++ b/src/hardware/ups/himoinsa/snmp/mode/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/hp/snmp/mode/batterystatus.pm b/src/hardware/ups/hp/snmp/mode/batterystatus.pm index b914b353c..11133c884 100644 --- a/src/hardware/ups/hp/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/hp/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/hp/snmp/mode/environment.pm b/src/hardware/ups/hp/snmp/mode/environment.pm index ccfd3d23f..d9d9701ec 100644 --- a/src/hardware/ups/hp/snmp/mode/environment.pm +++ b/src/hardware/ups/hp/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/hp/snmp/mode/inputlines.pm b/src/hardware/ups/hp/snmp/mode/inputlines.pm index d948ca436..7452decce 100644 --- a/src/hardware/ups/hp/snmp/mode/inputlines.pm +++ b/src/hardware/ups/hp/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/hp/snmp/mode/outputlines.pm b/src/hardware/ups/hp/snmp/mode/outputlines.pm index 38ea5c00e..dcf9229ac 100644 --- a/src/hardware/ups/hp/snmp/mode/outputlines.pm +++ b/src/hardware/ups/hp/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/hp/snmp/mode/time.pm b/src/hardware/ups/hp/snmp/mode/time.pm index ecb9df9ab..5991d4b83 100644 --- a/src/hardware/ups/hp/snmp/mode/time.pm +++ b/src/hardware/ups/hp/snmp/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/hp/snmp/plugin.pm b/src/hardware/ups/hp/snmp/plugin.pm index fb2dc35fe..f78b88457 100644 --- a/src/hardware/ups/hp/snmp/plugin.pm +++ b/src/hardware/ups/hp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/inmatics/sputnik/snmp/mode/environment.pm b/src/hardware/ups/inmatics/sputnik/snmp/mode/environment.pm new file mode 100644 index 000000000..ca0ca148b --- /dev/null +++ b/src/hardware/ups/inmatics/sputnik/snmp/mode/environment.pm @@ -0,0 +1,153 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 hardware::ups::inmatics::sputnik::snmp::mode::environment; + +use base qw(centreon::plugins::templates::counter); + +# Needed libraries +use strict; +use warnings; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + # Declare options + $options{options}->add_options(arguments => { + 'filter-id:s' => { name => 'filter_id' } + }); + + return $self; +} + +sub prefix_sensors_output { + my ($self, %options) = @_; + + return "'" . $options{instance_value}->{display} . "': "; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'sensors', type => 1, cb_prefix_output => 'prefix_sensors_output', message_multiple => 'All sensors are ok' } + ]; + + $self->{maps_counters}->{sensors} = [ + { label => 'temperature', nlabel => 'environment.temperature.celsius', set => { + key_values => [ { name => 'temperature' }, { name => 'display' } ], + output_template => 'temperature %.2f C', + perfdatas => [ + { label => 'temperature', template => '%.2f', unit => 'C', label_extra_instance => 1, instance_use => 'display' } + ] + } + }, + { label => 'humidity', nlabel => 'environment.humidity.percentage', set => { + key_values => [ { name => 'humidity' }, { name => 'display' } ], + output_template => 'humidity %s %%', + perfdatas => [ + { label => 'humidity', template => '%s', min => 0, max => 100, unit => '%', label_extra_instance => 1, instance_use => 'display' } + ] + } + } + ]; +} + +sub manage_selection { + my ($self, %options) = @_; + + # FI: upsEnvSensorCounts is not used but it gives the number of sensors + #my $oid_upsEnvSensorCounts = '.1.3.6.1.4.1.54661.1.1.1.2.1.0'; + my $oid_upsEnvSensors = '.1.3.6.1.4.1.54661.1.1.1.2.2.1'; + # FI: the actual MIB OIDs: + #my $oid_upsEnvSensorTemperature = '.1.3.6.1.4.1.54661.1.1.1.2.2.1.2'; + #my $oid_upsEnvSensorHumidity = '.1.3.6.1.4.1.54661.1.1.1.2.2.1.3'; + + # Each sensor will provide a temperature (in 100th of degrees) and a humidity percentage + my $mapping = { + upsEnvSensorTemperature => { oid => $oid_upsEnvSensors.'.2' }, + upsEnvSensorHumidity => { oid => $oid_upsEnvSensors.'.3' } + }; + my $snmp_result = $options{snmp}->get_table( + oid => $oid_upsEnvSensors, + nothing_quit => 1 + ); + + $self->{sensors} = {}; + foreach my $oid (sort(keys %{$snmp_result})) { + next if ($oid !~ /^$oid_upsEnvSensors\.2\.(.*)$/); + # The index of the sensor will be used in the instance name + my $sensor_index = $1; + + # Skip if a filter is defined and the current sensor does not match + if (defined($self->{option_results}->{filter_id}) && $sensor_index ne '' && $sensor_index !~ /$self->{option_results}->{filter_id}/ ) { + $self->{output}->output_add( + long_msg => "With filter-id: '$self->{option_results}->{filter_id}' - Skipping sensor '$sensor_index'.", + debug => 1 + ); + next; + } + + # Get all the metrics for the current instance + my $result = $options{snmp}->map_instance( + mapping => $mapping, + results => $snmp_result, + instance => $sensor_index + ); + + # The temperature is given multiplied by 100, so we have to divide it by 100 + # cf MIB: UNITS "0.01 degrees Centigrade" + $self->{sensors}->{$sensor_index} = { + display => 'Sensor '.$sensor_index, + temperature => $result->{upsEnvSensorTemperature} / 100, + humidity => $result->{upsEnvSensorHumidity} + }; + } + + # No results is not OK + if (scalar(keys %{$self->{sensors}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No sensors found."); + $self->{output}->option_exit(); + } +} + +1; + +__END__ + +=head1 MODE + +Monitor temperature and humidity using the device's environment sensors. + +=over 8 + +=item B<--warning-*> B<--critical-*> + +Thresholds. Can be: 'humidity' (%), 'temperature' (C). + +=item B<--filter-id> + +Define which sensors should be monitored based on their IDs. This option will be treated as a regular expression. + +=back + +=cut diff --git a/src/hardware/ups/inmatics/sputnik/snmp/plugin.pm b/src/hardware/ups/inmatics/sputnik/snmp/plugin.pm new file mode 100644 index 000000000..33efcdc9c --- /dev/null +++ b/src/hardware/ups/inmatics/sputnik/snmp/plugin.pm @@ -0,0 +1,52 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# 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 hardware::ups::inmatics::sputnik::snmp::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_snmp); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{modes} = { + 'alarms' => 'hardware::ups::standard::rfc1628::snmp::mode::alarms', + 'battery-status' => 'hardware::ups::standard::rfc1628::snmp::mode::batterystatus', + 'environment' => 'hardware::ups::inmatics::sputnik::snmp::mode::environment', + 'input-lines' => 'hardware::ups::standard::rfc1628::snmp::mode::inputlines', + 'output-lines' => 'hardware::ups::standard::rfc1628::snmp::mode::outputlines', + 'output-source' => 'hardware::ups::standard::rfc1628::snmp::mode::outputsource' + }; + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check Sputnik UPS using SNMP. + +=cut diff --git a/src/hardware/ups/mge/snmp/mode/batterystatus.pm b/src/hardware/ups/mge/snmp/mode/batterystatus.pm index 2aff316a6..1007c0d9b 100644 --- a/src/hardware/ups/mge/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/mge/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/mge/snmp/mode/environment.pm b/src/hardware/ups/mge/snmp/mode/environment.pm index bab94b99f..695d7f93e 100644 --- a/src/hardware/ups/mge/snmp/mode/environment.pm +++ b/src/hardware/ups/mge/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/mge/snmp/mode/inputlines.pm b/src/hardware/ups/mge/snmp/mode/inputlines.pm index d5ed72342..5613df010 100644 --- a/src/hardware/ups/mge/snmp/mode/inputlines.pm +++ b/src/hardware/ups/mge/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/mge/snmp/mode/outputlines.pm b/src/hardware/ups/mge/snmp/mode/outputlines.pm index 6fca2fcd4..38fdbf6dc 100644 --- a/src/hardware/ups/mge/snmp/mode/outputlines.pm +++ b/src/hardware/ups/mge/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/mge/snmp/mode/outputsource.pm b/src/hardware/ups/mge/snmp/mode/outputsource.pm index 703bc0637..20c1e0ada 100644 --- a/src/hardware/ups/mge/snmp/mode/outputsource.pm +++ b/src/hardware/ups/mge/snmp/mode/outputsource.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/mge/snmp/plugin.pm b/src/hardware/ups/mge/snmp/plugin.pm index d56a400f2..92cda7bd5 100644 --- a/src/hardware/ups/mge/snmp/plugin.pm +++ b/src/hardware/ups/mge/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/phoenixtec/snmp/plugin.pm b/src/hardware/ups/phoenixtec/snmp/plugin.pm index 6c7cae2f9..01dc66a83 100644 --- a/src/hardware/ups/phoenixtec/snmp/plugin.pm +++ b/src/hardware/ups/phoenixtec/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/mode/alarms.pm b/src/hardware/ups/powerware/snmp/mode/alarms.pm index aee1e5b33..2e2001c7b 100644 --- a/src/hardware/ups/powerware/snmp/mode/alarms.pm +++ b/src/hardware/ups/powerware/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/mode/batterystatus.pm b/src/hardware/ups/powerware/snmp/mode/batterystatus.pm index a08b7a331..863a7e575 100644 --- a/src/hardware/ups/powerware/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/powerware/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/mode/environment.pm b/src/hardware/ups/powerware/snmp/mode/environment.pm index 22301b601..4ef032dc3 100644 --- a/src/hardware/ups/powerware/snmp/mode/environment.pm +++ b/src/hardware/ups/powerware/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/mode/inputlines.pm b/src/hardware/ups/powerware/snmp/mode/inputlines.pm index 53875c9a0..ceaccb922 100644 --- a/src/hardware/ups/powerware/snmp/mode/inputlines.pm +++ b/src/hardware/ups/powerware/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/mode/outputlines.pm b/src/hardware/ups/powerware/snmp/mode/outputlines.pm index b7e5e4f8f..a1c804a01 100644 --- a/src/hardware/ups/powerware/snmp/mode/outputlines.pm +++ b/src/hardware/ups/powerware/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/mode/outputsource.pm b/src/hardware/ups/powerware/snmp/mode/outputsource.pm index dbab7dcef..c16d0e3a8 100644 --- a/src/hardware/ups/powerware/snmp/mode/outputsource.pm +++ b/src/hardware/ups/powerware/snmp/mode/outputsource.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/powerware/snmp/plugin.pm b/src/hardware/ups/powerware/snmp/plugin.pm index 9e3c9ba72..71e6237f4 100644 --- a/src/hardware/ups/powerware/snmp/plugin.pm +++ b/src/hardware/ups/powerware/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/riello/snmp/mode/alarms.pm b/src/hardware/ups/riello/snmp/mode/alarms.pm index 7327df94b..190067b72 100644 --- a/src/hardware/ups/riello/snmp/mode/alarms.pm +++ b/src/hardware/ups/riello/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/riello/snmp/mode/battery.pm b/src/hardware/ups/riello/snmp/mode/battery.pm index 2f3077772..ce2727f75 100644 --- a/src/hardware/ups/riello/snmp/mode/battery.pm +++ b/src/hardware/ups/riello/snmp/mode/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/riello/snmp/mode/inputlines.pm b/src/hardware/ups/riello/snmp/mode/inputlines.pm index 4604ddd3a..f1a78a455 100644 --- a/src/hardware/ups/riello/snmp/mode/inputlines.pm +++ b/src/hardware/ups/riello/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/riello/snmp/mode/outputlines.pm b/src/hardware/ups/riello/snmp/mode/outputlines.pm index 74cf25385..256674aa1 100644 --- a/src/hardware/ups/riello/snmp/mode/outputlines.pm +++ b/src/hardware/ups/riello/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/riello/snmp/plugin.pm b/src/hardware/ups/riello/snmp/plugin.pm index fc5296904..2a08c7ca6 100644 --- a/src/hardware/ups/riello/snmp/plugin.pm +++ b/src/hardware/ups/riello/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/socomec/netvision/snmp/mode/alarms.pm b/src/hardware/ups/socomec/netvision/snmp/mode/alarms.pm index f70d3cc85..2aea433a8 100644 --- a/src/hardware/ups/socomec/netvision/snmp/mode/alarms.pm +++ b/src/hardware/ups/socomec/netvision/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm b/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm index b0ca9923b..fbb6e8c7b 100644 --- a/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm +++ b/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm b/src/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm index 8834eb5ff..1c40c002e 100644 --- a/src/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm +++ b/src/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm b/src/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm index 101c0c2c9..c8de11aa0 100644 --- a/src/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm +++ b/src/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/socomec/netvision/snmp/plugin.pm b/src/hardware/ups/socomec/netvision/snmp/plugin.pm index 2f3a6b4c9..f3aa924be 100644 --- a/src/hardware/ups/socomec/netvision/snmp/plugin.pm +++ b/src/hardware/ups/socomec/netvision/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/standard/rfc1628/snmp/mode/alarms.pm b/src/hardware/ups/standard/rfc1628/snmp/mode/alarms.pm index 28872df09..c9dcb5c76 100644 --- a/src/hardware/ups/standard/rfc1628/snmp/mode/alarms.pm +++ b/src/hardware/ups/standard/rfc1628/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/standard/rfc1628/snmp/mode/batterystatus.pm b/src/hardware/ups/standard/rfc1628/snmp/mode/batterystatus.pm index 1e1461fd8..bfbb2ee8e 100644 --- a/src/hardware/ups/standard/rfc1628/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/standard/rfc1628/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/standard/rfc1628/snmp/mode/inputlines.pm b/src/hardware/ups/standard/rfc1628/snmp/mode/inputlines.pm index beb92f53d..bbdfad7c4 100644 --- a/src/hardware/ups/standard/rfc1628/snmp/mode/inputlines.pm +++ b/src/hardware/ups/standard/rfc1628/snmp/mode/inputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/standard/rfc1628/snmp/mode/outputlines.pm b/src/hardware/ups/standard/rfc1628/snmp/mode/outputlines.pm index 1c07362df..5bdc01a78 100644 --- a/src/hardware/ups/standard/rfc1628/snmp/mode/outputlines.pm +++ b/src/hardware/ups/standard/rfc1628/snmp/mode/outputlines.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/standard/rfc1628/snmp/mode/outputsource.pm b/src/hardware/ups/standard/rfc1628/snmp/mode/outputsource.pm index b537b314d..9e2bc68da 100644 --- a/src/hardware/ups/standard/rfc1628/snmp/mode/outputsource.pm +++ b/src/hardware/ups/standard/rfc1628/snmp/mode/outputsource.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/hardware/ups/standard/rfc1628/snmp/plugin.pm b/src/hardware/ups/standard/rfc1628/snmp/plugin.pm index 7290c1485..bcaeb5cf3 100644 --- a/src/hardware/ups/standard/rfc1628/snmp/plugin.pm +++ b/src/hardware/ups/standard/rfc1628/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/3com/snmp/mode/components/fan.pm b/src/network/3com/snmp/mode/components/fan.pm index 0822000d7..9facd39a4 100644 --- a/src/network/3com/snmp/mode/components/fan.pm +++ b/src/network/3com/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/3com/snmp/mode/components/psu.pm b/src/network/3com/snmp/mode/components/psu.pm index 3c254708a..e0f647f80 100644 --- a/src/network/3com/snmp/mode/components/psu.pm +++ b/src/network/3com/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/3com/snmp/mode/cpu.pm b/src/network/3com/snmp/mode/cpu.pm index ef52a3e4d..8aeef6953 100644 --- a/src/network/3com/snmp/mode/cpu.pm +++ b/src/network/3com/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -120,7 +120,7 @@ __END__ =head1 MODE -Check cpu usages. +Check CPU usages. =over 8 diff --git a/src/network/3com/snmp/mode/hardware.pm b/src/network/3com/snmp/mode/hardware.pm index 8db47cd1b..599d93742 100644 --- a/src/network/3com/snmp/mode/hardware.pm +++ b/src/network/3com/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/3com/snmp/mode/memory.pm b/src/network/3com/snmp/mode/memory.pm index 17931552b..8e1827923 100644 --- a/src/network/3com/snmp/mode/memory.pm +++ b/src/network/3com/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/3com/snmp/plugin.pm b/src/network/3com/snmp/plugin.pm index ed558aaad..2ae90ce22 100644 --- a/src/network/3com/snmp/plugin.pm +++ b/src/network/3com/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/cpu.pm b/src/network/a10/ax/snmp/mode/cpu.pm index 79cbf425e..b5f8c511f 100644 --- a/src/network/a10/ax/snmp/mode/cpu.pm +++ b/src/network/a10/ax/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/disk.pm b/src/network/a10/ax/snmp/mode/disk.pm index f78c5f3a8..fe8061239 100644 --- a/src/network/a10/ax/snmp/mode/disk.pm +++ b/src/network/a10/ax/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/globalstats.pm b/src/network/a10/ax/snmp/mode/globalstats.pm index cdea02768..d80ac1bfd 100644 --- a/src/network/a10/ax/snmp/mode/globalstats.pm +++ b/src/network/a10/ax/snmp/mode/globalstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/hardware.pm b/src/network/a10/ax/snmp/mode/hardware.pm index 93c748fde..a502c4fb7 100644 --- a/src/network/a10/ax/snmp/mode/hardware.pm +++ b/src/network/a10/ax/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/listvservers.pm b/src/network/a10/ax/snmp/mode/listvservers.pm index 3a2d09649..8003f82bf 100644 --- a/src/network/a10/ax/snmp/mode/listvservers.pm +++ b/src/network/a10/ax/snmp/mode/listvservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/memory.pm b/src/network/a10/ax/snmp/mode/memory.pm index a61e8036c..4be4a6446 100644 --- a/src/network/a10/ax/snmp/mode/memory.pm +++ b/src/network/a10/ax/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/mode/vserverusage.pm b/src/network/a10/ax/snmp/mode/vserverusage.pm index 0021004e9..26e34f4c3 100644 --- a/src/network/a10/ax/snmp/mode/vserverusage.pm +++ b/src/network/a10/ax/snmp/mode/vserverusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/a10/ax/snmp/plugin.pm b/src/network/a10/ax/snmp/plugin.pm index dd18df1f2..edb46a040 100644 --- a/src/network/a10/ax/snmp/plugin.pm +++ b/src/network/a10/ax/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/codec.pm b/src/network/acmepacket/snmp/mode/codec.pm index 0264e8597..3d4c3c2dd 100644 --- a/src/network/acmepacket/snmp/mode/codec.pm +++ b/src/network/acmepacket/snmp/mode/codec.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/components/fan.pm b/src/network/acmepacket/snmp/mode/components/fan.pm index 5d3a585b0..4940df7af 100644 --- a/src/network/acmepacket/snmp/mode/components/fan.pm +++ b/src/network/acmepacket/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/components/psu.pm b/src/network/acmepacket/snmp/mode/components/psu.pm index 492735364..30c9bf211 100644 --- a/src/network/acmepacket/snmp/mode/components/psu.pm +++ b/src/network/acmepacket/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/components/resources.pm b/src/network/acmepacket/snmp/mode/components/resources.pm index 4f2f0c08f..985bc456b 100644 --- a/src/network/acmepacket/snmp/mode/components/resources.pm +++ b/src/network/acmepacket/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/components/temperature.pm b/src/network/acmepacket/snmp/mode/components/temperature.pm index 3ce33aa00..ee32b8b1e 100644 --- a/src/network/acmepacket/snmp/mode/components/temperature.pm +++ b/src/network/acmepacket/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/components/voltage.pm b/src/network/acmepacket/snmp/mode/components/voltage.pm index ab26f7fd1..8d6973189 100644 --- a/src/network/acmepacket/snmp/mode/components/voltage.pm +++ b/src/network/acmepacket/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/hardware.pm b/src/network/acmepacket/snmp/mode/hardware.pm index 66a465b45..af755a146 100644 --- a/src/network/acmepacket/snmp/mode/hardware.pm +++ b/src/network/acmepacket/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/listpolicyservers.pm b/src/network/acmepacket/snmp/mode/listpolicyservers.pm index ca751e0d7..7f4f29210 100644 --- a/src/network/acmepacket/snmp/mode/listpolicyservers.pm +++ b/src/network/acmepacket/snmp/mode/listpolicyservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/listrealm.pm b/src/network/acmepacket/snmp/mode/listrealm.pm index afb9ac60c..63c68189d 100644 --- a/src/network/acmepacket/snmp/mode/listrealm.pm +++ b/src/network/acmepacket/snmp/mode/listrealm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/listsip.pm b/src/network/acmepacket/snmp/mode/listsip.pm index 2a77dbbaf..09766ed07 100644 --- a/src/network/acmepacket/snmp/mode/listsip.pm +++ b/src/network/acmepacket/snmp/mode/listsip.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/policyservers.pm b/src/network/acmepacket/snmp/mode/policyservers.pm index 4c1312ae2..f0b7d7719 100644 --- a/src/network/acmepacket/snmp/mode/policyservers.pm +++ b/src/network/acmepacket/snmp/mode/policyservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/realmusage.pm b/src/network/acmepacket/snmp/mode/realmusage.pm index ae5a457bf..5fa6e7351 100644 --- a/src/network/acmepacket/snmp/mode/realmusage.pm +++ b/src/network/acmepacket/snmp/mode/realmusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/security.pm b/src/network/acmepacket/snmp/mode/security.pm index a86d9cb33..8cdc216a9 100644 --- a/src/network/acmepacket/snmp/mode/security.pm +++ b/src/network/acmepacket/snmp/mode/security.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/sipusage.pm b/src/network/acmepacket/snmp/mode/sipusage.pm index e6ffe6691..b5552e788 100644 --- a/src/network/acmepacket/snmp/mode/sipusage.pm +++ b/src/network/acmepacket/snmp/mode/sipusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/mode/systemusage.pm b/src/network/acmepacket/snmp/mode/systemusage.pm index b0d2fac59..1d7dc08f9 100644 --- a/src/network/acmepacket/snmp/mode/systemusage.pm +++ b/src/network/acmepacket/snmp/mode/systemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/acmepacket/snmp/plugin.pm b/src/network/acmepacket/snmp/plugin.pm index 8a2b0b45f..93c3f811f 100644 --- a/src/network/acmepacket/snmp/plugin.pm +++ b/src/network/acmepacket/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/mode/alarms.pm b/src/network/adva/fsp150/snmp/mode/alarms.pm index 904fc91a2..0065875b3 100644 --- a/src/network/adva/fsp150/snmp/mode/alarms.pm +++ b/src/network/adva/fsp150/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/mode/components/card.pm b/src/network/adva/fsp150/snmp/mode/components/card.pm index 4acebe995..5e0702e35 100644 --- a/src/network/adva/fsp150/snmp/mode/components/card.pm +++ b/src/network/adva/fsp150/snmp/mode/components/card.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/mode/components/resources.pm b/src/network/adva/fsp150/snmp/mode/components/resources.pm index 34cca7ec1..620c0b2a6 100644 --- a/src/network/adva/fsp150/snmp/mode/components/resources.pm +++ b/src/network/adva/fsp150/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/mode/components/shelf.pm b/src/network/adva/fsp150/snmp/mode/components/shelf.pm index 279def7b7..a504e1bd6 100644 --- a/src/network/adva/fsp150/snmp/mode/components/shelf.pm +++ b/src/network/adva/fsp150/snmp/mode/components/shelf.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/mode/hardware.pm b/src/network/adva/fsp150/snmp/mode/hardware.pm index 346c5fec3..6940f2287 100644 --- a/src/network/adva/fsp150/snmp/mode/hardware.pm +++ b/src/network/adva/fsp150/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/mode/systems.pm b/src/network/adva/fsp150/snmp/mode/systems.pm index ad47dfbe7..0c84fc53e 100644 --- a/src/network/adva/fsp150/snmp/mode/systems.pm +++ b/src/network/adva/fsp150/snmp/mode/systems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp150/snmp/plugin.pm b/src/network/adva/fsp150/snmp/plugin.pm index 3984ccb66..4b1ae0cfa 100644 --- a/src/network/adva/fsp150/snmp/plugin.pm +++ b/src/network/adva/fsp150/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp3000/snmp/mode/alarms.pm b/src/network/adva/fsp3000/snmp/mode/alarms.pm index 4b9e4dd95..25ac6246d 100644 --- a/src/network/adva/fsp3000/snmp/mode/alarms.pm +++ b/src/network/adva/fsp3000/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp3000/snmp/mode/interfaces.pm b/src/network/adva/fsp3000/snmp/mode/interfaces.pm index 9750b74c2..2e51fc26f 100644 --- a/src/network/adva/fsp3000/snmp/mode/interfaces.pm +++ b/src/network/adva/fsp3000/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -383,7 +383,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/adva/fsp3000/snmp/mode/listinterfaces.pm b/src/network/adva/fsp3000/snmp/mode/listinterfaces.pm index da4ea8265..b2495cf3e 100644 --- a/src/network/adva/fsp3000/snmp/mode/listinterfaces.pm +++ b/src/network/adva/fsp3000/snmp/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/adva/fsp3000/snmp/plugin.pm b/src/network/adva/fsp3000/snmp/plugin.pm index 17b60816e..2789e5e6c 100644 --- a/src/network/adva/fsp3000/snmp/plugin.pm +++ b/src/network/adva/fsp3000/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aerohive/snmp/mode/connectedusers.pm b/src/network/aerohive/snmp/mode/connectedusers.pm index 095107d8c..1a8b2c2ec 100644 --- a/src/network/aerohive/snmp/mode/connectedusers.pm +++ b/src/network/aerohive/snmp/mode/connectedusers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aerohive/snmp/plugin.pm b/src/network/aerohive/snmp/plugin.pm index 40cdaf62a..ec43b634f 100644 --- a/src/network/aerohive/snmp/plugin.pm +++ b/src/network/aerohive/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/components/cardtemperature.pm b/src/network/alcatel/isam/snmp/mode/components/cardtemperature.pm index 437cfad40..305b008b5 100644 --- a/src/network/alcatel/isam/snmp/mode/components/cardtemperature.pm +++ b/src/network/alcatel/isam/snmp/mode/components/cardtemperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/components/resources.pm b/src/network/alcatel/isam/snmp/mode/components/resources.pm index 034727d75..ff71783cf 100644 --- a/src/network/alcatel/isam/snmp/mode/components/resources.pm +++ b/src/network/alcatel/isam/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/components/sfp.pm b/src/network/alcatel/isam/snmp/mode/components/sfp.pm index a5a043660..f9d9e0b6a 100644 --- a/src/network/alcatel/isam/snmp/mode/components/sfp.pm +++ b/src/network/alcatel/isam/snmp/mode/components/sfp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/cpu.pm b/src/network/alcatel/isam/snmp/mode/cpu.pm index 7807c532f..ec4e8f16c 100644 --- a/src/network/alcatel/isam/snmp/mode/cpu.pm +++ b/src/network/alcatel/isam/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/hardware.pm b/src/network/alcatel/isam/snmp/mode/hardware.pm index 5081b0630..32e5cb725 100644 --- a/src/network/alcatel/isam/snmp/mode/hardware.pm +++ b/src/network/alcatel/isam/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/hubsapusage.pm b/src/network/alcatel/isam/snmp/mode/hubsapusage.pm index 2ac92af4c..11f5a597b 100644 --- a/src/network/alcatel/isam/snmp/mode/hubsapusage.pm +++ b/src/network/alcatel/isam/snmp/mode/hubsapusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/listhubsap.pm b/src/network/alcatel/isam/snmp/mode/listhubsap.pm index 469948b6d..75274b527 100644 --- a/src/network/alcatel/isam/snmp/mode/listhubsap.pm +++ b/src/network/alcatel/isam/snmp/mode/listhubsap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/mode/memory.pm b/src/network/alcatel/isam/snmp/mode/memory.pm index db25c427b..005f7b6c2 100644 --- a/src/network/alcatel/isam/snmp/mode/memory.pm +++ b/src/network/alcatel/isam/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/isam/snmp/plugin.pm b/src/network/alcatel/isam/snmp/plugin.pm index ea41c357f..d8437c6e2 100644 --- a/src/network/alcatel/isam/snmp/plugin.pm +++ b/src/network/alcatel/isam/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/backplane.pm b/src/network/alcatel/omniswitch/snmp/mode/components/backplane.pm index c771ce80f..1287ce1ca 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/backplane.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/backplane.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/chassis.pm b/src/network/alcatel/omniswitch/snmp/mode/components/chassis.pm index 21bad137d..39fb2916d 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/chassis.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/container.pm b/src/network/alcatel/omniswitch/snmp/mode/components/container.pm index 3b18d0477..701d4b9c4 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/container.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/container.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/fan.pm b/src/network/alcatel/omniswitch/snmp/mode/components/fan.pm index 8d52024b1..bdebf9d27 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/fan.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/module.pm b/src/network/alcatel/omniswitch/snmp/mode/components/module.pm index e2899fbd5..eb3106502 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/module.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/other.pm b/src/network/alcatel/omniswitch/snmp/mode/components/other.pm index 78b725e7f..dcd0d3a89 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/other.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/other.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/port.pm b/src/network/alcatel/omniswitch/snmp/mode/components/port.pm index 2d31b8464..5b117831b 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/port.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/port.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/psu.pm b/src/network/alcatel/omniswitch/snmp/mode/components/psu.pm index 233c477b5..f1f88aa01 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/psu.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/resources.pm b/src/network/alcatel/omniswitch/snmp/mode/components/resources.pm index f87806713..4517f487a 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/resources.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/sensor.pm b/src/network/alcatel/omniswitch/snmp/mode/components/sensor.pm index da8adbb15..cd45144eb 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/sensor.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/stack.pm b/src/network/alcatel/omniswitch/snmp/mode/components/stack.pm index bfcb0e014..577094f78 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/stack.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/components/unknown.pm b/src/network/alcatel/omniswitch/snmp/mode/components/unknown.pm index b2afa1b86..62017497c 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/components/unknown.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/components/unknown.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/cpu.pm b/src/network/alcatel/omniswitch/snmp/mode/cpu.pm index d51e4286d..621a4db52 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/cpu.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -172,7 +172,7 @@ __END__ =head1 MODE -Check cpu usage (AlcatelIND1Health.mib). +Check CPU usage (AlcatelIND1Health.mib). =over 8 diff --git a/src/network/alcatel/omniswitch/snmp/mode/flashmemory.pm b/src/network/alcatel/omniswitch/snmp/mode/flashmemory.pm index 71f50340d..73741cda1 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/flashmemory.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/flashmemory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/hardware.pm b/src/network/alcatel/omniswitch/snmp/mode/hardware.pm index f525c4115..4f52f3362 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/hardware.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/memory.pm b/src/network/alcatel/omniswitch/snmp/mode/memory.pm index 8211a220c..bc7b428f9 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/memory.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/mode/virtualchassis.pm b/src/network/alcatel/omniswitch/snmp/mode/virtualchassis.pm index a778db931..b12cb4535 100644 --- a/src/network/alcatel/omniswitch/snmp/mode/virtualchassis.pm +++ b/src/network/alcatel/omniswitch/snmp/mode/virtualchassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/omniswitch/snmp/plugin.pm b/src/network/alcatel/omniswitch/snmp/plugin.pm index 58d263096..af7408f71 100644 --- a/src/network/alcatel/omniswitch/snmp/plugin.pm +++ b/src/network/alcatel/omniswitch/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/oxe/snmp/mode/domains.pm b/src/network/alcatel/oxe/snmp/mode/domains.pm index 45212c173..dd887e47b 100644 --- a/src/network/alcatel/oxe/snmp/mode/domains.pm +++ b/src/network/alcatel/oxe/snmp/mode/domains.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/oxe/snmp/mode/pbxrole.pm b/src/network/alcatel/oxe/snmp/mode/pbxrole.pm index 52f4ca10a..f09163dca 100644 --- a/src/network/alcatel/oxe/snmp/mode/pbxrole.pm +++ b/src/network/alcatel/oxe/snmp/mode/pbxrole.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/oxe/snmp/mode/pbxstate.pm b/src/network/alcatel/oxe/snmp/mode/pbxstate.pm index ea87da232..3043b5e5f 100644 --- a/src/network/alcatel/oxe/snmp/mode/pbxstate.pm +++ b/src/network/alcatel/oxe/snmp/mode/pbxstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/oxe/snmp/mode/trunks.pm b/src/network/alcatel/oxe/snmp/mode/trunks.pm index b9c3bbff4..9e2bb353d 100644 --- a/src/network/alcatel/oxe/snmp/mode/trunks.pm +++ b/src/network/alcatel/oxe/snmp/mode/trunks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/oxe/snmp/plugin.pm b/src/network/alcatel/oxe/snmp/plugin.pm index 1c5d7076a..c7a9b5e17 100644 --- a/src/network/alcatel/oxe/snmp/plugin.pm +++ b/src/network/alcatel/oxe/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/pss/1830/snmp/mode/listsap.pm b/src/network/alcatel/pss/1830/snmp/mode/listsap.pm index 496f2f6a0..7ab773c91 100644 --- a/src/network/alcatel/pss/1830/snmp/mode/listsap.pm +++ b/src/network/alcatel/pss/1830/snmp/mode/listsap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/pss/1830/snmp/mode/sapqosstats.pm b/src/network/alcatel/pss/1830/snmp/mode/sapqosstats.pm index d52bb9e80..92cb9ed6c 100644 --- a/src/network/alcatel/pss/1830/snmp/mode/sapqosstats.pm +++ b/src/network/alcatel/pss/1830/snmp/mode/sapqosstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/alcatel/pss/1830/snmp/plugin.pm b/src/network/alcatel/pss/1830/snmp/plugin.pm index 724db6de0..6dc88b8e1 100644 --- a/src/network/alcatel/pss/1830/snmp/plugin.pm +++ b/src/network/alcatel/pss/1830/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/mode/components/fan.pm b/src/network/allied/snmp/mode/components/fan.pm index 8e1c5e4ec..a8c9f2b74 100644 --- a/src/network/allied/snmp/mode/components/fan.pm +++ b/src/network/allied/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/mode/components/psu.pm b/src/network/allied/snmp/mode/components/psu.pm index 52c7582f7..a6dfd975d 100644 --- a/src/network/allied/snmp/mode/components/psu.pm +++ b/src/network/allied/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/mode/components/temperature.pm b/src/network/allied/snmp/mode/components/temperature.pm index c0273460b..75ea5bd10 100644 --- a/src/network/allied/snmp/mode/components/temperature.pm +++ b/src/network/allied/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/mode/components/voltage.pm b/src/network/allied/snmp/mode/components/voltage.pm index 64bd90d9b..bd650781c 100644 --- a/src/network/allied/snmp/mode/components/voltage.pm +++ b/src/network/allied/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/mode/cpu.pm b/src/network/allied/snmp/mode/cpu.pm index ff153055f..78b765082 100644 --- a/src/network/allied/snmp/mode/cpu.pm +++ b/src/network/allied/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -95,7 +95,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/allied/snmp/mode/hardware.pm b/src/network/allied/snmp/mode/hardware.pm index 73a532971..97bcff707 100644 --- a/src/network/allied/snmp/mode/hardware.pm +++ b/src/network/allied/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/mode/memory.pm b/src/network/allied/snmp/mode/memory.pm index 370c290c1..d521d3a73 100644 --- a/src/network/allied/snmp/mode/memory.pm +++ b/src/network/allied/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/allied/snmp/plugin.pm b/src/network/allied/snmp/plugin.pm index eefcbd25e..553f797b6 100644 --- a/src/network/allied/snmp/plugin.pm +++ b/src/network/allied/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/arista/snmp/mode/memory.pm b/src/network/arista/snmp/mode/memory.pm index 8dcf0664b..4674d5a8c 100644 --- a/src/network/arista/snmp/mode/memory.pm +++ b/src/network/arista/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/arista/snmp/plugin.pm b/src/network/arista/snmp/plugin.pm index 9921223ec..a98318432 100644 --- a/src/network/arista/snmp/plugin.pm +++ b/src/network/arista/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/arkoon/plugin.pm b/src/network/arkoon/plugin.pm index 4f40580d7..cb8d97a8c 100644 --- a/src/network/arkoon/plugin.pm +++ b/src/network/arkoon/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/custom/api.pm b/src/network/aruba/aoscx/restapi/custom/api.pm index 6277bb6da..b320831a7 100644 --- a/src/network/aruba/aoscx/restapi/custom/api.pm +++ b/src/network/aruba/aoscx/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/mode/components/fan.pm b/src/network/aruba/aoscx/restapi/mode/components/fan.pm index 3222b6587..0d8a50a80 100644 --- a/src/network/aruba/aoscx/restapi/mode/components/fan.pm +++ b/src/network/aruba/aoscx/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/mode/components/psu.pm b/src/network/aruba/aoscx/restapi/mode/components/psu.pm index 9c0890538..e1074952a 100644 --- a/src/network/aruba/aoscx/restapi/mode/components/psu.pm +++ b/src/network/aruba/aoscx/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/mode/components/temperature.pm b/src/network/aruba/aoscx/restapi/mode/components/temperature.pm index e1b00f8c2..5ae872f5b 100644 --- a/src/network/aruba/aoscx/restapi/mode/components/temperature.pm +++ b/src/network/aruba/aoscx/restapi/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/mode/hardware.pm b/src/network/aruba/aoscx/restapi/mode/hardware.pm index 1a0e42224..b8560e3a2 100644 --- a/src/network/aruba/aoscx/restapi/mode/hardware.pm +++ b/src/network/aruba/aoscx/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/mode/vsx.pm b/src/network/aruba/aoscx/restapi/mode/vsx.pm index 476a368b6..553f4496b 100644 --- a/src/network/aruba/aoscx/restapi/mode/vsx.pm +++ b/src/network/aruba/aoscx/restapi/mode/vsx.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/restapi/plugin.pm b/src/network/aruba/aoscx/restapi/plugin.pm index 41f68f2ae..367036389 100644 --- a/src/network/aruba/aoscx/restapi/plugin.pm +++ b/src/network/aruba/aoscx/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/components/fan.pm b/src/network/aruba/aoscx/snmp/mode/components/fan.pm index 20aa69b65..33f328143 100644 --- a/src/network/aruba/aoscx/snmp/mode/components/fan.pm +++ b/src/network/aruba/aoscx/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/components/fantray.pm b/src/network/aruba/aoscx/snmp/mode/components/fantray.pm index 17ab5913e..538eaee59 100644 --- a/src/network/aruba/aoscx/snmp/mode/components/fantray.pm +++ b/src/network/aruba/aoscx/snmp/mode/components/fantray.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/components/psu.pm b/src/network/aruba/aoscx/snmp/mode/components/psu.pm index 4991bf305..fa171a5c0 100644 --- a/src/network/aruba/aoscx/snmp/mode/components/psu.pm +++ b/src/network/aruba/aoscx/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/components/temperature.pm b/src/network/aruba/aoscx/snmp/mode/components/temperature.pm index 402e9f6c9..1c0b89a89 100644 --- a/src/network/aruba/aoscx/snmp/mode/components/temperature.pm +++ b/src/network/aruba/aoscx/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/cpu.pm b/src/network/aruba/aoscx/snmp/mode/cpu.pm index 641fca3ee..fe4b4852c 100644 --- a/src/network/aruba/aoscx/snmp/mode/cpu.pm +++ b/src/network/aruba/aoscx/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -100,7 +100,7 @@ __END__ =head1 MODE -Check cpu (worked since firmware 10.10). +Check CPU (worked since firmware 10.10). =over 8 diff --git a/src/network/aruba/aoscx/snmp/mode/hardware.pm b/src/network/aruba/aoscx/snmp/mode/hardware.pm index 8135b37c2..605f2a9ca 100644 --- a/src/network/aruba/aoscx/snmp/mode/hardware.pm +++ b/src/network/aruba/aoscx/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/memory.pm b/src/network/aruba/aoscx/snmp/mode/memory.pm index b8f6aaaf9..c4cb4cc24 100644 --- a/src/network/aruba/aoscx/snmp/mode/memory.pm +++ b/src/network/aruba/aoscx/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/vsf.pm b/src/network/aruba/aoscx/snmp/mode/vsf.pm index 4a67cbd58..0c0e01e96 100644 --- a/src/network/aruba/aoscx/snmp/mode/vsf.pm +++ b/src/network/aruba/aoscx/snmp/mode/vsf.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/mode/vsx.pm b/src/network/aruba/aoscx/snmp/mode/vsx.pm index e6157ac1b..187cffe4d 100644 --- a/src/network/aruba/aoscx/snmp/mode/vsx.pm +++ b/src/network/aruba/aoscx/snmp/mode/vsx.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/aoscx/snmp/plugin.pm b/src/network/aruba/aoscx/snmp/plugin.pm index 10ad3288e..121136c5a 100644 --- a/src/network/aruba/aoscx/snmp/plugin.pm +++ b/src/network/aruba/aoscx/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/mode/cpu.pm b/src/network/aruba/cppm/snmp/mode/cpu.pm index cfe2392b5..ff19f61e1 100644 --- a/src/network/aruba/cppm/snmp/mode/cpu.pm +++ b/src/network/aruba/cppm/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -45,7 +45,7 @@ Check system CPUs. =item B<--use-ucd> -Use UCD mib for cpu average. +Use UCD mib for CPU average. =item B<--warning-average> diff --git a/src/network/aruba/cppm/snmp/mode/disks.pm b/src/network/aruba/cppm/snmp/mode/disks.pm index 9bd52a815..bebe76c72 100644 --- a/src/network/aruba/cppm/snmp/mode/disks.pm +++ b/src/network/aruba/cppm/snmp/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/mode/interfaces.pm b/src/network/aruba/cppm/snmp/mode/interfaces.pm index 7765ae36a..5bb679fc9 100644 --- a/src/network/aruba/cppm/snmp/mode/interfaces.pm +++ b/src/network/aruba/cppm/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/aruba/cppm/snmp/mode/memory.pm b/src/network/aruba/cppm/snmp/mode/memory.pm index 06fab0150..1e67aa518 100644 --- a/src/network/aruba/cppm/snmp/mode/memory.pm +++ b/src/network/aruba/cppm/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/mode/radius.pm b/src/network/aruba/cppm/snmp/mode/radius.pm index 3959dc077..ac78dedbc 100644 --- a/src/network/aruba/cppm/snmp/mode/radius.pm +++ b/src/network/aruba/cppm/snmp/mode/radius.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/mode/repositories.pm b/src/network/aruba/cppm/snmp/mode/repositories.pm index edc564a21..de4d6fa29 100644 --- a/src/network/aruba/cppm/snmp/mode/repositories.pm +++ b/src/network/aruba/cppm/snmp/mode/repositories.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/mode/swap.pm b/src/network/aruba/cppm/snmp/mode/swap.pm index a6923d8cc..88c1ea26f 100644 --- a/src/network/aruba/cppm/snmp/mode/swap.pm +++ b/src/network/aruba/cppm/snmp/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/mode/tacacs.pm b/src/network/aruba/cppm/snmp/mode/tacacs.pm index 463c5df65..f3a269ea2 100644 --- a/src/network/aruba/cppm/snmp/mode/tacacs.pm +++ b/src/network/aruba/cppm/snmp/mode/tacacs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/cppm/snmp/plugin.pm b/src/network/aruba/cppm/snmp/plugin.pm index d682e22b8..b86bd1717 100644 --- a/src/network/aruba/cppm/snmp/plugin.pm +++ b/src/network/aruba/cppm/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/instant/snmp/mode/apusage.pm b/src/network/aruba/instant/snmp/mode/apusage.pm index aa9c6ffcf..749cb2110 100644 --- a/src/network/aruba/instant/snmp/mode/apusage.pm +++ b/src/network/aruba/instant/snmp/mode/apusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -203,7 +203,7 @@ sub manage_selection { my $ap_ipaddress = $snmp_result->{$oid_aiClientAPIPAddress}->{$oid}; if (defined($link_ap->{$ap_ipaddress})) { $link_ap->{$ap_ipaddress}->{clients}++; - } else { + } elsif (defined($self->{ap}->{default})) { # default "AP" is only handled when no AP is identified (see above) $self->{ap}->{default}->{clients}++; } } diff --git a/src/network/aruba/instant/snmp/mode/ssidstatus.pm b/src/network/aruba/instant/snmp/mode/ssidstatus.pm index a872cef29..faf249a29 100644 --- a/src/network/aruba/instant/snmp/mode/ssidstatus.pm +++ b/src/network/aruba/instant/snmp/mode/ssidstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/instant/snmp/plugin.pm b/src/network/aruba/instant/snmp/plugin.pm index 793a52dbc..6ab2312f9 100644 --- a/src/network/aruba/instant/snmp/plugin.pm +++ b/src/network/aruba/instant/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/orchestrator/restapi/custom/api.pm b/src/network/aruba/orchestrator/restapi/custom/api.pm index 1c2d45bc2..a7625e3e2 100644 --- a/src/network/aruba/orchestrator/restapi/custom/api.pm +++ b/src/network/aruba/orchestrator/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/orchestrator/restapi/mode/appliances.pm b/src/network/aruba/orchestrator/restapi/mode/appliances.pm index f7cbe725c..e2cfb49e9 100644 --- a/src/network/aruba/orchestrator/restapi/mode/appliances.pm +++ b/src/network/aruba/orchestrator/restapi/mode/appliances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/orchestrator/restapi/mode/discovery.pm b/src/network/aruba/orchestrator/restapi/mode/discovery.pm index 2ce6728a6..9a9c1e74e 100644 --- a/src/network/aruba/orchestrator/restapi/mode/discovery.pm +++ b/src/network/aruba/orchestrator/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/orchestrator/restapi/plugin.pm b/src/network/aruba/orchestrator/restapi/plugin.pm index 24971ffab..788397133 100644 --- a/src/network/aruba/orchestrator/restapi/plugin.pm +++ b/src/network/aruba/orchestrator/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/aruba/standard/snmp/plugin.pm b/src/network/aruba/standard/snmp/plugin.pm index 49fcafa90..ccaa95610 100644 --- a/src/network/aruba/standard/snmp/plugin.pm +++ b/src/network/aruba/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/aggregate.pm b/src/network/athonet/epc/snmp/mode/aggregate.pm index bcce1fbc9..695243012 100644 --- a/src/network/athonet/epc/snmp/mode/aggregate.pm +++ b/src/network/athonet/epc/snmp/mode/aggregate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/apns.pm b/src/network/athonet/epc/snmp/mode/apns.pm index 6565941f2..302025d22 100644 --- a/src/network/athonet/epc/snmp/mode/apns.pm +++ b/src/network/athonet/epc/snmp/mode/apns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/interfacesdiameter.pm b/src/network/athonet/epc/snmp/mode/interfacesdiameter.pm index d00063b14..345f9525f 100644 --- a/src/network/athonet/epc/snmp/mode/interfacesdiameter.pm +++ b/src/network/athonet/epc/snmp/mode/interfacesdiameter.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/interfacesga.pm b/src/network/athonet/epc/snmp/mode/interfacesga.pm index ad08b2588..80628c9f7 100644 --- a/src/network/athonet/epc/snmp/mode/interfacesga.pm +++ b/src/network/athonet/epc/snmp/mode/interfacesga.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/interfacesgtpc.pm b/src/network/athonet/epc/snmp/mode/interfacesgtpc.pm index edf9a8e24..30e3a4b5f 100644 --- a/src/network/athonet/epc/snmp/mode/interfacesgtpc.pm +++ b/src/network/athonet/epc/snmp/mode/interfacesgtpc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/interfaceslte.pm b/src/network/athonet/epc/snmp/mode/interfaceslte.pm index 946289c67..ba22c35de 100644 --- a/src/network/athonet/epc/snmp/mode/interfaceslte.pm +++ b/src/network/athonet/epc/snmp/mode/interfaceslte.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/license.pm b/src/network/athonet/epc/snmp/mode/license.pm index 4c2a537fb..35752de0b 100644 --- a/src/network/athonet/epc/snmp/mode/license.pm +++ b/src/network/athonet/epc/snmp/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/listapns.pm b/src/network/athonet/epc/snmp/mode/listapns.pm index ec3c489a6..9f4e2536d 100644 --- a/src/network/athonet/epc/snmp/mode/listapns.pm +++ b/src/network/athonet/epc/snmp/mode/listapns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/listinterfacesdiameter.pm b/src/network/athonet/epc/snmp/mode/listinterfacesdiameter.pm index d3a66d57f..ebcdf1895 100644 --- a/src/network/athonet/epc/snmp/mode/listinterfacesdiameter.pm +++ b/src/network/athonet/epc/snmp/mode/listinterfacesdiameter.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/listinterfacesga.pm b/src/network/athonet/epc/snmp/mode/listinterfacesga.pm index 089117a94..b73e74ecb 100644 --- a/src/network/athonet/epc/snmp/mode/listinterfacesga.pm +++ b/src/network/athonet/epc/snmp/mode/listinterfacesga.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/listinterfacesgtpc.pm b/src/network/athonet/epc/snmp/mode/listinterfacesgtpc.pm index e3a16918c..ec9ec9b05 100644 --- a/src/network/athonet/epc/snmp/mode/listinterfacesgtpc.pm +++ b/src/network/athonet/epc/snmp/mode/listinterfacesgtpc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/listinterfaceslte.pm b/src/network/athonet/epc/snmp/mode/listinterfaceslte.pm index 6d1ae759f..b5a99071b 100644 --- a/src/network/athonet/epc/snmp/mode/listinterfaceslte.pm +++ b/src/network/athonet/epc/snmp/mode/listinterfaceslte.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/mode/lte.pm b/src/network/athonet/epc/snmp/mode/lte.pm index ba280e135..e59512e8e 100644 --- a/src/network/athonet/epc/snmp/mode/lte.pm +++ b/src/network/athonet/epc/snmp/mode/lte.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/athonet/epc/snmp/plugin.pm b/src/network/athonet/epc/snmp/plugin.pm index 1dde5cae4..dc03a02ad 100644 --- a/src/network/athonet/epc/snmp/plugin.pm +++ b/src/network/athonet/epc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/atrica/snmp/mode/connections.pm b/src/network/atrica/snmp/mode/connections.pm index 93e9d5509..e66a1855d 100644 --- a/src/network/atrica/snmp/mode/connections.pm +++ b/src/network/atrica/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -477,7 +477,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/atrica/snmp/mode/listconnections.pm b/src/network/atrica/snmp/mode/listconnections.pm index 457a450fb..789d80fd5 100644 --- a/src/network/atrica/snmp/mode/listconnections.pm +++ b/src/network/atrica/snmp/mode/listconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/atrica/snmp/plugin.pm b/src/network/atrica/snmp/plugin.pm index 00fd1fe51..dadfc061d 100644 --- a/src/network/atrica/snmp/plugin.pm +++ b/src/network/atrica/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/atto/fibrebridge/snmp/mode/fcportusage.pm b/src/network/atto/fibrebridge/snmp/mode/fcportusage.pm index 51edf3721..5d5c26a10 100644 --- a/src/network/atto/fibrebridge/snmp/mode/fcportusage.pm +++ b/src/network/atto/fibrebridge/snmp/mode/fcportusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/atto/fibrebridge/snmp/plugin.pm b/src/network/atto/fibrebridge/snmp/plugin.pm index a1923dadf..f1dc82875 100644 --- a/src/network/atto/fibrebridge/snmp/plugin.pm +++ b/src/network/atto/fibrebridge/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/components/fantray.pm b/src/network/audiocodes/snmp/mode/components/fantray.pm index e85b65b4a..78407aab9 100644 --- a/src/network/audiocodes/snmp/mode/components/fantray.pm +++ b/src/network/audiocodes/snmp/mode/components/fantray.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/components/module.pm b/src/network/audiocodes/snmp/mode/components/module.pm index 093d450e0..0bdd27172 100644 --- a/src/network/audiocodes/snmp/mode/components/module.pm +++ b/src/network/audiocodes/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/components/psu.pm b/src/network/audiocodes/snmp/mode/components/psu.pm index f10a24263..e1a0fde6c 100644 --- a/src/network/audiocodes/snmp/mode/components/psu.pm +++ b/src/network/audiocodes/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/cpu.pm b/src/network/audiocodes/snmp/mode/cpu.pm index 8fc384464..80ee45fd5 100644 --- a/src/network/audiocodes/snmp/mode/cpu.pm +++ b/src/network/audiocodes/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/hardware.pm b/src/network/audiocodes/snmp/mode/hardware.pm index 9830ffbed..7f1b1b203 100644 --- a/src/network/audiocodes/snmp/mode/hardware.pm +++ b/src/network/audiocodes/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/interfaces.pm b/src/network/audiocodes/snmp/mode/interfaces.pm index 874457899..91d71a342 100644 --- a/src/network/audiocodes/snmp/mode/interfaces.pm +++ b/src/network/audiocodes/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/listtrunks.pm b/src/network/audiocodes/snmp/mode/listtrunks.pm index bc7265241..40f05c424 100644 --- a/src/network/audiocodes/snmp/mode/listtrunks.pm +++ b/src/network/audiocodes/snmp/mode/listtrunks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/memory.pm b/src/network/audiocodes/snmp/mode/memory.pm index e1128c130..cd84983c0 100644 --- a/src/network/audiocodes/snmp/mode/memory.pm +++ b/src/network/audiocodes/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/sbccalls.pm b/src/network/audiocodes/snmp/mode/sbccalls.pm index e05d2f821..467e74fe7 100644 --- a/src/network/audiocodes/snmp/mode/sbccalls.pm +++ b/src/network/audiocodes/snmp/mode/sbccalls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/mode/trunkstatus.pm b/src/network/audiocodes/snmp/mode/trunkstatus.pm index ff5459182..f54e7b2a4 100644 --- a/src/network/audiocodes/snmp/mode/trunkstatus.pm +++ b/src/network/audiocodes/snmp/mode/trunkstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/audiocodes/snmp/plugin.pm b/src/network/audiocodes/snmp/plugin.pm index 4be5e750c..4bf3a9a2d 100644 --- a/src/network/audiocodes/snmp/plugin.pm +++ b/src/network/audiocodes/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/bma/snmp/mode/load.pm b/src/network/barracuda/bma/snmp/mode/load.pm index 437dc6339..b0b8bba94 100644 --- a/src/network/barracuda/bma/snmp/mode/load.pm +++ b/src/network/barracuda/bma/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -75,7 +75,7 @@ __END__ =head1 MODE -Check system cpu load. +Check system CPU load. =over 8 diff --git a/src/network/barracuda/bma/snmp/mode/mails.pm b/src/network/barracuda/bma/snmp/mode/mails.pm index 7f6299cd1..ef4daa1f1 100644 --- a/src/network/barracuda/bma/snmp/mode/mails.pm +++ b/src/network/barracuda/bma/snmp/mode/mails.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/bma/snmp/mode/storage.pm b/src/network/barracuda/bma/snmp/mode/storage.pm index ec2b02128..cad19931d 100644 --- a/src/network/barracuda/bma/snmp/mode/storage.pm +++ b/src/network/barracuda/bma/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/bma/snmp/plugin.pm b/src/network/barracuda/bma/snmp/plugin.pm index c14a31cee..f81a37b42 100644 --- a/src/network/barracuda/bma/snmp/plugin.pm +++ b/src/network/barracuda/bma/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/boxservice.pm b/src/network/barracuda/cloudgen/snmp/mode/boxservice.pm index c4e0fd7db..a3e5078ef 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/boxservice.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/boxservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/components/fan.pm b/src/network/barracuda/cloudgen/snmp/mode/components/fan.pm index a785a6590..ebd717bc0 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/components/fan.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/components/psu.pm b/src/network/barracuda/cloudgen/snmp/mode/components/psu.pm index aa833e144..7b08222f1 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/components/psu.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/components/temperature.pm b/src/network/barracuda/cloudgen/snmp/mode/components/temperature.pm index cc9ffa6c6..fbee11477 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/components/temperature.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/components/voltage.pm b/src/network/barracuda/cloudgen/snmp/mode/components/voltage.pm index bf84c6b4c..8c6a202d7 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/components/voltage.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/hardware.pm b/src/network/barracuda/cloudgen/snmp/mode/hardware.pm index c8aaebca8..8f6113ff1 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/hardware.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/listvpns.pm b/src/network/barracuda/cloudgen/snmp/mode/listvpns.pm index 738bf8552..768663f32 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/listvpns.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/listvpns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/serverservice.pm b/src/network/barracuda/cloudgen/snmp/mode/serverservice.pm index 86bd979d1..938951413 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/serverservice.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/serverservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/mode/vpnstatus.pm b/src/network/barracuda/cloudgen/snmp/mode/vpnstatus.pm index dd2fc4972..97ff10444 100644 --- a/src/network/barracuda/cloudgen/snmp/mode/vpnstatus.pm +++ b/src/network/barracuda/cloudgen/snmp/mode/vpnstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/barracuda/cloudgen/snmp/plugin.pm b/src/network/barracuda/cloudgen/snmp/plugin.pm index 289e5007f..8a517876d 100644 --- a/src/network/barracuda/cloudgen/snmp/plugin.pm +++ b/src/network/barracuda/cloudgen/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/beeware/snmp/mode/listreverseproxy.pm b/src/network/beeware/snmp/mode/listreverseproxy.pm index 77442c6ff..7d3af773f 100644 --- a/src/network/beeware/snmp/mode/listreverseproxy.pm +++ b/src/network/beeware/snmp/mode/listreverseproxy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/beeware/snmp/mode/reverseproxyusage.pm b/src/network/beeware/snmp/mode/reverseproxyusage.pm index 68dda0356..6a5c184aa 100644 --- a/src/network/beeware/snmp/mode/reverseproxyusage.pm +++ b/src/network/beeware/snmp/mode/reverseproxyusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/beeware/snmp/plugin.pm b/src/network/beeware/snmp/plugin.pm index 68d05b551..baed4efcc 100644 --- a/src/network/beeware/snmp/plugin.pm +++ b/src/network/beeware/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -45,6 +45,6 @@ __END__ =head1 PLUGIN DESCRIPTION Check Beeware equipments in SNMP. -Please use plugin SNMP Linux for system checks ('cpu', 'memory', 'traffic',...). +Please use the SNMP Linux plugin for system checks (CPU, memory, traffic, ...). =cut diff --git a/src/network/bluecoat/snmp/mode/clientconnections.pm b/src/network/bluecoat/snmp/mode/clientconnections.pm index a8418f893..9fb1e5d23 100644 --- a/src/network/bluecoat/snmp/mode/clientconnections.pm +++ b/src/network/bluecoat/snmp/mode/clientconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/clientrequests.pm b/src/network/bluecoat/snmp/mode/clientrequests.pm index 5ef6a9da0..ab71c9578 100644 --- a/src/network/bluecoat/snmp/mode/clientrequests.pm +++ b/src/network/bluecoat/snmp/mode/clientrequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/clienttraffic.pm b/src/network/bluecoat/snmp/mode/clienttraffic.pm index 2e4061028..0fb8112bc 100644 --- a/src/network/bluecoat/snmp/mode/clienttraffic.pm +++ b/src/network/bluecoat/snmp/mode/clienttraffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/components/disk.pm b/src/network/bluecoat/snmp/mode/components/disk.pm index 2aee185e3..a572c49d7 100644 --- a/src/network/bluecoat/snmp/mode/components/disk.pm +++ b/src/network/bluecoat/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/components/sensor.pm b/src/network/bluecoat/snmp/mode/components/sensor.pm index 024562496..2a3daf2a9 100644 --- a/src/network/bluecoat/snmp/mode/components/sensor.pm +++ b/src/network/bluecoat/snmp/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/cpu.pm b/src/network/bluecoat/snmp/mode/cpu.pm index 21040f78c..1c5b17f18 100644 --- a/src/network/bluecoat/snmp/mode/cpu.pm +++ b/src/network/bluecoat/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/disk.pm b/src/network/bluecoat/snmp/mode/disk.pm index d31f72545..6434d4214 100644 --- a/src/network/bluecoat/snmp/mode/disk.pm +++ b/src/network/bluecoat/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/hardware.pm b/src/network/bluecoat/snmp/mode/hardware.pm index 54116e64e..f08edc5dd 100644 --- a/src/network/bluecoat/snmp/mode/hardware.pm +++ b/src/network/bluecoat/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/memory.pm b/src/network/bluecoat/snmp/mode/memory.pm index 6f050dedb..862997071 100644 --- a/src/network/bluecoat/snmp/mode/memory.pm +++ b/src/network/bluecoat/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/mode/serverconnections.pm b/src/network/bluecoat/snmp/mode/serverconnections.pm index 37f32eadd..526a2ff38 100644 --- a/src/network/bluecoat/snmp/mode/serverconnections.pm +++ b/src/network/bluecoat/snmp/mode/serverconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/bluecoat/snmp/plugin.pm b/src/network/bluecoat/snmp/plugin.pm index 1b4e38f30..b9e4d8f56 100644 --- a/src/network/bluecoat/snmp/plugin.pm +++ b/src/network/bluecoat/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/brocade/snmp/mode/cpu.pm b/src/network/brocade/snmp/mode/cpu.pm index c4dcb63fa..96aa365ca 100644 --- a/src/network/brocade/snmp/mode/cpu.pm +++ b/src/network/brocade/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -97,7 +97,7 @@ __END__ =head1 MODE -Check system cpu usage (SW.mib). +Check system CPU usage (SW.mib). =over 8 diff --git a/src/network/brocade/snmp/mode/hardware.pm b/src/network/brocade/snmp/mode/hardware.pm index 6c6fdf58e..30a9becb4 100644 --- a/src/network/brocade/snmp/mode/hardware.pm +++ b/src/network/brocade/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/brocade/snmp/mode/interfaces.pm b/src/network/brocade/snmp/mode/interfaces.pm index dbfbb490e..fa7515eaf 100644 --- a/src/network/brocade/snmp/mode/interfaces.pm +++ b/src/network/brocade/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -377,7 +377,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/brocade/snmp/mode/listinterfaces.pm b/src/network/brocade/snmp/mode/listinterfaces.pm index d5b48744e..7c258c982 100644 --- a/src/network/brocade/snmp/mode/listinterfaces.pm +++ b/src/network/brocade/snmp/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/brocade/snmp/mode/memory.pm b/src/network/brocade/snmp/mode/memory.pm index 0e3421d61..75f1549da 100644 --- a/src/network/brocade/snmp/mode/memory.pm +++ b/src/network/brocade/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/brocade/snmp/plugin.pm b/src/network/brocade/snmp/plugin.pm index 2d86377c9..bfd8db085 100644 --- a/src/network/brocade/snmp/plugin.pm +++ b/src/network/brocade/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/cnpilot/snmp/mode/connectionstatus.pm b/src/network/cambium/cnpilot/snmp/mode/connectionstatus.pm index d5fd1fa6f..2ea58ade0 100644 --- a/src/network/cambium/cnpilot/snmp/mode/connectionstatus.pm +++ b/src/network/cambium/cnpilot/snmp/mode/connectionstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/cnpilot/snmp/mode/cpu.pm b/src/network/cambium/cnpilot/snmp/mode/cpu.pm index d9b01f2ba..cad29354e 100644 --- a/src/network/cambium/cnpilot/snmp/mode/cpu.pm +++ b/src/network/cambium/cnpilot/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/cnpilot/snmp/mode/interfaces.pm b/src/network/cambium/cnpilot/snmp/mode/interfaces.pm index b57977ff9..4a7eb6d0f 100644 --- a/src/network/cambium/cnpilot/snmp/mode/interfaces.pm +++ b/src/network/cambium/cnpilot/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/cambium/cnpilot/snmp/mode/listradios.pm b/src/network/cambium/cnpilot/snmp/mode/listradios.pm index 23042cf7d..eece6efea 100644 --- a/src/network/cambium/cnpilot/snmp/mode/listradios.pm +++ b/src/network/cambium/cnpilot/snmp/mode/listradios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/cnpilot/snmp/mode/memory.pm b/src/network/cambium/cnpilot/snmp/mode/memory.pm index 9bcb7bd4e..b0f8bdbc2 100644 --- a/src/network/cambium/cnpilot/snmp/mode/memory.pm +++ b/src/network/cambium/cnpilot/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/cnpilot/snmp/mode/radios.pm b/src/network/cambium/cnpilot/snmp/mode/radios.pm index 0b9058271..70202e41b 100644 --- a/src/network/cambium/cnpilot/snmp/mode/radios.pm +++ b/src/network/cambium/cnpilot/snmp/mode/radios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/cnpilot/snmp/plugin.pm b/src/network/cambium/cnpilot/snmp/plugin.pm index de6cf1264..2f59a6c86 100644 --- a/src/network/cambium/cnpilot/snmp/plugin.pm +++ b/src/network/cambium/cnpilot/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/epmp/snmp/mode/antenna.pm b/src/network/cambium/epmp/snmp/mode/antenna.pm index b4bd6a9ac..8d31ad450 100644 --- a/src/network/cambium/epmp/snmp/mode/antenna.pm +++ b/src/network/cambium/epmp/snmp/mode/antenna.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/epmp/snmp/mode/cpu.pm b/src/network/cambium/epmp/snmp/mode/cpu.pm index 562f2ac6b..c8e259ee5 100644 --- a/src/network/cambium/epmp/snmp/mode/cpu.pm +++ b/src/network/cambium/epmp/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/epmp/snmp/mode/interfaces.pm b/src/network/cambium/epmp/snmp/mode/interfaces.pm index 6e35f1841..87601d35b 100644 --- a/src/network/cambium/epmp/snmp/mode/interfaces.pm +++ b/src/network/cambium/epmp/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/cambium/epmp/snmp/mode/license.pm b/src/network/cambium/epmp/snmp/mode/license.pm index 33dea0e3a..9e6656623 100644 --- a/src/network/cambium/epmp/snmp/mode/license.pm +++ b/src/network/cambium/epmp/snmp/mode/license.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/epmp/snmp/mode/uptime.pm b/src/network/cambium/epmp/snmp/mode/uptime.pm index 1ba1102db..77b973cd3 100644 --- a/src/network/cambium/epmp/snmp/mode/uptime.pm +++ b/src/network/cambium/epmp/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cambium/epmp/snmp/plugin.pm b/src/network/cambium/epmp/snmp/plugin.pm index c26b4894e..6eabf8196 100644 --- a/src/network/cambium/epmp/snmp/plugin.pm +++ b/src/network/cambium/epmp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/chapsvision/crossing/snmp/mode/antivirus.pm b/src/network/chapsvision/crossing/snmp/mode/antivirus.pm index 49a829326..e137914d4 100644 --- a/src/network/chapsvision/crossing/snmp/mode/antivirus.pm +++ b/src/network/chapsvision/crossing/snmp/mode/antivirus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/chapsvision/crossing/snmp/mode/interfaces.pm b/src/network/chapsvision/crossing/snmp/mode/interfaces.pm index e78841b5d..77ef8aff5 100644 --- a/src/network/chapsvision/crossing/snmp/mode/interfaces.pm +++ b/src/network/chapsvision/crossing/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/chapsvision/crossing/snmp/plugin.pm b/src/network/chapsvision/crossing/snmp/plugin.pm index ff549e2db..a53d11fd5 100644 --- a/src/network/chapsvision/crossing/snmp/plugin.pm +++ b/src/network/chapsvision/crossing/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/components/fan.pm b/src/network/checkpoint/snmp/mode/components/fan.pm index d92720aea..80138e5ed 100644 --- a/src/network/checkpoint/snmp/mode/components/fan.pm +++ b/src/network/checkpoint/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/components/psu.pm b/src/network/checkpoint/snmp/mode/components/psu.pm index a42296bea..26707b3e5 100644 --- a/src/network/checkpoint/snmp/mode/components/psu.pm +++ b/src/network/checkpoint/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/components/raiddisk.pm b/src/network/checkpoint/snmp/mode/components/raiddisk.pm index e80b09134..22eb5a7b1 100644 --- a/src/network/checkpoint/snmp/mode/components/raiddisk.pm +++ b/src/network/checkpoint/snmp/mode/components/raiddisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/components/temperature.pm b/src/network/checkpoint/snmp/mode/components/temperature.pm index f6de34fed..dba70302a 100644 --- a/src/network/checkpoint/snmp/mode/components/temperature.pm +++ b/src/network/checkpoint/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/components/voltage.pm b/src/network/checkpoint/snmp/mode/components/voltage.pm index 8fbd1f41f..7a5d3092a 100644 --- a/src/network/checkpoint/snmp/mode/components/voltage.pm +++ b/src/network/checkpoint/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/connections.pm b/src/network/checkpoint/snmp/mode/connections.pm index bb53b2ded..551aea924 100644 --- a/src/network/checkpoint/snmp/mode/connections.pm +++ b/src/network/checkpoint/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/cpu.pm b/src/network/checkpoint/snmp/mode/cpu.pm index d7df4683f..13734ae1c 100644 --- a/src/network/checkpoint/snmp/mode/cpu.pm +++ b/src/network/checkpoint/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -116,7 +116,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/checkpoint/snmp/mode/disk.pm b/src/network/checkpoint/snmp/mode/disk.pm index 6aed68379..0ced2ad7c 100644 --- a/src/network/checkpoint/snmp/mode/disk.pm +++ b/src/network/checkpoint/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/hardware.pm b/src/network/checkpoint/snmp/mode/hardware.pm index 5c45440c8..85fd51246 100644 --- a/src/network/checkpoint/snmp/mode/hardware.pm +++ b/src/network/checkpoint/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/hastate.pm b/src/network/checkpoint/snmp/mode/hastate.pm index 87b5ffa0e..c7f1286c5 100644 --- a/src/network/checkpoint/snmp/mode/hastate.pm +++ b/src/network/checkpoint/snmp/mode/hastate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/memory.pm b/src/network/checkpoint/snmp/mode/memory.pm index 1c95fa341..4b4b94117 100644 --- a/src/network/checkpoint/snmp/mode/memory.pm +++ b/src/network/checkpoint/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/rausers.pm b/src/network/checkpoint/snmp/mode/rausers.pm index a86c7b03b..de39975d4 100644 --- a/src/network/checkpoint/snmp/mode/rausers.pm +++ b/src/network/checkpoint/snmp/mode/rausers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/vpnstatus.pm b/src/network/checkpoint/snmp/mode/vpnstatus.pm index 28d451e19..8e6a8fe28 100644 --- a/src/network/checkpoint/snmp/mode/vpnstatus.pm +++ b/src/network/checkpoint/snmp/mode/vpnstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/mode/vsx.pm b/src/network/checkpoint/snmp/mode/vsx.pm index b045bc5f6..d776bf3ae 100644 --- a/src/network/checkpoint/snmp/mode/vsx.pm +++ b/src/network/checkpoint/snmp/mode/vsx.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/checkpoint/snmp/plugin.pm b/src/network/checkpoint/snmp/plugin.pm index 50977fa40..5355dc885 100644 --- a/src/network/checkpoint/snmp/plugin.pm +++ b/src/network/checkpoint/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/WaaS/mode/sessions.pm b/src/network/cisco/WaaS/mode/sessions.pm index 8f08e809e..3ffa20bce 100644 --- a/src/network/cisco/WaaS/mode/sessions.pm +++ b/src/network/cisco/WaaS/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/WaaS/plugin.pm b/src/network/cisco/WaaS/plugin.pm index d2e8751bc..c2dacb13b 100644 --- a/src/network/cisco/WaaS/plugin.pm +++ b/src/network/cisco/WaaS/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/aci/apic/restapi/custom/api.pm b/src/network/cisco/aci/apic/restapi/custom/api.pm index 8be953219..08b99be4b 100644 --- a/src/network/cisco/aci/apic/restapi/custom/api.pm +++ b/src/network/cisco/aci/apic/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/aci/apic/restapi/mode/fabric.pm b/src/network/cisco/aci/apic/restapi/mode/fabric.pm index c44cd1d63..e3d297784 100644 --- a/src/network/cisco/aci/apic/restapi/mode/fabric.pm +++ b/src/network/cisco/aci/apic/restapi/mode/fabric.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/aci/apic/restapi/mode/node.pm b/src/network/cisco/aci/apic/restapi/mode/node.pm index a9240a78e..918c0ded9 100644 --- a/src/network/cisco/aci/apic/restapi/mode/node.pm +++ b/src/network/cisco/aci/apic/restapi/mode/node.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/aci/apic/restapi/mode/tenant.pm b/src/network/cisco/aci/apic/restapi/mode/tenant.pm index 014240dc4..1d9cf793b 100644 --- a/src/network/cisco/aci/apic/restapi/mode/tenant.pm +++ b/src/network/cisco/aci/apic/restapi/mode/tenant.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/aci/apic/restapi/plugin.pm b/src/network/cisco/aci/apic/restapi/plugin.pm index cf3ab4353..8cd46089e 100644 --- a/src/network/cisco/aci/apic/restapi/plugin.pm +++ b/src/network/cisco/aci/apic/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/asa/snmp/mode/failover.pm b/src/network/cisco/asa/snmp/mode/failover.pm index 21d3798d6..033299b92 100644 --- a/src/network/cisco/asa/snmp/mode/failover.pm +++ b/src/network/cisco/asa/snmp/mode/failover.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/asa/snmp/plugin.pm b/src/network/cisco/asa/snmp/plugin.pm index 11aaa4a6f..1f3beda17 100644 --- a/src/network/cisco/asa/snmp/plugin.pm +++ b/src/network/cisco/asa/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/mode/ccmusage.pm b/src/network/cisco/callmanager/snmp/mode/ccmusage.pm index 488cee352..dfec4c0da 100644 --- a/src/network/cisco/callmanager/snmp/mode/ccmusage.pm +++ b/src/network/cisco/callmanager/snmp/mode/ccmusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/mode/ctiusage.pm b/src/network/cisco/callmanager/snmp/mode/ctiusage.pm index 40e7f7594..160d5a63a 100644 --- a/src/network/cisco/callmanager/snmp/mode/ctiusage.pm +++ b/src/network/cisco/callmanager/snmp/mode/ctiusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/mode/gatewayusage.pm b/src/network/cisco/callmanager/snmp/mode/gatewayusage.pm index 501ff9d25..ee7cac573 100644 --- a/src/network/cisco/callmanager/snmp/mode/gatewayusage.pm +++ b/src/network/cisco/callmanager/snmp/mode/gatewayusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/mode/mediadeviceusage.pm b/src/network/cisco/callmanager/snmp/mode/mediadeviceusage.pm index 8a7707cd2..a9bef2c66 100644 --- a/src/network/cisco/callmanager/snmp/mode/mediadeviceusage.pm +++ b/src/network/cisco/callmanager/snmp/mode/mediadeviceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/mode/phoneusage.pm b/src/network/cisco/callmanager/snmp/mode/phoneusage.pm index b9d695535..dadc5ea90 100644 --- a/src/network/cisco/callmanager/snmp/mode/phoneusage.pm +++ b/src/network/cisco/callmanager/snmp/mode/phoneusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/mode/voicemailusage.pm b/src/network/cisco/callmanager/snmp/mode/voicemailusage.pm index 4faa34110..6d03ec285 100644 --- a/src/network/cisco/callmanager/snmp/mode/voicemailusage.pm +++ b/src/network/cisco/callmanager/snmp/mode/voicemailusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/snmp/plugin.pm b/src/network/cisco/callmanager/snmp/plugin.pm index 445f45ed6..c1f9908c3 100644 --- a/src/network/cisco/callmanager/snmp/plugin.pm +++ b/src/network/cisco/callmanager/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/sxml/custom/xmlapi.pm b/src/network/cisco/callmanager/sxml/custom/xmlapi.pm index 4bb5117f2..1acc790b7 100644 --- a/src/network/cisco/callmanager/sxml/custom/xmlapi.pm +++ b/src/network/cisco/callmanager/sxml/custom/xmlapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/sxml/mode/alerts.pm b/src/network/cisco/callmanager/sxml/mode/alerts.pm index 8754b6cc6..fca95f5e6 100644 --- a/src/network/cisco/callmanager/sxml/mode/alerts.pm +++ b/src/network/cisco/callmanager/sxml/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/sxml/mode/services.pm b/src/network/cisco/callmanager/sxml/mode/services.pm index 5a34f1813..ca99e6a4a 100644 --- a/src/network/cisco/callmanager/sxml/mode/services.pm +++ b/src/network/cisco/callmanager/sxml/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/callmanager/sxml/plugin.pm b/src/network/cisco/callmanager/sxml/plugin.pm index 30253ed72..41ec23d5a 100644 --- a/src/network/cisco/callmanager/sxml/plugin.pm +++ b/src/network/cisco/callmanager/sxml/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/esa/restapi/custom/api.pm b/src/network/cisco/esa/restapi/custom/api.pm index defa5d807..584a5fd15 100644 --- a/src/network/cisco/esa/restapi/custom/api.pm +++ b/src/network/cisco/esa/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/esa/restapi/mode/system.pm b/src/network/cisco/esa/restapi/mode/system.pm index 4bd46ba1d..e65eb86d4 100644 --- a/src/network/cisco/esa/restapi/mode/system.pm +++ b/src/network/cisco/esa/restapi/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/esa/restapi/plugin.pm b/src/network/cisco/esa/restapi/plugin.pm index ca5a71569..a389499b6 100644 --- a/src/network/cisco/esa/restapi/plugin.pm +++ b/src/network/cisco/esa/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/esa/xmlapi/plugin.pm b/src/network/cisco/esa/xmlapi/plugin.pm index 338327409..1e5d1ee7e 100644 --- a/src/network/cisco/esa/xmlapi/plugin.pm +++ b/src/network/cisco/esa/xmlapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fmc/restapi/custom/api.pm b/src/network/cisco/firepower/fmc/restapi/custom/api.pm index 426d509ea..f961c13e8 100644 --- a/src/network/cisco/firepower/fmc/restapi/custom/api.pm +++ b/src/network/cisco/firepower/fmc/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fmc/restapi/mode/devices.pm b/src/network/cisco/firepower/fmc/restapi/mode/devices.pm index c1e05cda3..b4af35690 100644 --- a/src/network/cisco/firepower/fmc/restapi/mode/devices.pm +++ b/src/network/cisco/firepower/fmc/restapi/mode/devices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fmc/restapi/mode/discovery.pm b/src/network/cisco/firepower/fmc/restapi/mode/discovery.pm index e62454883..c8c09823f 100644 --- a/src/network/cisco/firepower/fmc/restapi/mode/discovery.pm +++ b/src/network/cisco/firepower/fmc/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fmc/restapi/plugin.pm b/src/network/cisco/firepower/fmc/restapi/plugin.pm index 30b7c7c71..1c03c843d 100644 --- a/src/network/cisco/firepower/fmc/restapi/plugin.pm +++ b/src/network/cisco/firepower/fmc/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/chassis.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/chassis.pm index 8ca184741..b8ed620e7 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/chassis.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/cpuunit.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/cpuunit.pm index bdbe9bb18..b2f56663f 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/cpuunit.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/cpuunit.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/fan.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/fan.pm index 6ce54bd04..667393dc7 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/fan.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/fanmodule.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/fanmodule.pm index 3e6234ee1..4dde955de 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/fanmodule.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/fanmodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/memoryunit.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/memoryunit.pm index 8f4c9d293..f8767644d 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/memoryunit.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/memoryunit.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/psu.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/psu.pm index 7510e4429..4d4ce74fa 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/psu.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/components/resources.pm b/src/network/cisco/firepower/fxos/snmp/mode/components/resources.pm index 3780848bc..132657d34 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/components/resources.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/cpu.pm b/src/network/cisco/firepower/fxos/snmp/mode/cpu.pm index 9d9022899..5b39e8414 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/cpu.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/faults.pm b/src/network/cisco/firepower/fxos/snmp/mode/faults.pm index ea6603288..788dfa1d1 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/faults.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/faults.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/hardware.pm b/src/network/cisco/firepower/fxos/snmp/mode/hardware.pm index 9d05bcb9f..a4a2183d0 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/hardware.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/mode/memory.pm b/src/network/cisco/firepower/fxos/snmp/mode/memory.pm index b7a7bfdb3..e5ce7c99b 100644 --- a/src/network/cisco/firepower/fxos/snmp/mode/memory.pm +++ b/src/network/cisco/firepower/fxos/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/firepower/fxos/snmp/plugin.pm b/src/network/cisco/firepower/fxos/snmp/plugin.pm index 44b8535de..e35ca9e6c 100644 --- a/src/network/cisco/firepower/fxos/snmp/plugin.pm +++ b/src/network/cisco/firepower/fxos/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/ironport/snmp/plugin.pm b/src/network/cisco/ironport/snmp/plugin.pm index e9f87229b..63ef7e52d 100644 --- a/src/network/cisco/ironport/snmp/plugin.pm +++ b/src/network/cisco/ironport/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/custom/api.pm b/src/network/cisco/meraki/cloudcontroller/restapi/custom/api.pm index 439fb8892..a743fa565 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/custom/api.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/apirequests.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/apirequests.pm index 91c41a463..3f6c45c03 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/apirequests.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/apirequests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/cache.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/cache.pm index 98d918c28..874d00a9c 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/cache.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/devices.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/devices.pm index 2224c74bd..a0f6bf1b1 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/devices.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/devices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/discovery.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/discovery.pm index b7cf901b6..7c0aad890 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/discovery.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/listdevices.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/listdevices.pm index 5467061e1..ba8fe5917 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/listdevices.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/listdevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/listtags.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/listtags.pm index 5bc95d9cd..c43ad7a1b 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/listtags.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/listtags.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/mode/networks.pm b/src/network/cisco/meraki/cloudcontroller/restapi/mode/networks.pm index 7bd3f9f10..6813fad09 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/mode/networks.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/mode/networks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/restapi/plugin.pm b/src/network/cisco/meraki/cloudcontroller/restapi/plugin.pm index 4a83255e4..2a8fd6a7a 100644 --- a/src/network/cisco/meraki/cloudcontroller/restapi/plugin.pm +++ b/src/network/cisco/meraki/cloudcontroller/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/snmp/mode/deviceusage.pm b/src/network/cisco/meraki/cloudcontroller/snmp/mode/deviceusage.pm index 7013ef950..5ee1eb8cd 100644 --- a/src/network/cisco/meraki/cloudcontroller/snmp/mode/deviceusage.pm +++ b/src/network/cisco/meraki/cloudcontroller/snmp/mode/deviceusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/snmp/mode/listdevices.pm b/src/network/cisco/meraki/cloudcontroller/snmp/mode/listdevices.pm index b42e580ec..1e1768dc7 100644 --- a/src/network/cisco/meraki/cloudcontroller/snmp/mode/listdevices.pm +++ b/src/network/cisco/meraki/cloudcontroller/snmp/mode/listdevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/meraki/cloudcontroller/snmp/plugin.pm b/src/network/cisco/meraki/cloudcontroller/snmp/plugin.pm index 671628f9a..9fb309c3a 100644 --- a/src/network/cisco/meraki/cloudcontroller/snmp/plugin.pm +++ b/src/network/cisco/meraki/cloudcontroller/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/prime/restapi/custom/api.pm b/src/network/cisco/prime/restapi/custom/api.pm index abdfa5f58..43fc8dda0 100644 --- a/src/network/cisco/prime/restapi/custom/api.pm +++ b/src/network/cisco/prime/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/prime/restapi/mode/apusage.pm b/src/network/cisco/prime/restapi/mode/apusage.pm index cd3a8ff5c..11468a112 100644 --- a/src/network/cisco/prime/restapi/mode/apusage.pm +++ b/src/network/cisco/prime/restapi/mode/apusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/prime/restapi/plugin.pm b/src/network/cisco/prime/restapi/plugin.pm index 4119aa2a3..91d9b3b8f 100644 --- a/src/network/cisco/prime/restapi/plugin.pm +++ b/src/network/cisco/prime/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/smallbusiness/standard/snmp/plugin.pm b/src/network/cisco/smallbusiness/standard/snmp/plugin.pm index d7b64a277..3f304c92b 100644 --- a/src/network/cisco/smallbusiness/standard/snmp/plugin.pm +++ b/src/network/cisco/smallbusiness/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/standard/snmp/plugin.pm b/src/network/cisco/standard/snmp/plugin.pm index b748d0b4c..cfa9d2bd0 100644 --- a/src/network/cisco/standard/snmp/plugin.pm +++ b/src/network/cisco/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/standard/ssh/custom/custom.pm b/src/network/cisco/standard/ssh/custom/custom.pm index fc881943d..85c087c06 100644 --- a/src/network/cisco/standard/ssh/custom/custom.pm +++ b/src/network/cisco/standard/ssh/custom/custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/standard/ssh/mode/cpu.pm b/src/network/cisco/standard/ssh/mode/cpu.pm index 45a0d69e0..ee5c8c6a5 100644 --- a/src/network/cisco/standard/ssh/mode/cpu.pm +++ b/src/network/cisco/standard/ssh/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -98,7 +98,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/cisco/standard/ssh/mode/voicedialpeer.pm b/src/network/cisco/standard/ssh/mode/voicedialpeer.pm index 0e72b6f31..b6a548519 100644 --- a/src/network/cisco/standard/ssh/mode/voicedialpeer.pm +++ b/src/network/cisco/standard/ssh/mode/voicedialpeer.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/standard/ssh/plugin.pm b/src/network/cisco/standard/ssh/plugin.pm index a55179340..d61249e88 100644 --- a/src/network/cisco/standard/ssh/plugin.pm +++ b/src/network/cisco/standard/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/appliance.pm b/src/network/cisco/umbrella/snmp/mode/appliance.pm index 02c2c898c..a2e5e2764 100644 --- a/src/network/cisco/umbrella/snmp/mode/appliance.pm +++ b/src/network/cisco/umbrella/snmp/mode/appliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/connectivity.pm b/src/network/cisco/umbrella/snmp/mode/connectivity.pm index 39c0810e8..2335c8c7c 100644 --- a/src/network/cisco/umbrella/snmp/mode/connectivity.pm +++ b/src/network/cisco/umbrella/snmp/mode/connectivity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/cpudetailed.pm b/src/network/cisco/umbrella/snmp/mode/cpudetailed.pm index 0665744a7..76b25a096 100644 --- a/src/network/cisco/umbrella/snmp/mode/cpudetailed.pm +++ b/src/network/cisco/umbrella/snmp/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/load.pm b/src/network/cisco/umbrella/snmp/mode/load.pm index 0841a4a2f..0cbed078d 100644 --- a/src/network/cisco/umbrella/snmp/mode/load.pm +++ b/src/network/cisco/umbrella/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/memory.pm b/src/network/cisco/umbrella/snmp/mode/memory.pm index 184a91aaf..9485c2fca 100644 --- a/src/network/cisco/umbrella/snmp/mode/memory.pm +++ b/src/network/cisco/umbrella/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/query.pm b/src/network/cisco/umbrella/snmp/mode/query.pm index b906c4627..9c0fbd8e7 100644 --- a/src/network/cisco/umbrella/snmp/mode/query.pm +++ b/src/network/cisco/umbrella/snmp/mode/query.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/mode/storage.pm b/src/network/cisco/umbrella/snmp/mode/storage.pm index 2ba0e8476..5fe7f43a8 100644 --- a/src/network/cisco/umbrella/snmp/mode/storage.pm +++ b/src/network/cisco/umbrella/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/umbrella/snmp/plugin.pm b/src/network/cisco/umbrella/snmp/plugin.pm index d302f81da..247604732 100644 --- a/src/network/cisco/umbrella/snmp/plugin.pm +++ b/src/network/cisco/umbrella/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/custom/xmlapi.pm b/src/network/cisco/vcs/restapi/custom/xmlapi.pm index 40ebc91a1..ab70d5a76 100644 --- a/src/network/cisco/vcs/restapi/custom/xmlapi.pm +++ b/src/network/cisco/vcs/restapi/custom/xmlapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/mode/alerts.pm b/src/network/cisco/vcs/restapi/mode/alerts.pm index 4cb61386f..0b28bdfb2 100644 --- a/src/network/cisco/vcs/restapi/mode/alerts.pm +++ b/src/network/cisco/vcs/restapi/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/mode/calls.pm b/src/network/cisco/vcs/restapi/mode/calls.pm index 045c46c0d..51317b68b 100644 --- a/src/network/cisco/vcs/restapi/mode/calls.pm +++ b/src/network/cisco/vcs/restapi/mode/calls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/mode/endpoints.pm b/src/network/cisco/vcs/restapi/mode/endpoints.pm index 28ba360c1..570644f28 100644 --- a/src/network/cisco/vcs/restapi/mode/endpoints.pm +++ b/src/network/cisco/vcs/restapi/mode/endpoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/mode/httpproxystats.pm b/src/network/cisco/vcs/restapi/mode/httpproxystats.pm index 12894ac91..b33235005 100644 --- a/src/network/cisco/vcs/restapi/mode/httpproxystats.pm +++ b/src/network/cisco/vcs/restapi/mode/httpproxystats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/mode/zones.pm b/src/network/cisco/vcs/restapi/mode/zones.pm index 92c895f83..7d81591a8 100644 --- a/src/network/cisco/vcs/restapi/mode/zones.pm +++ b/src/network/cisco/vcs/restapi/mode/zones.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vcs/restapi/plugin.pm b/src/network/cisco/vcs/restapi/plugin.pm index 29a6b55a4..a1a932a66 100644 --- a/src/network/cisco/vcs/restapi/plugin.pm +++ b/src/network/cisco/vcs/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/vg/snmp/plugin.pm b/src/network/cisco/vg/snmp/plugin.pm index aafc47775..93e5f7120 100644 --- a/src/network/cisco/vg/snmp/plugin.pm +++ b/src/network/cisco/vg/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/wap/snmp/mode/clients.pm b/src/network/cisco/wap/snmp/mode/clients.pm index 9e76d5e20..d5b2f240b 100644 --- a/src/network/cisco/wap/snmp/mode/clients.pm +++ b/src/network/cisco/wap/snmp/mode/clients.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/wap/snmp/mode/cpu.pm b/src/network/cisco/wap/snmp/mode/cpu.pm index 5b9091403..4feefce93 100644 --- a/src/network/cisco/wap/snmp/mode/cpu.pm +++ b/src/network/cisco/wap/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -74,7 +74,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/cisco/wap/snmp/mode/memory.pm b/src/network/cisco/wap/snmp/mode/memory.pm index 161d1d63e..f71718dd4 100644 --- a/src/network/cisco/wap/snmp/mode/memory.pm +++ b/src/network/cisco/wap/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/wap/snmp/mode/virtualaccesspoints.pm b/src/network/cisco/wap/snmp/mode/virtualaccesspoints.pm index 94c49af03..312afcccf 100644 --- a/src/network/cisco/wap/snmp/mode/virtualaccesspoints.pm +++ b/src/network/cisco/wap/snmp/mode/virtualaccesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/wap/snmp/plugin.pm b/src/network/cisco/wap/snmp/plugin.pm index ff0940694..9dd966a86 100644 --- a/src/network/cisco/wap/snmp/plugin.pm +++ b/src/network/cisco/wap/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cisco/wlc/snmp/plugin.pm b/src/network/cisco/wlc/snmp/plugin.pm index 43836dc36..d6a9d0cbb 100644 --- a/src/network/cisco/wlc/snmp/plugin.pm +++ b/src/network/cisco/wlc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/appacceleration/snmp/mode/cpu.pm b/src/network/citrix/appacceleration/snmp/mode/cpu.pm index ba7beba26..b58b1cdf6 100644 --- a/src/network/citrix/appacceleration/snmp/mode/cpu.pm +++ b/src/network/citrix/appacceleration/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -83,7 +83,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/citrix/appacceleration/snmp/mode/listserviceclass.pm b/src/network/citrix/appacceleration/snmp/mode/listserviceclass.pm index 42e6998ab..d6ced3dd0 100644 --- a/src/network/citrix/appacceleration/snmp/mode/listserviceclass.pm +++ b/src/network/citrix/appacceleration/snmp/mode/listserviceclass.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/appacceleration/snmp/mode/serviceclassusage.pm b/src/network/citrix/appacceleration/snmp/mode/serviceclassusage.pm index 396a1cd73..11e1bd2ad 100644 --- a/src/network/citrix/appacceleration/snmp/mode/serviceclassusage.pm +++ b/src/network/citrix/appacceleration/snmp/mode/serviceclassusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/appacceleration/snmp/plugin.pm b/src/network/citrix/appacceleration/snmp/plugin.pm index a26a07557..2780b0001 100644 --- a/src/network/citrix/appacceleration/snmp/plugin.pm +++ b/src/network/citrix/appacceleration/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/certificatesexpire.pm b/src/network/citrix/netscaler/snmp/mode/certificatesexpire.pm index ce7a97e3e..f5dacf09e 100644 --- a/src/network/citrix/netscaler/snmp/mode/certificatesexpire.pm +++ b/src/network/citrix/netscaler/snmp/mode/certificatesexpire.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/components/fanspeed.pm b/src/network/citrix/netscaler/snmp/mode/components/fanspeed.pm index 0bc2b2570..c07f3f3d0 100644 --- a/src/network/citrix/netscaler/snmp/mode/components/fanspeed.pm +++ b/src/network/citrix/netscaler/snmp/mode/components/fanspeed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/components/psu.pm b/src/network/citrix/netscaler/snmp/mode/components/psu.pm index f6fe93665..6d5f3ff00 100644 --- a/src/network/citrix/netscaler/snmp/mode/components/psu.pm +++ b/src/network/citrix/netscaler/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/components/temperature.pm b/src/network/citrix/netscaler/snmp/mode/components/temperature.pm index 619cb9278..01c79593e 100644 --- a/src/network/citrix/netscaler/snmp/mode/components/temperature.pm +++ b/src/network/citrix/netscaler/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/components/voltage.pm b/src/network/citrix/netscaler/snmp/mode/components/voltage.pm index acedd40a2..71b51364d 100644 --- a/src/network/citrix/netscaler/snmp/mode/components/voltage.pm +++ b/src/network/citrix/netscaler/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/connections.pm b/src/network/citrix/netscaler/snmp/mode/connections.pm index 2192da006..0ea48f36a 100644 --- a/src/network/citrix/netscaler/snmp/mode/connections.pm +++ b/src/network/citrix/netscaler/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/cpu.pm b/src/network/citrix/netscaler/snmp/mode/cpu.pm index 6d34e5bd8..646451a86 100644 --- a/src/network/citrix/netscaler/snmp/mode/cpu.pm +++ b/src/network/citrix/netscaler/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -87,7 +87,7 @@ __END__ =head1 MODE -Check cpu usage (NS-MIB-smiv2). +Check CPU usage (NS-MIB-smiv2). =over 8 diff --git a/src/network/citrix/netscaler/snmp/mode/hastate.pm b/src/network/citrix/netscaler/snmp/mode/hastate.pm index dca4d03aa..2706fd219 100644 --- a/src/network/citrix/netscaler/snmp/mode/hastate.pm +++ b/src/network/citrix/netscaler/snmp/mode/hastate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/health.pm b/src/network/citrix/netscaler/snmp/mode/health.pm index 159e4e3a5..62cf1cb42 100644 --- a/src/network/citrix/netscaler/snmp/mode/health.pm +++ b/src/network/citrix/netscaler/snmp/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/listvservers.pm b/src/network/citrix/netscaler/snmp/mode/listvservers.pm index e7a7c8fc5..4a470a3f7 100644 --- a/src/network/citrix/netscaler/snmp/mode/listvservers.pm +++ b/src/network/citrix/netscaler/snmp/mode/listvservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/memory.pm b/src/network/citrix/netscaler/snmp/mode/memory.pm index 647fb3783..52d9c2880 100644 --- a/src/network/citrix/netscaler/snmp/mode/memory.pm +++ b/src/network/citrix/netscaler/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/storage.pm b/src/network/citrix/netscaler/snmp/mode/storage.pm index bcd0ecff6..318f9ca97 100644 --- a/src/network/citrix/netscaler/snmp/mode/storage.pm +++ b/src/network/citrix/netscaler/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/mode/vserverstatus.pm b/src/network/citrix/netscaler/snmp/mode/vserverstatus.pm index f67ff5216..23ad55477 100644 --- a/src/network/citrix/netscaler/snmp/mode/vserverstatus.pm +++ b/src/network/citrix/netscaler/snmp/mode/vserverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/netscaler/snmp/plugin.pm b/src/network/citrix/netscaler/snmp/plugin.pm index b70e1033d..cdd2f99a4 100644 --- a/src/network/citrix/netscaler/snmp/plugin.pm +++ b/src/network/citrix/netscaler/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/sdx/snmp/mode/diskusage.pm b/src/network/citrix/sdx/snmp/mode/diskusage.pm index 47e9d146a..f055dcc26 100644 --- a/src/network/citrix/sdx/snmp/mode/diskusage.pm +++ b/src/network/citrix/sdx/snmp/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/sdx/snmp/mode/hardware.pm b/src/network/citrix/sdx/snmp/mode/hardware.pm index 43b149ac0..ffef82331 100644 --- a/src/network/citrix/sdx/snmp/mode/hardware.pm +++ b/src/network/citrix/sdx/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/sdx/snmp/mode/srusage.pm b/src/network/citrix/sdx/snmp/mode/srusage.pm index 2b477acaf..239e16aaa 100644 --- a/src/network/citrix/sdx/snmp/mode/srusage.pm +++ b/src/network/citrix/sdx/snmp/mode/srusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/sdx/snmp/mode/xenusage.pm b/src/network/citrix/sdx/snmp/mode/xenusage.pm index 2f19351fe..56d6513db 100644 --- a/src/network/citrix/sdx/snmp/mode/xenusage.pm +++ b/src/network/citrix/sdx/snmp/mode/xenusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/citrix/sdx/snmp/plugin.pm b/src/network/citrix/sdx/snmp/plugin.pm index a7780cd52..0eeb74595 100644 --- a/src/network/citrix/sdx/snmp/plugin.pm +++ b/src/network/citrix/sdx/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/colubris/snmp/mode/apusage.pm b/src/network/colubris/snmp/mode/apusage.pm index 0d593b677..3f99e3b5f 100644 --- a/src/network/colubris/snmp/mode/apusage.pm +++ b/src/network/colubris/snmp/mode/apusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/colubris/snmp/mode/cpu.pm b/src/network/colubris/snmp/mode/cpu.pm index 2362f0fe6..98b2bb38e 100644 --- a/src/network/colubris/snmp/mode/cpu.pm +++ b/src/network/colubris/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/colubris/snmp/mode/load.pm b/src/network/colubris/snmp/mode/load.pm index c1f4551d0..fd3588d6c 100644 --- a/src/network/colubris/snmp/mode/load.pm +++ b/src/network/colubris/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/colubris/snmp/mode/memory.pm b/src/network/colubris/snmp/mode/memory.pm index a88d87da1..ac222170c 100644 --- a/src/network/colubris/snmp/mode/memory.pm +++ b/src/network/colubris/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/colubris/snmp/mode/storage.pm b/src/network/colubris/snmp/mode/storage.pm index a8f6bf28a..c728545f2 100644 --- a/src/network/colubris/snmp/mode/storage.pm +++ b/src/network/colubris/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/colubris/snmp/plugin.pm b/src/network/colubris/snmp/plugin.pm index 593010176..3af2bfc0f 100644 --- a/src/network/colubris/snmp/plugin.pm +++ b/src/network/colubris/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/mode/components/service.pm b/src/network/cyberoam/snmp/mode/components/service.pm index ef01f9580..5a392add0 100644 --- a/src/network/cyberoam/snmp/mode/components/service.pm +++ b/src/network/cyberoam/snmp/mode/components/service.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/mode/cpu.pm b/src/network/cyberoam/snmp/mode/cpu.pm index 09a6d66bc..3ad04a69a 100644 --- a/src/network/cyberoam/snmp/mode/cpu.pm +++ b/src/network/cyberoam/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/mode/memory.pm b/src/network/cyberoam/snmp/mode/memory.pm index cf39eaac8..3688b7b9b 100644 --- a/src/network/cyberoam/snmp/mode/memory.pm +++ b/src/network/cyberoam/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/mode/requests.pm b/src/network/cyberoam/snmp/mode/requests.pm index 7d4634594..d74145983 100644 --- a/src/network/cyberoam/snmp/mode/requests.pm +++ b/src/network/cyberoam/snmp/mode/requests.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/mode/services.pm b/src/network/cyberoam/snmp/mode/services.pm index 42f95f136..24771465e 100644 --- a/src/network/cyberoam/snmp/mode/services.pm +++ b/src/network/cyberoam/snmp/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/mode/storage.pm b/src/network/cyberoam/snmp/mode/storage.pm index a66e6d29f..1d77b4799 100644 --- a/src/network/cyberoam/snmp/mode/storage.pm +++ b/src/network/cyberoam/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/cyberoam/snmp/plugin.pm b/src/network/cyberoam/snmp/plugin.pm index d5f043517..9f5370f0f 100644 --- a/src/network/cyberoam/snmp/plugin.pm +++ b/src/network/cyberoam/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/6200/snmp/plugin.pm b/src/network/dell/6200/snmp/plugin.pm index 98926edc8..4d4243b66 100644 --- a/src/network/dell/6200/snmp/plugin.pm +++ b/src/network/dell/6200/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/nseries/snmp/mode/interfaces.pm b/src/network/dell/nseries/snmp/mode/interfaces.pm index 27ca88c32..41a3d65c5 100644 --- a/src/network/dell/nseries/snmp/mode/interfaces.pm +++ b/src/network/dell/nseries/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/dell/nseries/snmp/mode/time.pm b/src/network/dell/nseries/snmp/mode/time.pm index b451b5cdf..1a30406f6 100644 --- a/src/network/dell/nseries/snmp/mode/time.pm +++ b/src/network/dell/nseries/snmp/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/nseries/snmp/mode/uptime.pm b/src/network/dell/nseries/snmp/mode/uptime.pm index 59886dc24..1d77e063b 100644 --- a/src/network/dell/nseries/snmp/mode/uptime.pm +++ b/src/network/dell/nseries/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/nseries/snmp/plugin.pm b/src/network/dell/nseries/snmp/plugin.pm index 2b97e650a..52cae08af 100644 --- a/src/network/dell/nseries/snmp/plugin.pm +++ b/src/network/dell/nseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/components/card.pm b/src/network/dell/os10/snmp/mode/components/card.pm index 01e0b9c3e..610eeea7c 100644 --- a/src/network/dell/os10/snmp/mode/components/card.pm +++ b/src/network/dell/os10/snmp/mode/components/card.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/components/fan.pm b/src/network/dell/os10/snmp/mode/components/fan.pm index a95c1c57f..f2a0c183d 100644 --- a/src/network/dell/os10/snmp/mode/components/fan.pm +++ b/src/network/dell/os10/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/components/fantray.pm b/src/network/dell/os10/snmp/mode/components/fantray.pm index bf494b731..f2b6df87d 100644 --- a/src/network/dell/os10/snmp/mode/components/fantray.pm +++ b/src/network/dell/os10/snmp/mode/components/fantray.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/components/psu.pm b/src/network/dell/os10/snmp/mode/components/psu.pm index 208a9e4f2..8ca79003b 100644 --- a/src/network/dell/os10/snmp/mode/components/psu.pm +++ b/src/network/dell/os10/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/components/resources.pm b/src/network/dell/os10/snmp/mode/components/resources.pm index c480566f1..71da225c4 100644 --- a/src/network/dell/os10/snmp/mode/components/resources.pm +++ b/src/network/dell/os10/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/components/temperature.pm b/src/network/dell/os10/snmp/mode/components/temperature.pm index 8f1656368..4af7ebc96 100644 --- a/src/network/dell/os10/snmp/mode/components/temperature.pm +++ b/src/network/dell/os10/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/mode/hardware.pm b/src/network/dell/os10/snmp/mode/hardware.pm index cd7076bfc..23adb6395 100644 --- a/src/network/dell/os10/snmp/mode/hardware.pm +++ b/src/network/dell/os10/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/os10/snmp/plugin.pm b/src/network/dell/os10/snmp/plugin.pm index fe9173588..73c5caea0 100644 --- a/src/network/dell/os10/snmp/plugin.pm +++ b/src/network/dell/os10/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/sseries/snmp/plugin.pm b/src/network/dell/sseries/snmp/plugin.pm index c51956971..7acf86d55 100644 --- a/src/network/dell/sseries/snmp/plugin.pm +++ b/src/network/dell/sseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dell/xseries/snmp/plugin.pm b/src/network/dell/xseries/snmp/plugin.pm index ef5b7a1cd..efe4c0faa 100644 --- a/src/network/dell/xseries/snmp/plugin.pm +++ b/src/network/dell/xseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/denyall/snmp/mode/listreverseproxy.pm b/src/network/denyall/snmp/mode/listreverseproxy.pm index a4845e35a..5dfdad7fe 100644 --- a/src/network/denyall/snmp/mode/listreverseproxy.pm +++ b/src/network/denyall/snmp/mode/listreverseproxy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/denyall/snmp/mode/reverseproxy.pm b/src/network/denyall/snmp/mode/reverseproxy.pm index abca9147f..de49201b6 100644 --- a/src/network/denyall/snmp/mode/reverseproxy.pm +++ b/src/network/denyall/snmp/mode/reverseproxy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/denyall/snmp/plugin.pm b/src/network/denyall/snmp/plugin.pm index da235618f..9cb5d98c0 100644 --- a/src/network/denyall/snmp/plugin.pm +++ b/src/network/denyall/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/anywhereusb/snmp/mode/cpu.pm b/src/network/digi/anywhereusb/snmp/mode/cpu.pm index db3b08e69..9726981e2 100644 --- a/src/network/digi/anywhereusb/snmp/mode/cpu.pm +++ b/src/network/digi/anywhereusb/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/anywhereusb/snmp/mode/memory.pm b/src/network/digi/anywhereusb/snmp/mode/memory.pm index 29420ef94..04b96a386 100644 --- a/src/network/digi/anywhereusb/snmp/mode/memory.pm +++ b/src/network/digi/anywhereusb/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/anywhereusb/snmp/plugin.pm b/src/network/digi/anywhereusb/snmp/plugin.pm index df7ea7302..df3e22233 100644 --- a/src/network/digi/anywhereusb/snmp/plugin.pm +++ b/src/network/digi/anywhereusb/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/portserverts/snmp/mode/cpu.pm b/src/network/digi/portserverts/snmp/mode/cpu.pm index cda5c17d5..75bd1bde7 100644 --- a/src/network/digi/portserverts/snmp/mode/cpu.pm +++ b/src/network/digi/portserverts/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/portserverts/snmp/mode/memory.pm b/src/network/digi/portserverts/snmp/mode/memory.pm index baaa03b49..300384b5d 100644 --- a/src/network/digi/portserverts/snmp/mode/memory.pm +++ b/src/network/digi/portserverts/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/portserverts/snmp/plugin.pm b/src/network/digi/portserverts/snmp/plugin.pm index e13c09de4..7e76edcd4 100644 --- a/src/network/digi/portserverts/snmp/plugin.pm +++ b/src/network/digi/portserverts/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/sarian/snmp/mode/cpu.pm b/src/network/digi/sarian/snmp/mode/cpu.pm index f68209c1b..87ccf77dc 100644 --- a/src/network/digi/sarian/snmp/mode/cpu.pm +++ b/src/network/digi/sarian/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -84,7 +84,7 @@ __END__ =head1 MODE -Check cpu usage (sarian-monitor.mib). +Check CPU usage (sarian-monitor.mib). =over 8 diff --git a/src/network/digi/sarian/snmp/mode/gprs.pm b/src/network/digi/sarian/snmp/mode/gprs.pm index 003771eec..a6dba76e3 100644 --- a/src/network/digi/sarian/snmp/mode/gprs.pm +++ b/src/network/digi/sarian/snmp/mode/gprs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/sarian/snmp/mode/memory.pm b/src/network/digi/sarian/snmp/mode/memory.pm index 33ada02a6..2ca02d4bb 100644 --- a/src/network/digi/sarian/snmp/mode/memory.pm +++ b/src/network/digi/sarian/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/digi/sarian/snmp/mode/temperature.pm b/src/network/digi/sarian/snmp/mode/temperature.pm index 0391dd6ed..35a49906e 100644 --- a/src/network/digi/sarian/snmp/mode/temperature.pm +++ b/src/network/digi/sarian/snmp/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and temperatureplication monitoring for diff --git a/src/network/digi/sarian/snmp/plugin.pm b/src/network/digi/sarian/snmp/plugin.pm index 223b4a8be..04419f95f 100644 --- a/src/network/digi/sarian/snmp/plugin.pm +++ b/src/network/digi/sarian/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/dgs3100/snmp/mode/components/fan.pm b/src/network/dlink/dgs3100/snmp/mode/components/fan.pm index 1b1a4d5cf..17460f043 100644 --- a/src/network/dlink/dgs3100/snmp/mode/components/fan.pm +++ b/src/network/dlink/dgs3100/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/dgs3100/snmp/mode/components/psu.pm b/src/network/dlink/dgs3100/snmp/mode/components/psu.pm index 71240f13f..1912bb3b7 100644 --- a/src/network/dlink/dgs3100/snmp/mode/components/psu.pm +++ b/src/network/dlink/dgs3100/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/dgs3100/snmp/mode/cpu.pm b/src/network/dlink/dgs3100/snmp/mode/cpu.pm index 496979eff..224da3b76 100644 --- a/src/network/dlink/dgs3100/snmp/mode/cpu.pm +++ b/src/network/dlink/dgs3100/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -131,7 +131,7 @@ __END__ =head1 MODE -Check cpu usage (env_mib.mib). +Check CPU usage (env_mib.mib). =over 8 diff --git a/src/network/dlink/dgs3100/snmp/mode/hardware.pm b/src/network/dlink/dgs3100/snmp/mode/hardware.pm index afd037944..7eeb598fd 100644 --- a/src/network/dlink/dgs3100/snmp/mode/hardware.pm +++ b/src/network/dlink/dgs3100/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/dgs3100/snmp/plugin.pm b/src/network/dlink/dgs3100/snmp/plugin.pm index 62d845b93..30bb9aee7 100644 --- a/src/network/dlink/dgs3100/snmp/plugin.pm +++ b/src/network/dlink/dgs3100/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/mode/components/fan.pm b/src/network/dlink/standard/snmp/mode/components/fan.pm index a2f330913..54db06a47 100644 --- a/src/network/dlink/standard/snmp/mode/components/fan.pm +++ b/src/network/dlink/standard/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/mode/components/psu.pm b/src/network/dlink/standard/snmp/mode/components/psu.pm index 58e698177..924c4195b 100644 --- a/src/network/dlink/standard/snmp/mode/components/psu.pm +++ b/src/network/dlink/standard/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/mode/components/temperature.pm b/src/network/dlink/standard/snmp/mode/components/temperature.pm index 0c6eae264..5b912f66e 100644 --- a/src/network/dlink/standard/snmp/mode/components/temperature.pm +++ b/src/network/dlink/standard/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/mode/cpu.pm b/src/network/dlink/standard/snmp/mode/cpu.pm index 950a3a8e9..be2a64c7a 100644 --- a/src/network/dlink/standard/snmp/mode/cpu.pm +++ b/src/network/dlink/standard/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -256,13 +256,13 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 =item B<--check-order> -Check cpu in standard dlink mib. If you have some issue (wrong cpu information in a specific mib), you can change the order +Check CPU in standard dlink mib. If you have some issue (wrong CPU information in a specific mib), you can change the order (default: 'common,industrial,agent'). =item B<--warning-*> B<--critical-*> diff --git a/src/network/dlink/standard/snmp/mode/hardware.pm b/src/network/dlink/standard/snmp/mode/hardware.pm index a9d7fcfc7..7b2918720 100644 --- a/src/network/dlink/standard/snmp/mode/hardware.pm +++ b/src/network/dlink/standard/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/mode/interfaces.pm b/src/network/dlink/standard/snmp/mode/interfaces.pm index e549b7fff..b304860c2 100644 --- a/src/network/dlink/standard/snmp/mode/interfaces.pm +++ b/src/network/dlink/standard/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -248,7 +248,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/dlink/standard/snmp/mode/memory.pm b/src/network/dlink/standard/snmp/mode/memory.pm index dbd5e2057..a68681675 100644 --- a/src/network/dlink/standard/snmp/mode/memory.pm +++ b/src/network/dlink/standard/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/mode/stack.pm b/src/network/dlink/standard/snmp/mode/stack.pm index 6775d708c..55cf9324b 100644 --- a/src/network/dlink/standard/snmp/mode/stack.pm +++ b/src/network/dlink/standard/snmp/mode/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/dlink/standard/snmp/plugin.pm b/src/network/dlink/standard/snmp/plugin.pm index bb262c9bb..0548696b2 100644 --- a/src/network/dlink/standard/snmp/plugin.pm +++ b/src/network/dlink/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/efficientip/snmp/mode/dhcpusage.pm b/src/network/efficientip/snmp/mode/dhcpusage.pm index 051ca6fff..9b47030ab 100644 --- a/src/network/efficientip/snmp/mode/dhcpusage.pm +++ b/src/network/efficientip/snmp/mode/dhcpusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/efficientip/snmp/mode/dnsusage.pm b/src/network/efficientip/snmp/mode/dnsusage.pm index 7e8e709c4..f92277f16 100644 --- a/src/network/efficientip/snmp/mode/dnsusage.pm +++ b/src/network/efficientip/snmp/mode/dnsusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/efficientip/snmp/mode/status.pm b/src/network/efficientip/snmp/mode/status.pm index bc10670f8..fbbb91dcf 100644 --- a/src/network/efficientip/snmp/mode/status.pm +++ b/src/network/efficientip/snmp/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/efficientip/snmp/plugin.pm b/src/network/efficientip/snmp/plugin.pm index 8c9fbb09e..98ff9274f 100644 --- a/src/network/efficientip/snmp/plugin.pm +++ b/src/network/efficientip/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -46,6 +46,6 @@ __END__ =head1 PLUGIN DESCRIPTION Check Efficient IP equipment in SNMP. -Please use plugin SNMP Linux for system checks ('cpu', 'memory', 'traffic',...). +Please use the SNMP Linux plugin for system checks (CPU, memory, traffic, ...). =cut diff --git a/src/network/enterasys/snmp/mode/cpu.pm b/src/network/enterasys/snmp/mode/cpu.pm index 8e98565dc..48ad4d700 100644 --- a/src/network/enterasys/snmp/mode/cpu.pm +++ b/src/network/enterasys/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -260,7 +260,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/enterasys/snmp/mode/interfaces.pm b/src/network/enterasys/snmp/mode/interfaces.pm index f2a6ead7d..bf589c090 100644 --- a/src/network/enterasys/snmp/mode/interfaces.pm +++ b/src/network/enterasys/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/enterasys/snmp/mode/memory.pm b/src/network/enterasys/snmp/mode/memory.pm index 9134ccb98..9276c62ea 100644 --- a/src/network/enterasys/snmp/mode/memory.pm +++ b/src/network/enterasys/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/enterasys/snmp/mode/storage.pm b/src/network/enterasys/snmp/mode/storage.pm index c18c11161..344dc9b7d 100644 --- a/src/network/enterasys/snmp/mode/storage.pm +++ b/src/network/enterasys/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/enterasys/snmp/mode/uptime.pm b/src/network/enterasys/snmp/mode/uptime.pm index e748dbcec..3672cf5c0 100644 --- a/src/network/enterasys/snmp/mode/uptime.pm +++ b/src/network/enterasys/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/enterasys/snmp/plugin.pm b/src/network/enterasys/snmp/plugin.pm index c887030c9..2bf18b503 100644 --- a/src/network/enterasys/snmp/plugin.pm +++ b/src/network/enterasys/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/evertz/AEA47721/snmp/mode/streamstatus.pm b/src/network/evertz/AEA47721/snmp/mode/streamstatus.pm index 6272c199f..3d807613f 100644 --- a/src/network/evertz/AEA47721/snmp/mode/streamstatus.pm +++ b/src/network/evertz/AEA47721/snmp/mode/streamstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/evertz/AEA47721/snmp/plugin.pm b/src/network/evertz/AEA47721/snmp/plugin.pm index b2503d2fc..d7e01d1f1 100644 --- a/src/network/evertz/AEA47721/snmp/plugin.pm +++ b/src/network/evertz/AEA47721/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/evertz/DA6HDL7700/snmp/mode/videostatus.pm b/src/network/evertz/DA6HDL7700/snmp/mode/videostatus.pm index 99da6b8b2..6ab579eb2 100644 --- a/src/network/evertz/DA6HDL7700/snmp/mode/videostatus.pm +++ b/src/network/evertz/DA6HDL7700/snmp/mode/videostatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/evertz/DA6HDL7700/snmp/plugin.pm b/src/network/evertz/DA6HDL7700/snmp/plugin.pm index e0acee662..ce02d5354 100644 --- a/src/network/evertz/DA6HDL7700/snmp/plugin.pm +++ b/src/network/evertz/DA6HDL7700/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/evertz/FC7800/snmp/mode/hardware.pm b/src/network/evertz/FC7800/snmp/mode/hardware.pm index ad544a898..4f2a874ab 100644 --- a/src/network/evertz/FC7800/snmp/mode/hardware.pm +++ b/src/network/evertz/FC7800/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/evertz/FC7800/snmp/plugin.pm b/src/network/evertz/FC7800/snmp/plugin.pm index 202bbab3e..88ccb118e 100644 --- a/src/network/evertz/FC7800/snmp/plugin.pm +++ b/src/network/evertz/FC7800/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/components/fan.pm b/src/network/extreme/snmp/mode/components/fan.pm index d06f684b3..54aa9ee54 100644 --- a/src/network/extreme/snmp/mode/components/fan.pm +++ b/src/network/extreme/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/components/poe.pm b/src/network/extreme/snmp/mode/components/poe.pm index cb8078742..3581554e2 100644 --- a/src/network/extreme/snmp/mode/components/poe.pm +++ b/src/network/extreme/snmp/mode/components/poe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/components/psu.pm b/src/network/extreme/snmp/mode/components/psu.pm index 7bf158e67..1963873fc 100644 --- a/src/network/extreme/snmp/mode/components/psu.pm +++ b/src/network/extreme/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/components/slot.pm b/src/network/extreme/snmp/mode/components/slot.pm index 3af43e750..e67302259 100644 --- a/src/network/extreme/snmp/mode/components/slot.pm +++ b/src/network/extreme/snmp/mode/components/slot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/components/temperature.pm b/src/network/extreme/snmp/mode/components/temperature.pm index dd0b033d9..2e0ea4805 100644 --- a/src/network/extreme/snmp/mode/components/temperature.pm +++ b/src/network/extreme/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/cpu.pm b/src/network/extreme/snmp/mode/cpu.pm index 7f940f57f..86ccc5f1a 100644 --- a/src/network/extreme/snmp/mode/cpu.pm +++ b/src/network/extreme/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/hardware.pm b/src/network/extreme/snmp/mode/hardware.pm index 70f402bb2..70b84bbdf 100644 --- a/src/network/extreme/snmp/mode/hardware.pm +++ b/src/network/extreme/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/interfaces.pm b/src/network/extreme/snmp/mode/interfaces.pm index 587015451..ac4e328dc 100644 --- a/src/network/extreme/snmp/mode/interfaces.pm +++ b/src/network/extreme/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -201,7 +201,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/extreme/snmp/mode/memory.pm b/src/network/extreme/snmp/mode/memory.pm index 0b393ed7d..7af3ede40 100644 --- a/src/network/extreme/snmp/mode/memory.pm +++ b/src/network/extreme/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/mode/stack.pm b/src/network/extreme/snmp/mode/stack.pm index 678602193..db6b4e9be 100644 --- a/src/network/extreme/snmp/mode/stack.pm +++ b/src/network/extreme/snmp/mode/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/extreme/snmp/plugin.pm b/src/network/extreme/snmp/plugin.pm index 35c731ad9..57a6a7f5a 100644 --- a/src/network/extreme/snmp/plugin.pm +++ b/src/network/extreme/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/apm.pm b/src/network/f5/bigip/snmp/mode/apm.pm index b27828f40..022b64985 100644 --- a/src/network/f5/bigip/snmp/mode/apm.pm +++ b/src/network/f5/bigip/snmp/mode/apm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/components/fan.pm b/src/network/f5/bigip/snmp/mode/components/fan.pm index 4a5fb0cf2..50275a116 100644 --- a/src/network/f5/bigip/snmp/mode/components/fan.pm +++ b/src/network/f5/bigip/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/components/psu.pm b/src/network/f5/bigip/snmp/mode/components/psu.pm index d2e8ef001..dcfadbd15 100644 --- a/src/network/f5/bigip/snmp/mode/components/psu.pm +++ b/src/network/f5/bigip/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/components/temperature.pm b/src/network/f5/bigip/snmp/mode/components/temperature.pm index d8025c9ee..6cd7348e8 100644 --- a/src/network/f5/bigip/snmp/mode/components/temperature.pm +++ b/src/network/f5/bigip/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/connections.pm b/src/network/f5/bigip/snmp/mode/connections.pm index 21bba1bf7..89d52e80c 100644 --- a/src/network/f5/bigip/snmp/mode/connections.pm +++ b/src/network/f5/bigip/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/failover.pm b/src/network/f5/bigip/snmp/mode/failover.pm index 35baa0fcf..c856f96c8 100644 --- a/src/network/f5/bigip/snmp/mode/failover.pm +++ b/src/network/f5/bigip/snmp/mode/failover.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/hardware.pm b/src/network/f5/bigip/snmp/mode/hardware.pm index e8292f237..f249df843 100644 --- a/src/network/f5/bigip/snmp/mode/hardware.pm +++ b/src/network/f5/bigip/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/listnodes.pm b/src/network/f5/bigip/snmp/mode/listnodes.pm index 57e1084bd..d8a9fbbef 100644 --- a/src/network/f5/bigip/snmp/mode/listnodes.pm +++ b/src/network/f5/bigip/snmp/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/listpools.pm b/src/network/f5/bigip/snmp/mode/listpools.pm index c1000f4d8..0229c9af6 100644 --- a/src/network/f5/bigip/snmp/mode/listpools.pm +++ b/src/network/f5/bigip/snmp/mode/listpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/listtrunks.pm b/src/network/f5/bigip/snmp/mode/listtrunks.pm index 25141a1c1..65f759724 100644 --- a/src/network/f5/bigip/snmp/mode/listtrunks.pm +++ b/src/network/f5/bigip/snmp/mode/listtrunks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/listvirtualservers.pm b/src/network/f5/bigip/snmp/mode/listvirtualservers.pm index 90542c985..57d9b95ba 100644 --- a/src/network/f5/bigip/snmp/mode/listvirtualservers.pm +++ b/src/network/f5/bigip/snmp/mode/listvirtualservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/nodestatus.pm b/src/network/f5/bigip/snmp/mode/nodestatus.pm index f9a7a995d..69c6365bb 100644 --- a/src/network/f5/bigip/snmp/mode/nodestatus.pm +++ b/src/network/f5/bigip/snmp/mode/nodestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/poolstatus.pm b/src/network/f5/bigip/snmp/mode/poolstatus.pm index aa45463c0..2d714d9da 100644 --- a/src/network/f5/bigip/snmp/mode/poolstatus.pm +++ b/src/network/f5/bigip/snmp/mode/poolstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/tmmusage.pm b/src/network/f5/bigip/snmp/mode/tmmusage.pm index 01de81084..1c7e8cb1d 100644 --- a/src/network/f5/bigip/snmp/mode/tmmusage.pm +++ b/src/network/f5/bigip/snmp/mode/tmmusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/trunks.pm b/src/network/f5/bigip/snmp/mode/trunks.pm index 37c05b589..8d5678b57 100644 --- a/src/network/f5/bigip/snmp/mode/trunks.pm +++ b/src/network/f5/bigip/snmp/mode/trunks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm b/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm index 240d75b9f..53fbcf61d 100644 --- a/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm +++ b/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/f5/bigip/snmp/plugin.pm b/src/network/f5/bigip/snmp/plugin.pm index 89f5be4ca..29ed15ec8 100644 --- a/src/network/f5/bigip/snmp/plugin.pm +++ b/src/network/f5/bigip/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -56,6 +56,6 @@ __END__ =head1 PLUGIN DESCRIPTION Check F-5 hardware in SNMP. -Please use plugin SNMP Linux for system checks ('cpu', 'memory', 'traffic',...). +Please use the SNMP Linux plugin for system checks (CPU, memory, traffic, ...). =cut diff --git a/src/network/fiberstore/snmp/mode/components/fan.pm b/src/network/fiberstore/snmp/mode/components/fan.pm index 081d2b768..72e2abc62 100644 --- a/src/network/fiberstore/snmp/mode/components/fan.pm +++ b/src/network/fiberstore/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fiberstore/snmp/mode/components/power.pm b/src/network/fiberstore/snmp/mode/components/power.pm index c6920fd37..d12a10946 100644 --- a/src/network/fiberstore/snmp/mode/components/power.pm +++ b/src/network/fiberstore/snmp/mode/components/power.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fiberstore/snmp/mode/components/slot.pm b/src/network/fiberstore/snmp/mode/components/slot.pm index d36ba7f65..bd42ed564 100644 --- a/src/network/fiberstore/snmp/mode/components/slot.pm +++ b/src/network/fiberstore/snmp/mode/components/slot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fiberstore/snmp/mode/cpu.pm b/src/network/fiberstore/snmp/mode/cpu.pm index c9cd56a18..69924e092 100644 --- a/src/network/fiberstore/snmp/mode/cpu.pm +++ b/src/network/fiberstore/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -79,7 +79,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/fiberstore/snmp/mode/hardware.pm b/src/network/fiberstore/snmp/mode/hardware.pm index 1323502dc..861b75d67 100644 --- a/src/network/fiberstore/snmp/mode/hardware.pm +++ b/src/network/fiberstore/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fiberstore/snmp/mode/memory.pm b/src/network/fiberstore/snmp/mode/memory.pm index 0b660d7b5..742f1bb7d 100644 --- a/src/network/fiberstore/snmp/mode/memory.pm +++ b/src/network/fiberstore/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fiberstore/snmp/plugin.pm b/src/network/fiberstore/snmp/plugin.pm index 7338f54a3..f74fc3608 100644 --- a/src/network/fiberstore/snmp/plugin.pm +++ b/src/network/fiberstore/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/components/fan.pm b/src/network/fortinet/fortiadc/snmp/mode/components/fan.pm index 3d92b3a2f..7e435a3ca 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/components/fan.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/components/temperature.pm b/src/network/fortinet/fortiadc/snmp/mode/components/temperature.pm index a0420540b..abee79770 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/components/temperature.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/cpu.pm b/src/network/fortinet/fortiadc/snmp/mode/cpu.pm index e4fd21bdc..76cabbe3c 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/cpu.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -168,7 +168,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/fortinet/fortiadc/snmp/mode/hardware.pm b/src/network/fortinet/fortiadc/snmp/mode/hardware.pm index c836c25c5..525dfec23 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/hardware.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/interfaces.pm b/src/network/fortinet/fortiadc/snmp/mode/interfaces.pm index 65fc06276..620e5bb11 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/interfaces.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/fortinet/fortiadc/snmp/mode/listvirtualservers.pm b/src/network/fortinet/fortiadc/snmp/mode/listvirtualservers.pm index 3431891fc..4a51ebd8e 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/listvirtualservers.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/listvirtualservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/memory.pm b/src/network/fortinet/fortiadc/snmp/mode/memory.pm index f924962d8..d88535d80 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/memory.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/security.pm b/src/network/fortinet/fortiadc/snmp/mode/security.pm index 2e809fe90..50af5c8fb 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/security.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/security.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/uptime.pm b/src/network/fortinet/fortiadc/snmp/mode/uptime.pm index 5398d6874..2ac115bce 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/uptime.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/mode/virtualservers.pm b/src/network/fortinet/fortiadc/snmp/mode/virtualservers.pm index 08df6da05..bb740c7e5 100644 --- a/src/network/fortinet/fortiadc/snmp/mode/virtualservers.pm +++ b/src/network/fortinet/fortiadc/snmp/mode/virtualservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiadc/snmp/plugin.pm b/src/network/fortinet/fortiadc/snmp/plugin.pm index 000c2d882..d110e8a23 100644 --- a/src/network/fortinet/fortiadc/snmp/plugin.pm +++ b/src/network/fortinet/fortiadc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiauthenticator/snmp/mode/authenticator.pm b/src/network/fortinet/fortiauthenticator/snmp/mode/authenticator.pm index fec571a1c..f8670eaaf 100644 --- a/src/network/fortinet/fortiauthenticator/snmp/mode/authenticator.pm +++ b/src/network/fortinet/fortiauthenticator/snmp/mode/authenticator.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiauthenticator/snmp/mode/cpu.pm b/src/network/fortinet/fortiauthenticator/snmp/mode/cpu.pm index 4ed3dc674..5ee64a59f 100644 --- a/src/network/fortinet/fortiauthenticator/snmp/mode/cpu.pm +++ b/src/network/fortinet/fortiauthenticator/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -73,7 +73,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/fortinet/fortiauthenticator/snmp/mode/disklog.pm b/src/network/fortinet/fortiauthenticator/snmp/mode/disklog.pm index 28e2853e1..b566a8b3b 100644 --- a/src/network/fortinet/fortiauthenticator/snmp/mode/disklog.pm +++ b/src/network/fortinet/fortiauthenticator/snmp/mode/disklog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiauthenticator/snmp/mode/ha.pm b/src/network/fortinet/fortiauthenticator/snmp/mode/ha.pm index 6ed968911..3c8102877 100644 --- a/src/network/fortinet/fortiauthenticator/snmp/mode/ha.pm +++ b/src/network/fortinet/fortiauthenticator/snmp/mode/ha.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiauthenticator/snmp/mode/memory.pm b/src/network/fortinet/fortiauthenticator/snmp/mode/memory.pm index b1193b550..0f3087bae 100644 --- a/src/network/fortinet/fortiauthenticator/snmp/mode/memory.pm +++ b/src/network/fortinet/fortiauthenticator/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiauthenticator/snmp/plugin.pm b/src/network/fortinet/fortiauthenticator/snmp/plugin.pm index 5fea1f1f8..653a3966b 100644 --- a/src/network/fortinet/fortiauthenticator/snmp/plugin.pm +++ b/src/network/fortinet/fortiauthenticator/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/restapi/custom/api.pm b/src/network/fortinet/fortigate/restapi/custom/api.pm index f89a09d89..d81156370 100644 --- a/src/network/fortinet/fortigate/restapi/custom/api.pm +++ b/src/network/fortinet/fortigate/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/restapi/mode/ha.pm b/src/network/fortinet/fortigate/restapi/mode/ha.pm index 868264f3a..d58c4d3fc 100644 --- a/src/network/fortinet/fortigate/restapi/mode/ha.pm +++ b/src/network/fortinet/fortigate/restapi/mode/ha.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/restapi/mode/health.pm b/src/network/fortinet/fortigate/restapi/mode/health.pm index b0c87835a..ed6479aa9 100644 --- a/src/network/fortinet/fortigate/restapi/mode/health.pm +++ b/src/network/fortinet/fortigate/restapi/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/restapi/mode/licenses.pm b/src/network/fortinet/fortigate/restapi/mode/licenses.pm index 4a4f66d42..54870fe7a 100644 --- a/src/network/fortinet/fortigate/restapi/mode/licenses.pm +++ b/src/network/fortinet/fortigate/restapi/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/restapi/mode/system.pm b/src/network/fortinet/fortigate/restapi/mode/system.pm index 4b43674d9..6cd2872d1 100644 --- a/src/network/fortinet/fortigate/restapi/mode/system.pm +++ b/src/network/fortinet/fortigate/restapi/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/restapi/plugin.pm b/src/network/fortinet/fortigate/restapi/plugin.pm index 9362d236e..c8d05fa03 100644 --- a/src/network/fortinet/fortigate/restapi/plugin.pm +++ b/src/network/fortinet/fortigate/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortigate/snmp/plugin.pm b/src/network/fortinet/fortigate/snmp/plugin.pm index ef89e93b6..3e0b7f70e 100644 --- a/src/network/fortinet/fortigate/snmp/plugin.pm +++ b/src/network/fortinet/fortigate/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -38,7 +38,9 @@ sub new { 'hardware' => 'centreon::common::fortinet::fortigate::snmp::mode::hardware', 'interfaces' => 'centreon::common::fortinet::fortigate::snmp::mode::interfaces', 'ips-stats' => 'centreon::common::fortinet::fortigate::snmp::mode::ipsstats', + 'link-monitor' => 'centreon::common::fortinet::fortigate::snmp::mode::linkmonitor', 'list-interfaces' => 'snmp_standard::mode::listinterfaces', + 'list-link-monitors' => 'centreon::common::fortinet::fortigate::snmp::mode::listlinkmonitors', 'list-virtualdomains' => 'centreon::common::fortinet::fortigate::snmp::mode::listvirtualdomains', 'memory' => 'centreon::common::fortinet::fortigate::snmp::mode::memory', 'sessions' => 'centreon::common::fortinet::fortigate::snmp::mode::sessions', diff --git a/src/network/fortinet/fortimail/snmp/mode/cpu.pm b/src/network/fortinet/fortimail/snmp/mode/cpu.pm index cf6dd364d..4d5df9625 100644 --- a/src/network/fortinet/fortimail/snmp/mode/cpu.pm +++ b/src/network/fortinet/fortimail/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -72,7 +72,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/fortinet/fortimail/snmp/mode/interfaces.pm b/src/network/fortinet/fortimail/snmp/mode/interfaces.pm index 02278f179..e2e9d3723 100644 --- a/src/network/fortinet/fortimail/snmp/mode/interfaces.pm +++ b/src/network/fortinet/fortimail/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/fortinet/fortimail/snmp/mode/uptime.pm b/src/network/fortinet/fortimail/snmp/mode/uptime.pm index df4a9dcfa..7638a1a1b 100644 --- a/src/network/fortinet/fortimail/snmp/mode/uptime.pm +++ b/src/network/fortinet/fortimail/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortimanager/snmp/mode/cpu.pm b/src/network/fortinet/fortimanager/snmp/mode/cpu.pm index 0d8e68605..e368ae85a 100644 --- a/src/network/fortinet/fortimanager/snmp/mode/cpu.pm +++ b/src/network/fortinet/fortimanager/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortimanager/snmp/mode/devicestatus.pm b/src/network/fortinet/fortimanager/snmp/mode/devicestatus.pm index d88e14c8f..e8d0f5706 100644 --- a/src/network/fortinet/fortimanager/snmp/mode/devicestatus.pm +++ b/src/network/fortinet/fortimanager/snmp/mode/devicestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortimanager/snmp/mode/disk.pm b/src/network/fortinet/fortimanager/snmp/mode/disk.pm index a9b367440..ad67a4ee5 100644 --- a/src/network/fortinet/fortimanager/snmp/mode/disk.pm +++ b/src/network/fortinet/fortimanager/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortimanager/snmp/mode/memory.pm b/src/network/fortinet/fortimanager/snmp/mode/memory.pm index e61427d7c..0c13f4c05 100644 --- a/src/network/fortinet/fortimanager/snmp/mode/memory.pm +++ b/src/network/fortinet/fortimanager/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortimanager/snmp/plugin.pm b/src/network/fortinet/fortimanager/snmp/plugin.pm index ce5f8d76b..0127866b5 100644 --- a/src/network/fortinet/fortimanager/snmp/plugin.pm +++ b/src/network/fortinet/fortimanager/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiswitch/snmp/mode/cpu.pm b/src/network/fortinet/fortiswitch/snmp/mode/cpu.pm index e427cd3fa..32d5275f2 100644 --- a/src/network/fortinet/fortiswitch/snmp/mode/cpu.pm +++ b/src/network/fortinet/fortiswitch/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -72,7 +72,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/fortinet/fortiswitch/snmp/mode/disk.pm b/src/network/fortinet/fortiswitch/snmp/mode/disk.pm index 406d9a49d..b760829d3 100644 --- a/src/network/fortinet/fortiswitch/snmp/mode/disk.pm +++ b/src/network/fortinet/fortiswitch/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiswitch/snmp/mode/interfaces.pm b/src/network/fortinet/fortiswitch/snmp/mode/interfaces.pm index fb78bb674..f4fbb7b66 100644 --- a/src/network/fortinet/fortiswitch/snmp/mode/interfaces.pm +++ b/src/network/fortinet/fortiswitch/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/fortinet/fortiswitch/snmp/mode/memory.pm b/src/network/fortinet/fortiswitch/snmp/mode/memory.pm index 4f48d56bc..59f097022 100644 --- a/src/network/fortinet/fortiswitch/snmp/mode/memory.pm +++ b/src/network/fortinet/fortiswitch/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiswitch/snmp/mode/uptime.pm b/src/network/fortinet/fortiswitch/snmp/mode/uptime.pm index a5ac7e0c4..5c613d8c0 100644 --- a/src/network/fortinet/fortiswitch/snmp/mode/uptime.pm +++ b/src/network/fortinet/fortiswitch/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiswitch/snmp/plugin.pm b/src/network/fortinet/fortiswitch/snmp/plugin.pm index 8766ae448..12d18a300 100644 --- a/src/network/fortinet/fortiswitch/snmp/plugin.pm +++ b/src/network/fortinet/fortiswitch/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiweb/snmp/mode/proxy.pm b/src/network/fortinet/fortiweb/snmp/mode/proxy.pm index 8afa8beac..f63bcd0cf 100644 --- a/src/network/fortinet/fortiweb/snmp/mode/proxy.pm +++ b/src/network/fortinet/fortiweb/snmp/mode/proxy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiweb/snmp/mode/system.pm b/src/network/fortinet/fortiweb/snmp/mode/system.pm index 79a2bfc9f..85d751872 100644 --- a/src/network/fortinet/fortiweb/snmp/mode/system.pm +++ b/src/network/fortinet/fortiweb/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fortinet/fortiweb/snmp/plugin.pm b/src/network/fortinet/fortiweb/snmp/plugin.pm index dfd858757..33f7c5b4d 100644 --- a/src/network/fortinet/fortiweb/snmp/plugin.pm +++ b/src/network/fortinet/fortiweb/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/freebox/restapi/custom/api.pm b/src/network/freebox/restapi/custom/api.pm index 11500e481..21cbd6fa8 100644 --- a/src/network/freebox/restapi/custom/api.pm +++ b/src/network/freebox/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/freebox/restapi/mode/dslusage.pm b/src/network/freebox/restapi/mode/dslusage.pm index e5a2f571a..feb1cf0a6 100644 --- a/src/network/freebox/restapi/mode/dslusage.pm +++ b/src/network/freebox/restapi/mode/dslusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/freebox/restapi/mode/netusage.pm b/src/network/freebox/restapi/mode/netusage.pm index 4e92938f5..5d9c17bfd 100644 --- a/src/network/freebox/restapi/mode/netusage.pm +++ b/src/network/freebox/restapi/mode/netusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/freebox/restapi/mode/system.pm b/src/network/freebox/restapi/mode/system.pm index 3364126cb..f174f099f 100644 --- a/src/network/freebox/restapi/mode/system.pm +++ b/src/network/freebox/restapi/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/freebox/restapi/plugin.pm b/src/network/freebox/restapi/plugin.pm index e55afdfc4..a32973859 100644 --- a/src/network/freebox/restapi/plugin.pm +++ b/src/network/freebox/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fritzbox/upnp/custom/soap.pm b/src/network/fritzbox/upnp/custom/soap.pm index c1a2cd5bb..0c1ecb072 100644 --- a/src/network/fritzbox/upnp/custom/soap.pm +++ b/src/network/fritzbox/upnp/custom/soap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fritzbox/upnp/mode/system.pm b/src/network/fritzbox/upnp/mode/system.pm index a3ccda363..32fa7f724 100644 --- a/src/network/fritzbox/upnp/mode/system.pm +++ b/src/network/fritzbox/upnp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fritzbox/upnp/mode/traffic.pm b/src/network/fritzbox/upnp/mode/traffic.pm index b3edcfa6e..b581f5444 100644 --- a/src/network/fritzbox/upnp/mode/traffic.pm +++ b/src/network/fritzbox/upnp/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/fritzbox/upnp/plugin.pm b/src/network/fritzbox/upnp/plugin.pm index 6411c4a36..ade8e3c94 100644 --- a/src/network/fritzbox/upnp/plugin.pm +++ b/src/network/fritzbox/upnp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/h3c/snmp/plugin.pm b/src/network/h3c/snmp/plugin.pm index 6d47c03af..a717e403e 100644 --- a/src/network/h3c/snmp/plugin.pm +++ b/src/network/h3c/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/components/fan.pm b/src/network/hirschmann/standard/snmp/mode/components/fan.pm index 7fbdd6ace..7ccf30755 100644 --- a/src/network/hirschmann/standard/snmp/mode/components/fan.pm +++ b/src/network/hirschmann/standard/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/components/led.pm b/src/network/hirschmann/standard/snmp/mode/components/led.pm index cc860d3e5..9cf130265 100644 --- a/src/network/hirschmann/standard/snmp/mode/components/led.pm +++ b/src/network/hirschmann/standard/snmp/mode/components/led.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/components/psu.pm b/src/network/hirschmann/standard/snmp/mode/components/psu.pm index db231ce7e..71e4f583c 100644 --- a/src/network/hirschmann/standard/snmp/mode/components/psu.pm +++ b/src/network/hirschmann/standard/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/components/temperature.pm b/src/network/hirschmann/standard/snmp/mode/components/temperature.pm index a6452ebac..9235eefd8 100644 --- a/src/network/hirschmann/standard/snmp/mode/components/temperature.pm +++ b/src/network/hirschmann/standard/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/configuration.pm b/src/network/hirschmann/standard/snmp/mode/configuration.pm index 44db5cd6d..54f54772b 100644 --- a/src/network/hirschmann/standard/snmp/mode/configuration.pm +++ b/src/network/hirschmann/standard/snmp/mode/configuration.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/cpu.pm b/src/network/hirschmann/standard/snmp/mode/cpu.pm index ece1e092f..a3c9771ce 100644 --- a/src/network/hirschmann/standard/snmp/mode/cpu.pm +++ b/src/network/hirschmann/standard/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -120,7 +120,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/hirschmann/standard/snmp/mode/hardware.pm b/src/network/hirschmann/standard/snmp/mode/hardware.pm index 25f6bb4cb..261310ca1 100644 --- a/src/network/hirschmann/standard/snmp/mode/hardware.pm +++ b/src/network/hirschmann/standard/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/memory.pm b/src/network/hirschmann/standard/snmp/mode/memory.pm index 15ed9d534..ad500fa3a 100644 --- a/src/network/hirschmann/standard/snmp/mode/memory.pm +++ b/src/network/hirschmann/standard/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/mode/processcount.pm b/src/network/hirschmann/standard/snmp/mode/processcount.pm index 906765f5f..89fc67498 100644 --- a/src/network/hirschmann/standard/snmp/mode/processcount.pm +++ b/src/network/hirschmann/standard/snmp/mode/processcount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hirschmann/standard/snmp/plugin.pm b/src/network/hirschmann/standard/snmp/plugin.pm index 0650eceaa..5934801cd 100644 --- a/src/network/hirschmann/standard/snmp/plugin.pm +++ b/src/network/hirschmann/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/moonshot/snmp/mode/cpu.pm b/src/network/hp/moonshot/snmp/mode/cpu.pm index 0611f6f37..8b434df8e 100644 --- a/src/network/hp/moonshot/snmp/mode/cpu.pm +++ b/src/network/hp/moonshot/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -101,7 +101,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/hp/moonshot/snmp/mode/interfaces.pm b/src/network/hp/moonshot/snmp/mode/interfaces.pm index 1e1cd35d3..63135884c 100644 --- a/src/network/hp/moonshot/snmp/mode/interfaces.pm +++ b/src/network/hp/moonshot/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/hp/moonshot/snmp/mode/memory.pm b/src/network/hp/moonshot/snmp/mode/memory.pm index d1e9bda27..4e1bd46dd 100644 --- a/src/network/hp/moonshot/snmp/mode/memory.pm +++ b/src/network/hp/moonshot/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/moonshot/snmp/plugin.pm b/src/network/hp/moonshot/snmp/plugin.pm index a4b7cd851..564020d67 100644 --- a/src/network/hp/moonshot/snmp/plugin.pm +++ b/src/network/hp/moonshot/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/components/fan.pm b/src/network/hp/procurve/snmp/mode/components/fan.pm index 36bf6437b..7ced822c7 100644 --- a/src/network/hp/procurve/snmp/mode/components/fan.pm +++ b/src/network/hp/procurve/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/components/psu.pm b/src/network/hp/procurve/snmp/mode/components/psu.pm index cab0b4cf5..040448182 100644 --- a/src/network/hp/procurve/snmp/mode/components/psu.pm +++ b/src/network/hp/procurve/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/components/sensor.pm b/src/network/hp/procurve/snmp/mode/components/sensor.pm index 403f704f3..bb52d7916 100644 --- a/src/network/hp/procurve/snmp/mode/components/sensor.pm +++ b/src/network/hp/procurve/snmp/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/components/temperature.pm b/src/network/hp/procurve/snmp/mode/components/temperature.pm index ee58d80d7..5a7025505 100644 --- a/src/network/hp/procurve/snmp/mode/components/temperature.pm +++ b/src/network/hp/procurve/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/cpu.pm b/src/network/hp/procurve/snmp/mode/cpu.pm index 3782e86b9..99be56c87 100644 --- a/src/network/hp/procurve/snmp/mode/cpu.pm +++ b/src/network/hp/procurve/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -81,7 +81,7 @@ __END__ =head1 MODE -Check cpu usage (hpSwitchStat.mib). +Check CPU usage (hpSwitchStat.mib). =over 8 diff --git a/src/network/hp/procurve/snmp/mode/environment.pm b/src/network/hp/procurve/snmp/mode/environment.pm index 890558a11..6df7600e8 100644 --- a/src/network/hp/procurve/snmp/mode/environment.pm +++ b/src/network/hp/procurve/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/interfaces.pm b/src/network/hp/procurve/snmp/mode/interfaces.pm index 8c8ecd402..5af2451d2 100644 --- a/src/network/hp/procurve/snmp/mode/interfaces.pm +++ b/src/network/hp/procurve/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -394,7 +394,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/hp/procurve/snmp/mode/memory.pm b/src/network/hp/procurve/snmp/mode/memory.pm index edcf4e495..db9ca0278 100644 --- a/src/network/hp/procurve/snmp/mode/memory.pm +++ b/src/network/hp/procurve/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/mode/virtualchassis.pm b/src/network/hp/procurve/snmp/mode/virtualchassis.pm index 4a01b1e5e..38c8abec9 100644 --- a/src/network/hp/procurve/snmp/mode/virtualchassis.pm +++ b/src/network/hp/procurve/snmp/mode/virtualchassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/procurve/snmp/plugin.pm b/src/network/hp/procurve/snmp/plugin.pm index 68f98d7b9..3a4116a01 100644 --- a/src/network/hp/procurve/snmp/plugin.pm +++ b/src/network/hp/procurve/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/standard/snmp/plugin.pm b/src/network/hp/standard/snmp/plugin.pm index 1b4a4b7a6..f33f40263 100644 --- a/src/network/hp/standard/snmp/plugin.pm +++ b/src/network/hp/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/domain.pm b/src/network/hp/vc/snmp/mode/components/domain.pm index 01a4c0a62..80c498ec3 100644 --- a/src/network/hp/vc/snmp/mode/components/domain.pm +++ b/src/network/hp/vc/snmp/mode/components/domain.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/enclosure.pm b/src/network/hp/vc/snmp/mode/components/enclosure.pm index 078cce081..45aff5f51 100644 --- a/src/network/hp/vc/snmp/mode/components/enclosure.pm +++ b/src/network/hp/vc/snmp/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/enet.pm b/src/network/hp/vc/snmp/mode/components/enet.pm index 91c2b95b2..883ad71a0 100644 --- a/src/network/hp/vc/snmp/mode/components/enet.pm +++ b/src/network/hp/vc/snmp/mode/components/enet.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/fc.pm b/src/network/hp/vc/snmp/mode/components/fc.pm index 1917d78f3..719ee8b6f 100644 --- a/src/network/hp/vc/snmp/mode/components/fc.pm +++ b/src/network/hp/vc/snmp/mode/components/fc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/module.pm b/src/network/hp/vc/snmp/mode/components/module.pm index ea2748578..0d4ec9ac8 100644 --- a/src/network/hp/vc/snmp/mode/components/module.pm +++ b/src/network/hp/vc/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/moduleport.pm b/src/network/hp/vc/snmp/mode/components/moduleport.pm index def2f92f5..7509c1b84 100644 --- a/src/network/hp/vc/snmp/mode/components/moduleport.pm +++ b/src/network/hp/vc/snmp/mode/components/moduleport.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/physicalserver.pm b/src/network/hp/vc/snmp/mode/components/physicalserver.pm index f057b1118..8bd442c85 100644 --- a/src/network/hp/vc/snmp/mode/components/physicalserver.pm +++ b/src/network/hp/vc/snmp/mode/components/physicalserver.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/port.pm b/src/network/hp/vc/snmp/mode/components/port.pm index b5cb8e761..76b1f64d8 100644 --- a/src/network/hp/vc/snmp/mode/components/port.pm +++ b/src/network/hp/vc/snmp/mode/components/port.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/profile.pm b/src/network/hp/vc/snmp/mode/components/profile.pm index 40bb81d04..5a4d3af48 100644 --- a/src/network/hp/vc/snmp/mode/components/profile.pm +++ b/src/network/hp/vc/snmp/mode/components/profile.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/components/resources.pm b/src/network/hp/vc/snmp/mode/components/resources.pm index 33cbe5808..153f51c95 100644 --- a/src/network/hp/vc/snmp/mode/components/resources.pm +++ b/src/network/hp/vc/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/mode/hardware.pm b/src/network/hp/vc/snmp/mode/hardware.pm index 6b87f5f19..d74e3dc1d 100644 --- a/src/network/hp/vc/snmp/mode/hardware.pm +++ b/src/network/hp/vc/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/hp/vc/snmp/plugin.pm b/src/network/hp/vc/snmp/plugin.pm index 1f98590ac..fe26f2855 100644 --- a/src/network/hp/vc/snmp/plugin.pm +++ b/src/network/hp/vc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/huawei/snmp/mode/components/fan.pm b/src/network/huawei/snmp/mode/components/fan.pm index 47278f197..7961d6409 100644 --- a/src/network/huawei/snmp/mode/components/fan.pm +++ b/src/network/huawei/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/huawei/snmp/mode/components/temperature.pm b/src/network/huawei/snmp/mode/components/temperature.pm index 3ca3119d1..70d60fac4 100644 --- a/src/network/huawei/snmp/mode/components/temperature.pm +++ b/src/network/huawei/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/huawei/snmp/mode/cpu.pm b/src/network/huawei/snmp/mode/cpu.pm index 3fcc3cbea..bd1abd724 100644 --- a/src/network/huawei/snmp/mode/cpu.pm +++ b/src/network/huawei/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/huawei/snmp/mode/hardware.pm b/src/network/huawei/snmp/mode/hardware.pm index a5c170d75..6910fe3df 100644 --- a/src/network/huawei/snmp/mode/hardware.pm +++ b/src/network/huawei/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/huawei/snmp/mode/interfaces.pm b/src/network/huawei/snmp/mode/interfaces.pm index bdc928165..067279559 100644 --- a/src/network/huawei/snmp/mode/interfaces.pm +++ b/src/network/huawei/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -303,7 +303,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/huawei/snmp/mode/memory.pm b/src/network/huawei/snmp/mode/memory.pm index 121e5c99f..e24cbc25b 100644 --- a/src/network/huawei/snmp/mode/memory.pm +++ b/src/network/huawei/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/huawei/snmp/plugin.pm b/src/network/huawei/snmp/plugin.pm index d458190a5..ddae62efa 100644 --- a/src/network/huawei/snmp/plugin.pm +++ b/src/network/huawei/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ibm/bladecenter/snmp/plugin.pm b/src/network/ibm/bladecenter/snmp/plugin.pm index e8e1c2f72..20dfaba85 100644 --- a/src/network/ibm/bladecenter/snmp/plugin.pm +++ b/src/network/ibm/bladecenter/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/infoblox/snmp/mode/dhcpusage.pm b/src/network/infoblox/snmp/mode/dhcpusage.pm index 863a19b82..f598a9814 100644 --- a/src/network/infoblox/snmp/mode/dhcpusage.pm +++ b/src/network/infoblox/snmp/mode/dhcpusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/infoblox/snmp/mode/dnsusage.pm b/src/network/infoblox/snmp/mode/dnsusage.pm index bfdcf11f1..687472d97 100644 --- a/src/network/infoblox/snmp/mode/dnsusage.pm +++ b/src/network/infoblox/snmp/mode/dnsusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/infoblox/snmp/mode/listdhcpsubnets.pm b/src/network/infoblox/snmp/mode/listdhcpsubnets.pm index 273f53d48..c3df6a292 100644 --- a/src/network/infoblox/snmp/mode/listdhcpsubnets.pm +++ b/src/network/infoblox/snmp/mode/listdhcpsubnets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/infoblox/snmp/mode/services.pm b/src/network/infoblox/snmp/mode/services.pm index 4ffc4da0c..8fc55ac1d 100644 --- a/src/network/infoblox/snmp/mode/services.pm +++ b/src/network/infoblox/snmp/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/infoblox/snmp/mode/system.pm b/src/network/infoblox/snmp/mode/system.pm index dfa7334c4..2bdb2ac0b 100644 --- a/src/network/infoblox/snmp/mode/system.pm +++ b/src/network/infoblox/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/infoblox/snmp/plugin.pm b/src/network/infoblox/snmp/plugin.pm index 82c6acba9..86d84f70b 100644 --- a/src/network/infoblox/snmp/plugin.pm +++ b/src/network/infoblox/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/ive/mode/cpu.pm b/src/network/juniper/common/ive/mode/cpu.pm index 8727823f9..f8c84b527 100644 --- a/src/network/juniper/common/ive/mode/cpu.pm +++ b/src/network/juniper/common/ive/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/ive/mode/disk.pm b/src/network/juniper/common/ive/mode/disk.pm index 797513d65..a790e96e5 100644 --- a/src/network/juniper/common/ive/mode/disk.pm +++ b/src/network/juniper/common/ive/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/ive/mode/logfile.pm b/src/network/juniper/common/ive/mode/logfile.pm index 8c279b56c..8b9eb1c80 100644 --- a/src/network/juniper/common/ive/mode/logfile.pm +++ b/src/network/juniper/common/ive/mode/logfile.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/ive/mode/users.pm b/src/network/juniper/common/ive/mode/users.pm index cd8e85d97..8b529db8a 100644 --- a/src/network/juniper/common/ive/mode/users.pm +++ b/src/network/juniper/common/ive/mode/users.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/bgppeerprefixstatistics.pm b/src/network/juniper/common/junos/mode/bgppeerprefixstatistics.pm index 13a70f091..080fa7431 100644 --- a/src/network/juniper/common/junos/mode/bgppeerprefixstatistics.pm +++ b/src/network/juniper/common/junos/mode/bgppeerprefixstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/bgppeerstate.pm b/src/network/juniper/common/junos/mode/bgppeerstate.pm index b0a858245..ae79b819b 100644 --- a/src/network/juniper/common/junos/mode/bgppeerstate.pm +++ b/src/network/juniper/common/junos/mode/bgppeerstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/components/alarm.pm b/src/network/juniper/common/junos/mode/components/alarm.pm index 29136b6eb..da5a9dfd9 100644 --- a/src/network/juniper/common/junos/mode/components/alarm.pm +++ b/src/network/juniper/common/junos/mode/components/alarm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/components/fru.pm b/src/network/juniper/common/junos/mode/components/fru.pm index cae7aaf54..540de8e6f 100644 --- a/src/network/juniper/common/junos/mode/components/fru.pm +++ b/src/network/juniper/common/junos/mode/components/fru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/components/operating.pm b/src/network/juniper/common/junos/mode/components/operating.pm index 7fc63592b..fc915a738 100644 --- a/src/network/juniper/common/junos/mode/components/operating.pm +++ b/src/network/juniper/common/junos/mode/components/operating.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/cos.pm b/src/network/juniper/common/junos/mode/cos.pm index c7b275058..c78da7454 100644 --- a/src/network/juniper/common/junos/mode/cos.pm +++ b/src/network/juniper/common/junos/mode/cos.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/cpsessions.pm b/src/network/juniper/common/junos/mode/cpsessions.pm index dad4a9cdd..270e88ddf 100644 --- a/src/network/juniper/common/junos/mode/cpsessions.pm +++ b/src/network/juniper/common/junos/mode/cpsessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/cpu.pm b/src/network/juniper/common/junos/mode/cpu.pm index 1dc01ee40..f0919b239 100644 --- a/src/network/juniper/common/junos/mode/cpu.pm +++ b/src/network/juniper/common/junos/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -141,7 +141,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/juniper/common/junos/mode/cpuforwarding.pm b/src/network/juniper/common/junos/mode/cpuforwarding.pm index 20706b6a1..16305466b 100644 --- a/src/network/juniper/common/junos/mode/cpuforwarding.pm +++ b/src/network/juniper/common/junos/mode/cpuforwarding.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/flowsessions.pm b/src/network/juniper/common/junos/mode/flowsessions.pm index bcbca2ef1..3eff4bb1f 100644 --- a/src/network/juniper/common/junos/mode/flowsessions.pm +++ b/src/network/juniper/common/junos/mode/flowsessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/hardware.pm b/src/network/juniper/common/junos/mode/hardware.pm index 0e5a4f089..9306ec40e 100644 --- a/src/network/juniper/common/junos/mode/hardware.pm +++ b/src/network/juniper/common/junos/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/interfaces.pm b/src/network/juniper/common/junos/mode/interfaces.pm index 2b7ef8972..a32b35d33 100644 --- a/src/network/juniper/common/junos/mode/interfaces.pm +++ b/src/network/juniper/common/junos/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -378,7 +378,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/juniper/common/junos/mode/ipsectunnel.pm b/src/network/juniper/common/junos/mode/ipsectunnel.pm index c363cf261..2f8e12ba9 100644 --- a/src/network/juniper/common/junos/mode/ipsectunnel.pm +++ b/src/network/juniper/common/junos/mode/ipsectunnel.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/ldpsessionstatus.pm b/src/network/juniper/common/junos/mode/ldpsessionstatus.pm index d2de30370..5f2dbf635 100644 --- a/src/network/juniper/common/junos/mode/ldpsessionstatus.pm +++ b/src/network/juniper/common/junos/mode/ldpsessionstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/listbgppeers.pm b/src/network/juniper/common/junos/mode/listbgppeers.pm index 25525295d..bd926d16f 100644 --- a/src/network/juniper/common/junos/mode/listbgppeers.pm +++ b/src/network/juniper/common/junos/mode/listbgppeers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/lspstatus.pm b/src/network/juniper/common/junos/mode/lspstatus.pm index c476e422e..608b53577 100644 --- a/src/network/juniper/common/junos/mode/lspstatus.pm +++ b/src/network/juniper/common/junos/mode/lspstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/memory.pm b/src/network/juniper/common/junos/mode/memory.pm index 967d757a7..06ca90b64 100644 --- a/src/network/juniper/common/junos/mode/memory.pm +++ b/src/network/juniper/common/junos/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/memoryforwarding.pm b/src/network/juniper/common/junos/mode/memoryforwarding.pm index c4203b603..f0951c4be 100644 --- a/src/network/juniper/common/junos/mode/memoryforwarding.pm +++ b/src/network/juniper/common/junos/mode/memoryforwarding.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/rsvpsessionstatus.pm b/src/network/juniper/common/junos/mode/rsvpsessionstatus.pm index f7da3e7a7..2addee614 100644 --- a/src/network/juniper/common/junos/mode/rsvpsessionstatus.pm +++ b/src/network/juniper/common/junos/mode/rsvpsessionstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/junos/mode/stack.pm b/src/network/juniper/common/junos/mode/stack.pm index 137fbbda2..5a76cba2b 100644 --- a/src/network/juniper/common/junos/mode/stack.pm +++ b/src/network/juniper/common/junos/mode/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/components/fan.pm b/src/network/juniper/common/screenos/snmp/mode/components/fan.pm index 953d563ab..30dd45977 100644 --- a/src/network/juniper/common/screenos/snmp/mode/components/fan.pm +++ b/src/network/juniper/common/screenos/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/components/module.pm b/src/network/juniper/common/screenos/snmp/mode/components/module.pm index 67a1d2622..9566d968f 100644 --- a/src/network/juniper/common/screenos/snmp/mode/components/module.pm +++ b/src/network/juniper/common/screenos/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/components/psu.pm b/src/network/juniper/common/screenos/snmp/mode/components/psu.pm index 6d26b410d..6d35048bb 100644 --- a/src/network/juniper/common/screenos/snmp/mode/components/psu.pm +++ b/src/network/juniper/common/screenos/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/components/temperature.pm b/src/network/juniper/common/screenos/snmp/mode/components/temperature.pm index 63c330c42..8531fc0cd 100644 --- a/src/network/juniper/common/screenos/snmp/mode/components/temperature.pm +++ b/src/network/juniper/common/screenos/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/cpu.pm b/src/network/juniper/common/screenos/snmp/mode/cpu.pm index 3c2e6cae9..95148c0eb 100644 --- a/src/network/juniper/common/screenos/snmp/mode/cpu.pm +++ b/src/network/juniper/common/screenos/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -124,7 +124,7 @@ __END__ =head1 MODE -Check Juniper cpu usage (NETSCREEN-RESOURCE-MIB). +Check Juniper CPU usage (NETSCREEN-RESOURCE-MIB). =over 8 diff --git a/src/network/juniper/common/screenos/snmp/mode/hardware.pm b/src/network/juniper/common/screenos/snmp/mode/hardware.pm index c54ff1f7b..605226010 100644 --- a/src/network/juniper/common/screenos/snmp/mode/hardware.pm +++ b/src/network/juniper/common/screenos/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/listvpn.pm b/src/network/juniper/common/screenos/snmp/mode/listvpn.pm index c8276a939..ecf25eb2e 100644 --- a/src/network/juniper/common/screenos/snmp/mode/listvpn.pm +++ b/src/network/juniper/common/screenos/snmp/mode/listvpn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/memory.pm b/src/network/juniper/common/screenos/snmp/mode/memory.pm index 02e7211e7..16d0ac10f 100644 --- a/src/network/juniper/common/screenos/snmp/mode/memory.pm +++ b/src/network/juniper/common/screenos/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/nsrp.pm b/src/network/juniper/common/screenos/snmp/mode/nsrp.pm index 2799c0126..a46dc24a3 100644 --- a/src/network/juniper/common/screenos/snmp/mode/nsrp.pm +++ b/src/network/juniper/common/screenos/snmp/mode/nsrp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/sessions.pm b/src/network/juniper/common/screenos/snmp/mode/sessions.pm index 43538acf8..a4be89cd4 100644 --- a/src/network/juniper/common/screenos/snmp/mode/sessions.pm +++ b/src/network/juniper/common/screenos/snmp/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/vpnstatus.pm b/src/network/juniper/common/screenos/snmp/mode/vpnstatus.pm index 979c18940..69e81068c 100644 --- a/src/network/juniper/common/screenos/snmp/mode/vpnstatus.pm +++ b/src/network/juniper/common/screenos/snmp/mode/vpnstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/common/screenos/snmp/mode/vpnusage.pm b/src/network/juniper/common/screenos/snmp/mode/vpnusage.pm index 68ba47dff..fa5ca6c3c 100644 --- a/src/network/juniper/common/screenos/snmp/mode/vpnusage.pm +++ b/src/network/juniper/common/screenos/snmp/mode/vpnusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/ex/plugin.pm b/src/network/juniper/ex/plugin.pm index 077f04926..9556a4e6f 100644 --- a/src/network/juniper/ex/plugin.pm +++ b/src/network/juniper/ex/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/ggsn/mode/apnstats.pm b/src/network/juniper/ggsn/mode/apnstats.pm index 528f3cd8f..b4079d07c 100644 --- a/src/network/juniper/ggsn/mode/apnstats.pm +++ b/src/network/juniper/ggsn/mode/apnstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/ggsn/mode/globalstats.pm b/src/network/juniper/ggsn/mode/globalstats.pm index 331c3a784..785f27129 100644 --- a/src/network/juniper/ggsn/mode/globalstats.pm +++ b/src/network/juniper/ggsn/mode/globalstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/ggsn/plugin.pm b/src/network/juniper/ggsn/plugin.pm index 4794e8e2a..0d248fa2a 100644 --- a/src/network/juniper/ggsn/plugin.pm +++ b/src/network/juniper/ggsn/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/isg/snmp/plugin.pm b/src/network/juniper/isg/snmp/plugin.pm index 19e72f983..a3db3efb8 100644 --- a/src/network/juniper/isg/snmp/plugin.pm +++ b/src/network/juniper/isg/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/mag/mode/bladetemperature.pm b/src/network/juniper/mag/mode/bladetemperature.pm index 19a13a935..58d121a18 100644 --- a/src/network/juniper/mag/mode/bladetemperature.pm +++ b/src/network/juniper/mag/mode/bladetemperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/mag/plugin.pm b/src/network/juniper/mag/plugin.pm index da962c6fb..9fe2558c1 100644 --- a/src/network/juniper/mag/plugin.pm +++ b/src/network/juniper/mag/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/mseries/plugin.pm b/src/network/juniper/mseries/plugin.pm index 01042aadc..76707a4bb 100644 --- a/src/network/juniper/mseries/plugin.pm +++ b/src/network/juniper/mseries/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/sa/plugin.pm b/src/network/juniper/sa/plugin.pm index 7bdf7719f..2d83780b6 100644 --- a/src/network/juniper/sa/plugin.pm +++ b/src/network/juniper/sa/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/srx/plugin.pm b/src/network/juniper/srx/plugin.pm index 71c84f19f..84f717786 100644 --- a/src/network/juniper/srx/plugin.pm +++ b/src/network/juniper/srx/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/juniper/ssg/snmp/plugin.pm b/src/network/juniper/ssg/snmp/plugin.pm index 4069413b6..776521188 100644 --- a/src/network/juniper/ssg/snmp/plugin.pm +++ b/src/network/juniper/ssg/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/kemp/snmp/mode/hastatus.pm b/src/network/kemp/snmp/mode/hastatus.pm index 708760295..b300e755f 100644 --- a/src/network/kemp/snmp/mode/hastatus.pm +++ b/src/network/kemp/snmp/mode/hastatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/kemp/snmp/mode/listvs.pm b/src/network/kemp/snmp/mode/listvs.pm index 5d53e8ffa..5786c2eea 100644 --- a/src/network/kemp/snmp/mode/listvs.pm +++ b/src/network/kemp/snmp/mode/listvs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/kemp/snmp/mode/rsstatus.pm b/src/network/kemp/snmp/mode/rsstatus.pm index 3b072cc4e..3f19e3321 100644 --- a/src/network/kemp/snmp/mode/rsstatus.pm +++ b/src/network/kemp/snmp/mode/rsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/kemp/snmp/mode/vsstatus.pm b/src/network/kemp/snmp/mode/vsstatus.pm index f9cd82141..4207d03c6 100644 --- a/src/network/kemp/snmp/mode/vsstatus.pm +++ b/src/network/kemp/snmp/mode/vsstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/kemp/snmp/plugin.pm b/src/network/kemp/snmp/plugin.pm index 9a360be8a..fa4f65911 100644 --- a/src/network/kemp/snmp/plugin.pm +++ b/src/network/kemp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/custom/api.pm b/src/network/keysight/nvos/restapi/custom/api.pm index 5495efaee..9988f18b2 100644 --- a/src/network/keysight/nvos/restapi/custom/api.pm +++ b/src/network/keysight/nvos/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/dynamicfilters.pm b/src/network/keysight/nvos/restapi/mode/dynamicfilters.pm index 3c5034cfd..e54831327 100644 --- a/src/network/keysight/nvos/restapi/mode/dynamicfilters.pm +++ b/src/network/keysight/nvos/restapi/mode/dynamicfilters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/hardware.pm b/src/network/keysight/nvos/restapi/mode/hardware.pm index 2bc9dc038..59ab17e86 100644 --- a/src/network/keysight/nvos/restapi/mode/hardware.pm +++ b/src/network/keysight/nvos/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/listdynamicfilters.pm b/src/network/keysight/nvos/restapi/mode/listdynamicfilters.pm index ce27dc665..a2b85982b 100644 --- a/src/network/keysight/nvos/restapi/mode/listdynamicfilters.pm +++ b/src/network/keysight/nvos/restapi/mode/listdynamicfilters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/listports.pm b/src/network/keysight/nvos/restapi/mode/listports.pm index b209c9379..7e25ec011 100644 --- a/src/network/keysight/nvos/restapi/mode/listports.pm +++ b/src/network/keysight/nvos/restapi/mode/listports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/ports.pm b/src/network/keysight/nvos/restapi/mode/ports.pm index 052e8ae0c..bf3cf1975 100644 --- a/src/network/keysight/nvos/restapi/mode/ports.pm +++ b/src/network/keysight/nvos/restapi/mode/ports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/time.pm b/src/network/keysight/nvos/restapi/mode/time.pm index b27d45b14..076a39c28 100644 --- a/src/network/keysight/nvos/restapi/mode/time.pm +++ b/src/network/keysight/nvos/restapi/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/mode/uptime.pm b/src/network/keysight/nvos/restapi/mode/uptime.pm index 1e0faf6e8..2be9fa50d 100644 --- a/src/network/keysight/nvos/restapi/mode/uptime.pm +++ b/src/network/keysight/nvos/restapi/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/keysight/nvos/restapi/plugin.pm b/src/network/keysight/nvos/restapi/plugin.pm index 47e6b70b5..710e5b154 100644 --- a/src/network/keysight/nvos/restapi/plugin.pm +++ b/src/network/keysight/nvos/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/flexsystem/snmp/mode/components/faultled.pm b/src/network/lenovo/flexsystem/snmp/mode/components/faultled.pm index 7336e7aeb..d957a4e0b 100644 --- a/src/network/lenovo/flexsystem/snmp/mode/components/faultled.pm +++ b/src/network/lenovo/flexsystem/snmp/mode/components/faultled.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/flexsystem/snmp/mode/components/temperature.pm b/src/network/lenovo/flexsystem/snmp/mode/components/temperature.pm index f646e3b7f..2669dce84 100644 --- a/src/network/lenovo/flexsystem/snmp/mode/components/temperature.pm +++ b/src/network/lenovo/flexsystem/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/flexsystem/snmp/mode/cpu.pm b/src/network/lenovo/flexsystem/snmp/mode/cpu.pm index ae47feb2a..5f96bf8c8 100644 --- a/src/network/lenovo/flexsystem/snmp/mode/cpu.pm +++ b/src/network/lenovo/flexsystem/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/flexsystem/snmp/mode/environment.pm b/src/network/lenovo/flexsystem/snmp/mode/environment.pm index 242c63a4a..855ab4711 100644 --- a/src/network/lenovo/flexsystem/snmp/mode/environment.pm +++ b/src/network/lenovo/flexsystem/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/flexsystem/snmp/mode/memory.pm b/src/network/lenovo/flexsystem/snmp/mode/memory.pm index 74c168a3e..0c6b2ad84 100644 --- a/src/network/lenovo/flexsystem/snmp/mode/memory.pm +++ b/src/network/lenovo/flexsystem/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/flexsystem/snmp/plugin.pm b/src/network/lenovo/flexsystem/snmp/plugin.pm index cd976be82..6f01dfb9c 100644 --- a/src/network/lenovo/flexsystem/snmp/plugin.pm +++ b/src/network/lenovo/flexsystem/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/rackswitch/snmp/mode/cpu.pm b/src/network/lenovo/rackswitch/snmp/mode/cpu.pm index bde99a0e2..0b51ed4ef 100644 --- a/src/network/lenovo/rackswitch/snmp/mode/cpu.pm +++ b/src/network/lenovo/rackswitch/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/rackswitch/snmp/mode/hardware.pm b/src/network/lenovo/rackswitch/snmp/mode/hardware.pm index 98034d9c8..4eee0f619 100644 --- a/src/network/lenovo/rackswitch/snmp/mode/hardware.pm +++ b/src/network/lenovo/rackswitch/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/rackswitch/snmp/mode/interfaces.pm b/src/network/lenovo/rackswitch/snmp/mode/interfaces.pm index 2df013b73..4dbb4e50c 100644 --- a/src/network/lenovo/rackswitch/snmp/mode/interfaces.pm +++ b/src/network/lenovo/rackswitch/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/lenovo/rackswitch/snmp/mode/memory.pm b/src/network/lenovo/rackswitch/snmp/mode/memory.pm index 3c52bd92a..712a4b19c 100644 --- a/src/network/lenovo/rackswitch/snmp/mode/memory.pm +++ b/src/network/lenovo/rackswitch/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/rackswitch/snmp/mode/resources.pm b/src/network/lenovo/rackswitch/snmp/mode/resources.pm index 51cd5e705..490ff3202 100644 --- a/src/network/lenovo/rackswitch/snmp/mode/resources.pm +++ b/src/network/lenovo/rackswitch/snmp/mode/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/rackswitch/snmp/mode/uptime.pm b/src/network/lenovo/rackswitch/snmp/mode/uptime.pm index cda7ef998..4d0fccd6a 100644 --- a/src/network/lenovo/rackswitch/snmp/mode/uptime.pm +++ b/src/network/lenovo/rackswitch/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/lenovo/rackswitch/snmp/plugin.pm b/src/network/lenovo/rackswitch/snmp/plugin.pm index 3389fa303..30444f83f 100644 --- a/src/network/lenovo/rackswitch/snmp/plugin.pm +++ b/src/network/lenovo/rackswitch/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/libraesva/snmp/mode/interfaces.pm b/src/network/libraesva/snmp/mode/interfaces.pm index 434044d6b..a97bf2318 100644 --- a/src/network/libraesva/snmp/mode/interfaces.pm +++ b/src/network/libraesva/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/libraesva/snmp/mode/load.pm b/src/network/libraesva/snmp/mode/load.pm index ec4f38ca1..50da8a71a 100644 --- a/src/network/libraesva/snmp/mode/load.pm +++ b/src/network/libraesva/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/libraesva/snmp/mode/memory.pm b/src/network/libraesva/snmp/mode/memory.pm index 15f8b88ce..d5ed38a87 100644 --- a/src/network/libraesva/snmp/mode/memory.pm +++ b/src/network/libraesva/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/libraesva/snmp/mode/storage.pm b/src/network/libraesva/snmp/mode/storage.pm index 832cd443b..5e8d4c75a 100644 --- a/src/network/libraesva/snmp/mode/storage.pm +++ b/src/network/libraesva/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -110,7 +110,7 @@ Example: adding --display-transform-src='dev' --display-transform-dst='run' wil =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--space-reservation> diff --git a/src/network/libraesva/snmp/mode/swap.pm b/src/network/libraesva/snmp/mode/swap.pm index 6bf602c75..91189c739 100644 --- a/src/network/libraesva/snmp/mode/swap.pm +++ b/src/network/libraesva/snmp/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/libraesva/snmp/mode/system.pm b/src/network/libraesva/snmp/mode/system.pm index e50e0d9ed..0818b64af 100644 --- a/src/network/libraesva/snmp/mode/system.pm +++ b/src/network/libraesva/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/libraesva/snmp/plugin.pm b/src/network/libraesva/snmp/plugin.pm index 7e49fa839..35ec8d49a 100644 --- a/src/network/libraesva/snmp/plugin.pm +++ b/src/network/libraesva/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/meru/snmp/mode/alarms.pm b/src/network/meru/snmp/mode/alarms.pm index 87926e90e..6108a33cf 100644 --- a/src/network/meru/snmp/mode/alarms.pm +++ b/src/network/meru/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/meru/snmp/mode/cpu.pm b/src/network/meru/snmp/mode/cpu.pm index 643f4539f..1f252038f 100644 --- a/src/network/meru/snmp/mode/cpu.pm +++ b/src/network/meru/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -72,7 +72,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/meru/snmp/mode/memory.pm b/src/network/meru/snmp/mode/memory.pm index d89a6b8bb..638f00f56 100644 --- a/src/network/meru/snmp/mode/memory.pm +++ b/src/network/meru/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/meru/snmp/mode/wireless.pm b/src/network/meru/snmp/mode/wireless.pm index 1f1f8fb38..8dddde4a3 100644 --- a/src/network/meru/snmp/mode/wireless.pm +++ b/src/network/meru/snmp/mode/wireless.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/meru/snmp/plugin.pm b/src/network/meru/snmp/plugin.pm index f492d6743..e87e6c0b4 100644 --- a/src/network/meru/snmp/plugin.pm +++ b/src/network/meru/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/components/fan.pm b/src/network/microsens/g6/snmp/mode/components/fan.pm index fdab625fb..8c4df7881 100644 --- a/src/network/microsens/g6/snmp/mode/components/fan.pm +++ b/src/network/microsens/g6/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/components/psu.pm b/src/network/microsens/g6/snmp/mode/components/psu.pm index cb0a5702d..788666c4b 100644 --- a/src/network/microsens/g6/snmp/mode/components/psu.pm +++ b/src/network/microsens/g6/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/components/sdcard.pm b/src/network/microsens/g6/snmp/mode/components/sdcard.pm index 5fde91518..a89aa2fd4 100644 --- a/src/network/microsens/g6/snmp/mode/components/sdcard.pm +++ b/src/network/microsens/g6/snmp/mode/components/sdcard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/components/temperature.pm b/src/network/microsens/g6/snmp/mode/components/temperature.pm index 2c9878776..76caf9df8 100644 --- a/src/network/microsens/g6/snmp/mode/components/temperature.pm +++ b/src/network/microsens/g6/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/cpudetailed.pm b/src/network/microsens/g6/snmp/mode/cpudetailed.pm index 6a1b5be5c..59abfeaaa 100644 --- a/src/network/microsens/g6/snmp/mode/cpudetailed.pm +++ b/src/network/microsens/g6/snmp/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/hardware.pm b/src/network/microsens/g6/snmp/mode/hardware.pm index 71ee32119..e7f416310 100644 --- a/src/network/microsens/g6/snmp/mode/hardware.pm +++ b/src/network/microsens/g6/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/interfaces.pm b/src/network/microsens/g6/snmp/mode/interfaces.pm index 596462a48..8af12d3bb 100644 --- a/src/network/microsens/g6/snmp/mode/interfaces.pm +++ b/src/network/microsens/g6/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/microsens/g6/snmp/mode/listsfp.pm b/src/network/microsens/g6/snmp/mode/listsfp.pm index 7b7419053..e2708b33c 100644 --- a/src/network/microsens/g6/snmp/mode/listsfp.pm +++ b/src/network/microsens/g6/snmp/mode/listsfp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/load.pm b/src/network/microsens/g6/snmp/mode/load.pm index 04bcd0900..c802fc4a7 100644 --- a/src/network/microsens/g6/snmp/mode/load.pm +++ b/src/network/microsens/g6/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/memory.pm b/src/network/microsens/g6/snmp/mode/memory.pm index 300f952b4..a9ee291c1 100644 --- a/src/network/microsens/g6/snmp/mode/memory.pm +++ b/src/network/microsens/g6/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/sfp.pm b/src/network/microsens/g6/snmp/mode/sfp.pm index 001785ffc..ae41c944c 100644 --- a/src/network/microsens/g6/snmp/mode/sfp.pm +++ b/src/network/microsens/g6/snmp/mode/sfp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/mode/uptime.pm b/src/network/microsens/g6/snmp/mode/uptime.pm index dc57773b9..06878700f 100644 --- a/src/network/microsens/g6/snmp/mode/uptime.pm +++ b/src/network/microsens/g6/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/microsens/g6/snmp/plugin.pm b/src/network/microsens/g6/snmp/plugin.pm index 3cc39037e..7146984d6 100644 --- a/src/network/microsens/g6/snmp/plugin.pm +++ b/src/network/microsens/g6/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/current.pm b/src/network/mikrotik/snmp/mode/components/current.pm index a80780877..c1f4f04e7 100644 --- a/src/network/mikrotik/snmp/mode/components/current.pm +++ b/src/network/mikrotik/snmp/mode/components/current.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/fan.pm b/src/network/mikrotik/snmp/mode/components/fan.pm index 0dc999f96..f096a2590 100644 --- a/src/network/mikrotik/snmp/mode/components/fan.pm +++ b/src/network/mikrotik/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/power.pm b/src/network/mikrotik/snmp/mode/components/power.pm index 979c0415a..4c2548c96 100644 --- a/src/network/mikrotik/snmp/mode/components/power.pm +++ b/src/network/mikrotik/snmp/mode/components/power.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/resources.pm b/src/network/mikrotik/snmp/mode/components/resources.pm index 68433c87b..df2392708 100644 --- a/src/network/mikrotik/snmp/mode/components/resources.pm +++ b/src/network/mikrotik/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/status.pm b/src/network/mikrotik/snmp/mode/components/status.pm index 26d4b1fae..a8e6d2b06 100644 --- a/src/network/mikrotik/snmp/mode/components/status.pm +++ b/src/network/mikrotik/snmp/mode/components/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/temperature.pm b/src/network/mikrotik/snmp/mode/components/temperature.pm index f4dfd499b..cb4352127 100644 --- a/src/network/mikrotik/snmp/mode/components/temperature.pm +++ b/src/network/mikrotik/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/components/voltage.pm b/src/network/mikrotik/snmp/mode/components/voltage.pm index c150218b7..b148a2805 100644 --- a/src/network/mikrotik/snmp/mode/components/voltage.pm +++ b/src/network/mikrotik/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/disk.pm b/src/network/mikrotik/snmp/mode/disk.pm index ebd350cd0..20a4807a5 100644 --- a/src/network/mikrotik/snmp/mode/disk.pm +++ b/src/network/mikrotik/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -93,7 +93,7 @@ Time in minutes before reloading cache file (default: 180). =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--filter-storage-type> diff --git a/src/network/mikrotik/snmp/mode/environment.pm b/src/network/mikrotik/snmp/mode/environment.pm index 9e8f0780c..1b82f84ac 100644 --- a/src/network/mikrotik/snmp/mode/environment.pm +++ b/src/network/mikrotik/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/firmware.pm b/src/network/mikrotik/snmp/mode/firmware.pm index 626948c31..811e859b7 100644 --- a/src/network/mikrotik/snmp/mode/firmware.pm +++ b/src/network/mikrotik/snmp/mode/firmware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/interfaces.pm b/src/network/mikrotik/snmp/mode/interfaces.pm index 0a3156938..e6c6b6be1 100644 --- a/src/network/mikrotik/snmp/mode/interfaces.pm +++ b/src/network/mikrotik/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -274,7 +274,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/mikrotik/snmp/mode/listfrequencies.pm b/src/network/mikrotik/snmp/mode/listfrequencies.pm index 295c36e19..4dd35c693 100644 --- a/src/network/mikrotik/snmp/mode/listfrequencies.pm +++ b/src/network/mikrotik/snmp/mode/listfrequencies.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/listssids.pm b/src/network/mikrotik/snmp/mode/listssids.pm index 864465f5a..b75f6c3c2 100644 --- a/src/network/mikrotik/snmp/mode/listssids.pm +++ b/src/network/mikrotik/snmp/mode/listssids.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/mode/memory.pm b/src/network/mikrotik/snmp/mode/memory.pm index f9a54b178..f4e7d1b8c 100644 --- a/src/network/mikrotik/snmp/mode/memory.pm +++ b/src/network/mikrotik/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -93,7 +93,7 @@ Time in minutes before reloading cache file (default: 180). =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--filter-storage-type> diff --git a/src/network/mikrotik/snmp/mode/signal.pm b/src/network/mikrotik/snmp/mode/signal.pm index 174609b4f..d08723831 100644 --- a/src/network/mikrotik/snmp/mode/signal.pm +++ b/src/network/mikrotik/snmp/mode/signal.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mikrotik/snmp/plugin.pm b/src/network/mikrotik/snmp/plugin.pm index b6e90e90f..680641499 100644 --- a/src/network/mikrotik/snmp/plugin.pm +++ b/src/network/mikrotik/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mitel/3300icp/snmp/mode/licenses.pm b/src/network/mitel/3300icp/snmp/mode/licenses.pm index af8b9e6a1..4a15f597b 100644 --- a/src/network/mitel/3300icp/snmp/mode/licenses.pm +++ b/src/network/mitel/3300icp/snmp/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mitel/3300icp/snmp/mode/listzaps.pm b/src/network/mitel/3300icp/snmp/mode/listzaps.pm index 6531f583a..175d19d05 100644 --- a/src/network/mitel/3300icp/snmp/mode/listzaps.pm +++ b/src/network/mitel/3300icp/snmp/mode/listzaps.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mitel/3300icp/snmp/mode/zapbandwidth.pm b/src/network/mitel/3300icp/snmp/mode/zapbandwidth.pm index 755ce35ff..c0e383811 100644 --- a/src/network/mitel/3300icp/snmp/mode/zapbandwidth.pm +++ b/src/network/mitel/3300icp/snmp/mode/zapbandwidth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mitel/3300icp/snmp/mode/zapcalls.pm b/src/network/mitel/3300icp/snmp/mode/zapcalls.pm index 48d723b66..b939def35 100644 --- a/src/network/mitel/3300icp/snmp/mode/zapcalls.pm +++ b/src/network/mitel/3300icp/snmp/mode/zapcalls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mitel/3300icp/snmp/plugin.pm b/src/network/mitel/3300icp/snmp/plugin.pm index c4a8d726d..4b8d01285 100644 --- a/src/network/mitel/3300icp/snmp/plugin.pm +++ b/src/network/mitel/3300icp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/moxa/switch/snmp/mode/cpu.pm b/src/network/moxa/switch/snmp/mode/cpu.pm index 3e4ec6567..23011cb33 100644 --- a/src/network/moxa/switch/snmp/mode/cpu.pm +++ b/src/network/moxa/switch/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/moxa/switch/snmp/mode/memory.pm b/src/network/moxa/switch/snmp/mode/memory.pm index 928f1081b..3ed315951 100644 --- a/src/network/moxa/switch/snmp/mode/memory.pm +++ b/src/network/moxa/switch/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/mode/components/cpu.pm b/src/network/mrv/optiswitch/snmp/mode/components/cpu.pm index 465a47e64..d9e23afb2 100644 --- a/src/network/mrv/optiswitch/snmp/mode/components/cpu.pm +++ b/src/network/mrv/optiswitch/snmp/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/mode/components/fan.pm b/src/network/mrv/optiswitch/snmp/mode/components/fan.pm index a9eaaac70..11f3ab8d9 100644 --- a/src/network/mrv/optiswitch/snmp/mode/components/fan.pm +++ b/src/network/mrv/optiswitch/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/mode/components/psu.pm b/src/network/mrv/optiswitch/snmp/mode/components/psu.pm index a2d37f461..e2b23ee09 100644 --- a/src/network/mrv/optiswitch/snmp/mode/components/psu.pm +++ b/src/network/mrv/optiswitch/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/mode/environment.pm b/src/network/mrv/optiswitch/snmp/mode/environment.pm index de353ddb7..16ed2bf7c 100644 --- a/src/network/mrv/optiswitch/snmp/mode/environment.pm +++ b/src/network/mrv/optiswitch/snmp/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/mode/interfaces.pm b/src/network/mrv/optiswitch/snmp/mode/interfaces.pm index d7b4a1b9a..242c63866 100644 --- a/src/network/mrv/optiswitch/snmp/mode/interfaces.pm +++ b/src/network/mrv/optiswitch/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -537,7 +537,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/mrv/optiswitch/snmp/mode/listinterfaces.pm b/src/network/mrv/optiswitch/snmp/mode/listinterfaces.pm index 6d5d996c4..d536aa1cb 100644 --- a/src/network/mrv/optiswitch/snmp/mode/listinterfaces.pm +++ b/src/network/mrv/optiswitch/snmp/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/mode/memory.pm b/src/network/mrv/optiswitch/snmp/mode/memory.pm index bdcf98dbd..807020820 100644 --- a/src/network/mrv/optiswitch/snmp/mode/memory.pm +++ b/src/network/mrv/optiswitch/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/mrv/optiswitch/snmp/plugin.pm b/src/network/mrv/optiswitch/snmp/plugin.pm index a1320e5b6..13aa77b13 100644 --- a/src/network/mrv/optiswitch/snmp/plugin.pm +++ b/src/network/mrv/optiswitch/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/mode/components/fan.pm b/src/network/netgear/mseries/snmp/mode/components/fan.pm index c5b63ef1b..8ac15df08 100644 --- a/src/network/netgear/mseries/snmp/mode/components/fan.pm +++ b/src/network/netgear/mseries/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/mode/components/psu.pm b/src/network/netgear/mseries/snmp/mode/components/psu.pm index ddae64e7a..3d7d81f87 100644 --- a/src/network/netgear/mseries/snmp/mode/components/psu.pm +++ b/src/network/netgear/mseries/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/mode/components/temperature.pm b/src/network/netgear/mseries/snmp/mode/components/temperature.pm index 6f198a807..41b646205 100644 --- a/src/network/netgear/mseries/snmp/mode/components/temperature.pm +++ b/src/network/netgear/mseries/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/mode/cpu.pm b/src/network/netgear/mseries/snmp/mode/cpu.pm index 8f2e60b72..c5ce28ad2 100644 --- a/src/network/netgear/mseries/snmp/mode/cpu.pm +++ b/src/network/netgear/mseries/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/mode/hardware.pm b/src/network/netgear/mseries/snmp/mode/hardware.pm index 0a86d9f64..d74c05772 100644 --- a/src/network/netgear/mseries/snmp/mode/hardware.pm +++ b/src/network/netgear/mseries/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/mode/memory.pm b/src/network/netgear/mseries/snmp/mode/memory.pm index 570520f1c..0ece70380 100644 --- a/src/network/netgear/mseries/snmp/mode/memory.pm +++ b/src/network/netgear/mseries/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/mseries/snmp/plugin.pm b/src/network/netgear/mseries/snmp/plugin.pm index 9a831d651..ed6dc8f60 100644 --- a/src/network/netgear/mseries/snmp/plugin.pm +++ b/src/network/netgear/mseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/sseries/snmp/mode/components/fan.pm b/src/network/netgear/sseries/snmp/mode/components/fan.pm index 959fe9acb..fe04a19b6 100644 --- a/src/network/netgear/sseries/snmp/mode/components/fan.pm +++ b/src/network/netgear/sseries/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/sseries/snmp/mode/components/psu.pm b/src/network/netgear/sseries/snmp/mode/components/psu.pm index 2882f8e8a..1c668ce25 100644 --- a/src/network/netgear/sseries/snmp/mode/components/psu.pm +++ b/src/network/netgear/sseries/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/sseries/snmp/mode/components/temperature.pm b/src/network/netgear/sseries/snmp/mode/components/temperature.pm index 8d46de26c..8912d239a 100644 --- a/src/network/netgear/sseries/snmp/mode/components/temperature.pm +++ b/src/network/netgear/sseries/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/sseries/snmp/mode/cpu.pm b/src/network/netgear/sseries/snmp/mode/cpu.pm index a987db5b8..4c3345aef 100644 --- a/src/network/netgear/sseries/snmp/mode/cpu.pm +++ b/src/network/netgear/sseries/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -93,7 +93,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/netgear/sseries/snmp/mode/hardware.pm b/src/network/netgear/sseries/snmp/mode/hardware.pm index d7f72db6c..a4a23cdd5 100644 --- a/src/network/netgear/sseries/snmp/mode/hardware.pm +++ b/src/network/netgear/sseries/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/sseries/snmp/mode/interfaces.pm b/src/network/netgear/sseries/snmp/mode/interfaces.pm index 2519cfb0a..b38c79914 100644 --- a/src/network/netgear/sseries/snmp/mode/interfaces.pm +++ b/src/network/netgear/sseries/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/netgear/sseries/snmp/mode/memory.pm b/src/network/netgear/sseries/snmp/mode/memory.pm index 016899262..e1e3c9846 100644 --- a/src/network/netgear/sseries/snmp/mode/memory.pm +++ b/src/network/netgear/sseries/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/netgear/sseries/snmp/plugin.pm b/src/network/netgear/sseries/snmp/plugin.pm index 49fd7d7ea..d839073b7 100644 --- a/src/network/netgear/sseries/snmp/plugin.pm +++ b/src/network/netgear/sseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/bgpusage.pm b/src/network/nokia/timos/snmp/mode/bgpusage.pm index f59db5dde..a53114ebc 100644 --- a/src/network/nokia/timos/snmp/mode/bgpusage.pm +++ b/src/network/nokia/timos/snmp/mode/bgpusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/cpu.pm b/src/network/nokia/timos/snmp/mode/cpu.pm index 413f17738..8489f4434 100644 --- a/src/network/nokia/timos/snmp/mode/cpu.pm +++ b/src/network/nokia/timos/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/hardware.pm b/src/network/nokia/timos/snmp/mode/hardware.pm index 009e83ce2..022ba9d35 100644 --- a/src/network/nokia/timos/snmp/mode/hardware.pm +++ b/src/network/nokia/timos/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/isisusage.pm b/src/network/nokia/timos/snmp/mode/isisusage.pm index a10a303e3..ee43808be 100644 --- a/src/network/nokia/timos/snmp/mode/isisusage.pm +++ b/src/network/nokia/timos/snmp/mode/isisusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/l2tpusage.pm b/src/network/nokia/timos/snmp/mode/l2tpusage.pm index 93291f17f..b9d719037 100644 --- a/src/network/nokia/timos/snmp/mode/l2tpusage.pm +++ b/src/network/nokia/timos/snmp/mode/l2tpusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/ldpusage.pm b/src/network/nokia/timos/snmp/mode/ldpusage.pm index 6c8a751bd..931786b3b 100644 --- a/src/network/nokia/timos/snmp/mode/ldpusage.pm +++ b/src/network/nokia/timos/snmp/mode/ldpusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/listbgp.pm b/src/network/nokia/timos/snmp/mode/listbgp.pm index 9efc183c5..a62370665 100644 --- a/src/network/nokia/timos/snmp/mode/listbgp.pm +++ b/src/network/nokia/timos/snmp/mode/listbgp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/listisis.pm b/src/network/nokia/timos/snmp/mode/listisis.pm index b591dd7b9..ec6469ccd 100644 --- a/src/network/nokia/timos/snmp/mode/listisis.pm +++ b/src/network/nokia/timos/snmp/mode/listisis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/listldp.pm b/src/network/nokia/timos/snmp/mode/listldp.pm index d5f544b18..98581db23 100644 --- a/src/network/nokia/timos/snmp/mode/listldp.pm +++ b/src/network/nokia/timos/snmp/mode/listldp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/listsap.pm b/src/network/nokia/timos/snmp/mode/listsap.pm index 9af73cbe1..12da26d7d 100644 --- a/src/network/nokia/timos/snmp/mode/listsap.pm +++ b/src/network/nokia/timos/snmp/mode/listsap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/listvrtr.pm b/src/network/nokia/timos/snmp/mode/listvrtr.pm index 8f80a679b..fa2b5d789 100644 --- a/src/network/nokia/timos/snmp/mode/listvrtr.pm +++ b/src/network/nokia/timos/snmp/mode/listvrtr.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/memory.pm b/src/network/nokia/timos/snmp/mode/memory.pm index 4d916ffab..83915dac0 100644 --- a/src/network/nokia/timos/snmp/mode/memory.pm +++ b/src/network/nokia/timos/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/mode/sapusage.pm b/src/network/nokia/timos/snmp/mode/sapusage.pm index 0ecb8f863..4d893e4b5 100644 --- a/src/network/nokia/timos/snmp/mode/sapusage.pm +++ b/src/network/nokia/timos/snmp/mode/sapusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nokia/timos/snmp/plugin.pm b/src/network/nokia/timos/snmp/plugin.pm index c204c4a70..fd9b688c0 100644 --- a/src/network/nokia/timos/snmp/plugin.pm +++ b/src/network/nokia/timos/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/card.pm b/src/network/nortel/standard/snmp/mode/components/card.pm index 093bb8443..42b7698d2 100644 --- a/src/network/nortel/standard/snmp/mode/components/card.pm +++ b/src/network/nortel/standard/snmp/mode/components/card.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/entity.pm b/src/network/nortel/standard/snmp/mode/components/entity.pm index aa5f3dbb1..e4c090c30 100644 --- a/src/network/nortel/standard/snmp/mode/components/entity.pm +++ b/src/network/nortel/standard/snmp/mode/components/entity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/fan.pm b/src/network/nortel/standard/snmp/mode/components/fan.pm index 1f3c717a1..77e810c1f 100644 --- a/src/network/nortel/standard/snmp/mode/components/fan.pm +++ b/src/network/nortel/standard/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/led.pm b/src/network/nortel/standard/snmp/mode/components/led.pm index 097a86cb0..4d2af5f7f 100644 --- a/src/network/nortel/standard/snmp/mode/components/led.pm +++ b/src/network/nortel/standard/snmp/mode/components/led.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/psu.pm b/src/network/nortel/standard/snmp/mode/components/psu.pm index ca95ab6ff..98bed9a93 100644 --- a/src/network/nortel/standard/snmp/mode/components/psu.pm +++ b/src/network/nortel/standard/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/resources.pm b/src/network/nortel/standard/snmp/mode/components/resources.pm index 2a1c7879e..72a93f1e6 100644 --- a/src/network/nortel/standard/snmp/mode/components/resources.pm +++ b/src/network/nortel/standard/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/components/temperature.pm b/src/network/nortel/standard/snmp/mode/components/temperature.pm index e6baeeca6..95bab7c0f 100644 --- a/src/network/nortel/standard/snmp/mode/components/temperature.pm +++ b/src/network/nortel/standard/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/cpu.pm b/src/network/nortel/standard/snmp/mode/cpu.pm index feec50bc6..6373fa48a 100644 --- a/src/network/nortel/standard/snmp/mode/cpu.pm +++ b/src/network/nortel/standard/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/hardware.pm b/src/network/nortel/standard/snmp/mode/hardware.pm index aba5f00b9..ede3d790d 100644 --- a/src/network/nortel/standard/snmp/mode/hardware.pm +++ b/src/network/nortel/standard/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/interfaces.pm b/src/network/nortel/standard/snmp/mode/interfaces.pm index d43f69a18..5325b5691 100644 --- a/src/network/nortel/standard/snmp/mode/interfaces.pm +++ b/src/network/nortel/standard/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -195,7 +195,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/nortel/standard/snmp/mode/memory.pm b/src/network/nortel/standard/snmp/mode/memory.pm index 08138cf02..b13792229 100644 --- a/src/network/nortel/standard/snmp/mode/memory.pm +++ b/src/network/nortel/standard/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/mode/stack.pm b/src/network/nortel/standard/snmp/mode/stack.pm index ace89770b..c5599fcba 100644 --- a/src/network/nortel/standard/snmp/mode/stack.pm +++ b/src/network/nortel/standard/snmp/mode/stack.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/nortel/standard/snmp/plugin.pm b/src/network/nortel/standard/snmp/plugin.pm index 20c5bfda1..0acdb52fb 100644 --- a/src/network/nortel/standard/snmp/plugin.pm +++ b/src/network/nortel/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oneaccess/snmp/mode/cellsradio.pm b/src/network/oneaccess/snmp/mode/cellsradio.pm index 699e6a9c0..693942324 100644 --- a/src/network/oneaccess/snmp/mode/cellsradio.pm +++ b/src/network/oneaccess/snmp/mode/cellsradio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oneaccess/snmp/mode/cpu.pm b/src/network/oneaccess/snmp/mode/cpu.pm index f5b603d1f..ce2b03f20 100644 --- a/src/network/oneaccess/snmp/mode/cpu.pm +++ b/src/network/oneaccess/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -86,7 +86,7 @@ __END__ =head1 MODE -Check cpu usage (oneaccess-sys-mib). +Check CPU usage (oneaccess-sys-mib). =over 8 diff --git a/src/network/oneaccess/snmp/mode/interfaces.pm b/src/network/oneaccess/snmp/mode/interfaces.pm index f2fdc6b35..84e020104 100644 --- a/src/network/oneaccess/snmp/mode/interfaces.pm +++ b/src/network/oneaccess/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/oneaccess/snmp/mode/listrttprobes.pm b/src/network/oneaccess/snmp/mode/listrttprobes.pm index 42d3c3808..6f35793f0 100644 --- a/src/network/oneaccess/snmp/mode/listrttprobes.pm +++ b/src/network/oneaccess/snmp/mode/listrttprobes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oneaccess/snmp/mode/memory.pm b/src/network/oneaccess/snmp/mode/memory.pm index 82957e4aa..78ab4b72a 100644 --- a/src/network/oneaccess/snmp/mode/memory.pm +++ b/src/network/oneaccess/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oneaccess/snmp/mode/rttprobes.pm b/src/network/oneaccess/snmp/mode/rttprobes.pm index 533334760..68bad8e29 100644 --- a/src/network/oneaccess/snmp/mode/rttprobes.pm +++ b/src/network/oneaccess/snmp/mode/rttprobes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oneaccess/snmp/plugin.pm b/src/network/oneaccess/snmp/plugin.pm index 7fca57d12..60b825c5c 100644 --- a/src/network/oneaccess/snmp/plugin.pm +++ b/src/network/oneaccess/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/mode/cpudetailed.pm b/src/network/opengear/snmp/mode/cpudetailed.pm index 865ef20e0..9b5931524 100644 --- a/src/network/opengear/snmp/mode/cpudetailed.pm +++ b/src/network/opengear/snmp/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/mode/interfaces.pm b/src/network/opengear/snmp/mode/interfaces.pm index c55e7ffad..474c61307 100644 --- a/src/network/opengear/snmp/mode/interfaces.pm +++ b/src/network/opengear/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/opengear/snmp/mode/listserialports.pm b/src/network/opengear/snmp/mode/listserialports.pm index 755fbe00e..0b6c7aeed 100644 --- a/src/network/opengear/snmp/mode/listserialports.pm +++ b/src/network/opengear/snmp/mode/listserialports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/mode/load.pm b/src/network/opengear/snmp/mode/load.pm index 035aeac94..168a3fa2e 100644 --- a/src/network/opengear/snmp/mode/load.pm +++ b/src/network/opengear/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/mode/memory.pm b/src/network/opengear/snmp/mode/memory.pm index 69907276a..1383d872e 100644 --- a/src/network/opengear/snmp/mode/memory.pm +++ b/src/network/opengear/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/mode/serialports.pm b/src/network/opengear/snmp/mode/serialports.pm index bd9b5764f..90d1f6b5a 100644 --- a/src/network/opengear/snmp/mode/serialports.pm +++ b/src/network/opengear/snmp/mode/serialports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/mode/uptime.pm b/src/network/opengear/snmp/mode/uptime.pm index e9574528c..560ce1f92 100644 --- a/src/network/opengear/snmp/mode/uptime.pm +++ b/src/network/opengear/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/opengear/snmp/plugin.pm b/src/network/opengear/snmp/plugin.pm index 57aba5ee6..1f1a508a6 100644 --- a/src/network/opengear/snmp/plugin.pm +++ b/src/network/opengear/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oracle/infiniband/snmp/mode/infinibandusage.pm b/src/network/oracle/infiniband/snmp/mode/infinibandusage.pm index 94c360a90..b200ea44d 100644 --- a/src/network/oracle/infiniband/snmp/mode/infinibandusage.pm +++ b/src/network/oracle/infiniband/snmp/mode/infinibandusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oracle/infiniband/snmp/mode/listinfinibands.pm b/src/network/oracle/infiniband/snmp/mode/listinfinibands.pm index 6e2e46db1..414b3ad3d 100644 --- a/src/network/oracle/infiniband/snmp/mode/listinfinibands.pm +++ b/src/network/oracle/infiniband/snmp/mode/listinfinibands.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oracle/infiniband/snmp/plugin.pm b/src/network/oracle/infiniband/snmp/plugin.pm index 31eb47f2a..f197bda74 100644 --- a/src/network/oracle/infiniband/snmp/plugin.pm +++ b/src/network/oracle/infiniband/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oracle/otd/snmp/mode/listvservers.pm b/src/network/oracle/otd/snmp/mode/listvservers.pm index 83a8d2fac..babb46e6b 100644 --- a/src/network/oracle/otd/snmp/mode/listvservers.pm +++ b/src/network/oracle/otd/snmp/mode/listvservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oracle/otd/snmp/mode/vserverusage.pm b/src/network/oracle/otd/snmp/mode/vserverusage.pm index 5d7415eb6..3dee4c17d 100644 --- a/src/network/oracle/otd/snmp/mode/vserverusage.pm +++ b/src/network/oracle/otd/snmp/mode/vserverusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/oracle/otd/snmp/plugin.pm b/src/network/oracle/otd/snmp/plugin.pm index 76a908f65..6a08743a1 100644 --- a/src/network/oracle/otd/snmp/plugin.pm +++ b/src/network/oracle/otd/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/mode/clusterstatus.pm b/src/network/paloalto/snmp/mode/clusterstatus.pm index 040b3496a..57b2849d9 100644 --- a/src/network/paloalto/snmp/mode/clusterstatus.pm +++ b/src/network/paloalto/snmp/mode/clusterstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/mode/cpu.pm b/src/network/paloalto/snmp/mode/cpu.pm index 3c82d05eb..f122a4760 100644 --- a/src/network/paloalto/snmp/mode/cpu.pm +++ b/src/network/paloalto/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/mode/gpusage.pm b/src/network/paloalto/snmp/mode/gpusage.pm index e717e0df8..bcfef0a81 100644 --- a/src/network/paloalto/snmp/mode/gpusage.pm +++ b/src/network/paloalto/snmp/mode/gpusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/mode/memory.pm b/src/network/paloalto/snmp/mode/memory.pm index 04b1fe51c..61a21917e 100644 --- a/src/network/paloalto/snmp/mode/memory.pm +++ b/src/network/paloalto/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -87,7 +87,7 @@ Time in minutes before reloading cache file (default: 180). =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--filter-storage-type> diff --git a/src/network/paloalto/snmp/mode/panorama.pm b/src/network/paloalto/snmp/mode/panorama.pm index b165537eb..af35a3a16 100644 --- a/src/network/paloalto/snmp/mode/panorama.pm +++ b/src/network/paloalto/snmp/mode/panorama.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/mode/sessions.pm b/src/network/paloalto/snmp/mode/sessions.pm index 9ef14eb68..acd53120b 100644 --- a/src/network/paloalto/snmp/mode/sessions.pm +++ b/src/network/paloalto/snmp/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/mode/signatures.pm b/src/network/paloalto/snmp/mode/signatures.pm index 248d62a3a..1b969a56f 100644 --- a/src/network/paloalto/snmp/mode/signatures.pm +++ b/src/network/paloalto/snmp/mode/signatures.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/snmp/plugin.pm b/src/network/paloalto/snmp/plugin.pm index eec4f4020..e2e8f4ddb 100644 --- a/src/network/paloalto/snmp/plugin.pm +++ b/src/network/paloalto/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/custom/cli.pm b/src/network/paloalto/ssh/custom/cli.pm index 455958aa2..b282aef46 100644 --- a/src/network/paloalto/ssh/custom/cli.pm +++ b/src/network/paloalto/ssh/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/components/psu.pm b/src/network/paloalto/ssh/mode/components/psu.pm index bdcf4c54d..8d6737b42 100644 --- a/src/network/paloalto/ssh/mode/components/psu.pm +++ b/src/network/paloalto/ssh/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/components/temperature.pm b/src/network/paloalto/ssh/mode/components/temperature.pm index dcd0df020..39e81c52d 100644 --- a/src/network/paloalto/ssh/mode/components/temperature.pm +++ b/src/network/paloalto/ssh/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/components/voltage.pm b/src/network/paloalto/ssh/mode/components/voltage.pm index c638cd295..919644a63 100644 --- a/src/network/paloalto/ssh/mode/components/voltage.pm +++ b/src/network/paloalto/ssh/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/environment.pm b/src/network/paloalto/ssh/mode/environment.pm index 89fee1e6c..218de99da 100644 --- a/src/network/paloalto/ssh/mode/environment.pm +++ b/src/network/paloalto/ssh/mode/environment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/ha.pm b/src/network/paloalto/ssh/mode/ha.pm index 4f1a2beba..d8a70b3d0 100644 --- a/src/network/paloalto/ssh/mode/ha.pm +++ b/src/network/paloalto/ssh/mode/ha.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/interfaces.pm b/src/network/paloalto/ssh/mode/interfaces.pm index dc73a31d3..d7191cd8c 100644 --- a/src/network/paloalto/ssh/mode/interfaces.pm +++ b/src/network/paloalto/ssh/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/ipsec.pm b/src/network/paloalto/ssh/mode/ipsec.pm index a08a4c249..d64052dd2 100644 --- a/src/network/paloalto/ssh/mode/ipsec.pm +++ b/src/network/paloalto/ssh/mode/ipsec.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/licenses.pm b/src/network/paloalto/ssh/mode/licenses.pm index bd5507d46..538223c01 100644 --- a/src/network/paloalto/ssh/mode/licenses.pm +++ b/src/network/paloalto/ssh/mode/licenses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/mode/system.pm b/src/network/paloalto/ssh/mode/system.pm index 6057654b6..66b6a73c6 100644 --- a/src/network/paloalto/ssh/mode/system.pm +++ b/src/network/paloalto/ssh/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/paloalto/ssh/plugin.pm b/src/network/paloalto/ssh/plugin.pm index 3af676f5a..5a318f9e5 100644 --- a/src/network/paloalto/ssh/plugin.pm +++ b/src/network/paloalto/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/patton/smartnode/snmp/mode/call.pm b/src/network/patton/smartnode/snmp/mode/call.pm index af4098440..d44487824 100644 --- a/src/network/patton/smartnode/snmp/mode/call.pm +++ b/src/network/patton/smartnode/snmp/mode/call.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/patton/smartnode/snmp/mode/system.pm b/src/network/patton/smartnode/snmp/mode/system.pm index 2c6e17c66..f27b9f53f 100644 --- a/src/network/patton/smartnode/snmp/mode/system.pm +++ b/src/network/patton/smartnode/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/patton/smartnode/snmp/plugin.pm b/src/network/patton/smartnode/snmp/plugin.pm index b14196d8a..219528bf0 100644 --- a/src/network/patton/smartnode/snmp/plugin.pm +++ b/src/network/patton/smartnode/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/peplink/balance/snmp/mode/cpu.pm b/src/network/peplink/balance/snmp/mode/cpu.pm index 422326c60..017836ddc 100644 --- a/src/network/peplink/balance/snmp/mode/cpu.pm +++ b/src/network/peplink/balance/snmp/mode/cpu.pm @@ -81,7 +81,7 @@ __END__ =head1 MODE -Check cpu usage (PEPLINK-BALANCE-MIB). +Check CPU usage (PEPLINK-BALANCE-MIB). =over 8 diff --git a/src/network/peplink/pepwave/snmp/mode/cpu.pm b/src/network/peplink/pepwave/snmp/mode/cpu.pm index 49d9439cb..7fb27cd3e 100644 --- a/src/network/peplink/pepwave/snmp/mode/cpu.pm +++ b/src/network/peplink/pepwave/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/peplink/pepwave/snmp/mode/memory.pm b/src/network/peplink/pepwave/snmp/mode/memory.pm index 4cde9bd41..70e3946ef 100644 --- a/src/network/peplink/pepwave/snmp/mode/memory.pm +++ b/src/network/peplink/pepwave/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/peplink/pepwave/snmp/mode/wanusage.pm b/src/network/peplink/pepwave/snmp/mode/wanusage.pm index 7dcd3f9ac..a3a9ba36a 100644 --- a/src/network/peplink/pepwave/snmp/mode/wanusage.pm +++ b/src/network/peplink/pepwave/snmp/mode/wanusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/peplink/pepwave/snmp/plugin.pm b/src/network/peplink/pepwave/snmp/plugin.pm index b868aecbd..1161bbef7 100644 --- a/src/network/peplink/pepwave/snmp/plugin.pm +++ b/src/network/peplink/pepwave/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/perle/ids/snmp/mode/components/psu.pm b/src/network/perle/ids/snmp/mode/components/psu.pm index 9f5ff1c41..2b24f0bb9 100644 --- a/src/network/perle/ids/snmp/mode/components/psu.pm +++ b/src/network/perle/ids/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/perle/ids/snmp/mode/components/resources.pm b/src/network/perle/ids/snmp/mode/components/resources.pm index 9bf5d1904..7a2f45fa7 100644 --- a/src/network/perle/ids/snmp/mode/components/resources.pm +++ b/src/network/perle/ids/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/perle/ids/snmp/mode/components/temperature.pm b/src/network/perle/ids/snmp/mode/components/temperature.pm index 5f41be1a6..3949b392f 100644 --- a/src/network/perle/ids/snmp/mode/components/temperature.pm +++ b/src/network/perle/ids/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/perle/ids/snmp/mode/hardware.pm b/src/network/perle/ids/snmp/mode/hardware.pm index 8ec869598..302e16b4a 100644 --- a/src/network/perle/ids/snmp/mode/hardware.pm +++ b/src/network/perle/ids/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/perle/ids/snmp/mode/systemusage.pm b/src/network/perle/ids/snmp/mode/systemusage.pm index 74f146019..5a51f5ca9 100644 --- a/src/network/perle/ids/snmp/mode/systemusage.pm +++ b/src/network/perle/ids/snmp/mode/systemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/perle/ids/snmp/plugin.pm b/src/network/perle/ids/snmp/plugin.pm index 0d676469a..9200408f4 100644 --- a/src/network/perle/ids/snmp/plugin.pm +++ b/src/network/perle/ids/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/polycom/rmx/snmp/mode/components/board.pm b/src/network/polycom/rmx/snmp/mode/components/board.pm index 8f2daaa88..b3ac11d01 100644 --- a/src/network/polycom/rmx/snmp/mode/components/board.pm +++ b/src/network/polycom/rmx/snmp/mode/components/board.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/polycom/rmx/snmp/mode/components/fan.pm b/src/network/polycom/rmx/snmp/mode/components/fan.pm index c1f544ad0..a160d6c66 100644 --- a/src/network/polycom/rmx/snmp/mode/components/fan.pm +++ b/src/network/polycom/rmx/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/polycom/rmx/snmp/mode/components/psu.pm b/src/network/polycom/rmx/snmp/mode/components/psu.pm index 48198d3d1..eec0125de 100644 --- a/src/network/polycom/rmx/snmp/mode/components/psu.pm +++ b/src/network/polycom/rmx/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/polycom/rmx/snmp/mode/hardware.pm b/src/network/polycom/rmx/snmp/mode/hardware.pm index 76eb0b1fc..368899e24 100644 --- a/src/network/polycom/rmx/snmp/mode/hardware.pm +++ b/src/network/polycom/rmx/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/polycom/rmx/snmp/mode/videoconferencingusage.pm b/src/network/polycom/rmx/snmp/mode/videoconferencingusage.pm index 1a4279889..e4429d1e1 100644 --- a/src/network/polycom/rmx/snmp/mode/videoconferencingusage.pm +++ b/src/network/polycom/rmx/snmp/mode/videoconferencingusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/polycom/rmx/snmp/plugin.pm b/src/network/polycom/rmx/snmp/plugin.pm index bdb26a108..ec8678eb2 100644 --- a/src/network/polycom/rmx/snmp/plugin.pm +++ b/src/network/polycom/rmx/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/radware/alteon/snmp/mode/cpu.pm b/src/network/radware/alteon/snmp/mode/cpu.pm index 989e22d2f..c71933912 100644 --- a/src/network/radware/alteon/snmp/mode/cpu.pm +++ b/src/network/radware/alteon/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -213,7 +213,7 @@ __END__ =head1 MODE -Check MP cpu usage (ALTEON-CHEETAH-SWITCH-MIB). +Check MP CPU usage (ALTEON-CHEETAH-SWITCH-MIB). =over 8 diff --git a/src/network/radware/alteon/snmp/mode/hardware.pm b/src/network/radware/alteon/snmp/mode/hardware.pm index 824a624c9..d40b97e93 100644 --- a/src/network/radware/alteon/snmp/mode/hardware.pm +++ b/src/network/radware/alteon/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/radware/alteon/snmp/mode/listvservers.pm b/src/network/radware/alteon/snmp/mode/listvservers.pm index 9a078b56c..22481a057 100644 --- a/src/network/radware/alteon/snmp/mode/listvservers.pm +++ b/src/network/radware/alteon/snmp/mode/listvservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/radware/alteon/snmp/mode/memory.pm b/src/network/radware/alteon/snmp/mode/memory.pm index 6f34e3b77..1176eeae5 100644 --- a/src/network/radware/alteon/snmp/mode/memory.pm +++ b/src/network/radware/alteon/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/radware/alteon/snmp/mode/vserverstatus.pm b/src/network/radware/alteon/snmp/mode/vserverstatus.pm index 8e59dbc82..8d6f99049 100644 --- a/src/network/radware/alteon/snmp/mode/vserverstatus.pm +++ b/src/network/radware/alteon/snmp/mode/vserverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/radware/alteon/snmp/plugin.pm b/src/network/radware/alteon/snmp/plugin.pm index 15aab393a..c1734ba2e 100644 --- a/src/network/radware/alteon/snmp/plugin.pm +++ b/src/network/radware/alteon/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/mode/components/fan.pm b/src/network/raisecom/snmp/mode/components/fan.pm index 4e145e875..138adc798 100644 --- a/src/network/raisecom/snmp/mode/components/fan.pm +++ b/src/network/raisecom/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/mode/components/temperature.pm b/src/network/raisecom/snmp/mode/components/temperature.pm index 350700860..81746f2fd 100644 --- a/src/network/raisecom/snmp/mode/components/temperature.pm +++ b/src/network/raisecom/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/mode/components/voltage.pm b/src/network/raisecom/snmp/mode/components/voltage.pm index cbb8deec6..c212e907c 100644 --- a/src/network/raisecom/snmp/mode/components/voltage.pm +++ b/src/network/raisecom/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/mode/cpu.pm b/src/network/raisecom/snmp/mode/cpu.pm index e76efd87d..443eb66b7 100644 --- a/src/network/raisecom/snmp/mode/cpu.pm +++ b/src/network/raisecom/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/mode/hardware.pm b/src/network/raisecom/snmp/mode/hardware.pm index bd8fa7809..910bdd0c4 100644 --- a/src/network/raisecom/snmp/mode/hardware.pm +++ b/src/network/raisecom/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/mode/interfaces.pm b/src/network/raisecom/snmp/mode/interfaces.pm index 919248d94..2b3ffdfb5 100644 --- a/src/network/raisecom/snmp/mode/interfaces.pm +++ b/src/network/raisecom/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/raisecom/snmp/mode/memory.pm b/src/network/raisecom/snmp/mode/memory.pm index 032b33ba9..3c7e609b3 100644 --- a/src/network/raisecom/snmp/mode/memory.pm +++ b/src/network/raisecom/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/raisecom/snmp/plugin.pm b/src/network/raisecom/snmp/plugin.pm index 315b4eb35..c2cd2dbf3 100644 --- a/src/network/raisecom/snmp/plugin.pm +++ b/src/network/raisecom/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/components/disk.pm b/src/network/redback/snmp/mode/components/disk.pm index 4f5c609d1..da1e8ea81 100644 --- a/src/network/redback/snmp/mode/components/disk.pm +++ b/src/network/redback/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/components/fan.pm b/src/network/redback/snmp/mode/components/fan.pm index bb26d9f81..00c0b0371 100644 --- a/src/network/redback/snmp/mode/components/fan.pm +++ b/src/network/redback/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/components/psu.pm b/src/network/redback/snmp/mode/components/psu.pm index 5b037f64d..1f80b0635 100644 --- a/src/network/redback/snmp/mode/components/psu.pm +++ b/src/network/redback/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/components/temperature.pm b/src/network/redback/snmp/mode/components/temperature.pm index 3db8ed567..1e4597dd5 100644 --- a/src/network/redback/snmp/mode/components/temperature.pm +++ b/src/network/redback/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/components/voltage.pm b/src/network/redback/snmp/mode/components/voltage.pm index 9c847f927..682100f7d 100644 --- a/src/network/redback/snmp/mode/components/voltage.pm +++ b/src/network/redback/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/cpu.pm b/src/network/redback/snmp/mode/cpu.pm index 7ee22e24f..bfd67d278 100644 --- a/src/network/redback/snmp/mode/cpu.pm +++ b/src/network/redback/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -141,7 +141,7 @@ __END__ =head1 MODE -Check cpu usage (RBN-CPU-METER-MIB). +Check CPU usage (RBN-CPU-METER-MIB). =over 8 diff --git a/src/network/redback/snmp/mode/disk.pm b/src/network/redback/snmp/mode/disk.pm index f1cb1aa59..2f83ad0c1 100644 --- a/src/network/redback/snmp/mode/disk.pm +++ b/src/network/redback/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/hardware.pm b/src/network/redback/snmp/mode/hardware.pm index 4a676d1dd..a47afc3b0 100644 --- a/src/network/redback/snmp/mode/hardware.pm +++ b/src/network/redback/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/mode/memory.pm b/src/network/redback/snmp/mode/memory.pm index bbb4ea19e..9e08c025f 100644 --- a/src/network/redback/snmp/mode/memory.pm +++ b/src/network/redback/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/redback/snmp/plugin.pm b/src/network/redback/snmp/plugin.pm index ce100a845..8dd5477f9 100644 --- a/src/network/redback/snmp/plugin.pm +++ b/src/network/redback/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/riverbed/interceptor/snmp/mode/neighborconnections.pm b/src/network/riverbed/interceptor/snmp/mode/neighborconnections.pm index aa09971c8..a7bfeb108 100644 --- a/src/network/riverbed/interceptor/snmp/mode/neighborconnections.pm +++ b/src/network/riverbed/interceptor/snmp/mode/neighborconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/riverbed/interceptor/snmp/plugin.pm b/src/network/riverbed/interceptor/snmp/plugin.pm index 310729dd8..5d2e11eee 100644 --- a/src/network/riverbed/interceptor/snmp/plugin.pm +++ b/src/network/riverbed/interceptor/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/riverbed/steelhead/snmp/plugin.pm b/src/network/riverbed/steelhead/snmp/plugin.pm index 7f699630f..85a5b397f 100644 --- a/src/network/riverbed/steelhead/snmp/plugin.pm +++ b/src/network/riverbed/steelhead/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/ap/snmp/mode/cpu.pm b/src/network/ruckus/ap/snmp/mode/cpu.pm index 705f9a610..a9260b98e 100644 --- a/src/network/ruckus/ap/snmp/mode/cpu.pm +++ b/src/network/ruckus/ap/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/ap/snmp/mode/memory.pm b/src/network/ruckus/ap/snmp/mode/memory.pm index 7d29d3bf7..ebd7c79e2 100644 --- a/src/network/ruckus/ap/snmp/mode/memory.pm +++ b/src/network/ruckus/ap/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/ap/snmp/mode/users.pm b/src/network/ruckus/ap/snmp/mode/users.pm index 47eb7ba83..317a7ef41 100644 --- a/src/network/ruckus/ap/snmp/mode/users.pm +++ b/src/network/ruckus/ap/snmp/mode/users.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/ap/snmp/plugin.pm b/src/network/ruckus/ap/snmp/plugin.pm index d56c4554a..f4e308220 100644 --- a/src/network/ruckus/ap/snmp/plugin.pm +++ b/src/network/ruckus/ap/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/icx/snmp/plugin.pm b/src/network/ruckus/icx/snmp/plugin.pm index 8b7c668f8..5abb8aa0a 100644 --- a/src/network/ruckus/icx/snmp/plugin.pm +++ b/src/network/ruckus/icx/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/mode/apstatus.pm b/src/network/ruckus/scg/snmp/mode/apstatus.pm index 845284c58..0152c79c3 100644 --- a/src/network/ruckus/scg/snmp/mode/apstatus.pm +++ b/src/network/ruckus/scg/snmp/mode/apstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/mode/apusage.pm b/src/network/ruckus/scg/snmp/mode/apusage.pm index 59569f779..f50cc7126 100644 --- a/src/network/ruckus/scg/snmp/mode/apusage.pm +++ b/src/network/ruckus/scg/snmp/mode/apusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/mode/listaps.pm b/src/network/ruckus/scg/snmp/mode/listaps.pm index 9a10053f9..6bba5d5a9 100644 --- a/src/network/ruckus/scg/snmp/mode/listaps.pm +++ b/src/network/ruckus/scg/snmp/mode/listaps.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/mode/listssids.pm b/src/network/ruckus/scg/snmp/mode/listssids.pm index fd69c91cd..26dfb9e2d 100644 --- a/src/network/ruckus/scg/snmp/mode/listssids.pm +++ b/src/network/ruckus/scg/snmp/mode/listssids.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/mode/ssidusage.pm b/src/network/ruckus/scg/snmp/mode/ssidusage.pm index 5a5d1e804..f7d60b389 100644 --- a/src/network/ruckus/scg/snmp/mode/ssidusage.pm +++ b/src/network/ruckus/scg/snmp/mode/ssidusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/mode/systemstats.pm b/src/network/ruckus/scg/snmp/mode/systemstats.pm index 98647e7f1..ccccf0e49 100644 --- a/src/network/ruckus/scg/snmp/mode/systemstats.pm +++ b/src/network/ruckus/scg/snmp/mode/systemstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/scg/snmp/plugin.pm b/src/network/ruckus/scg/snmp/plugin.pm index 5cb15c0fc..78d267d51 100644 --- a/src/network/ruckus/scg/snmp/plugin.pm +++ b/src/network/ruckus/scg/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/smartzone/snmp/mode/accesspoints.pm b/src/network/ruckus/smartzone/snmp/mode/accesspoints.pm index 1438feaa4..d8bdb349e 100644 --- a/src/network/ruckus/smartzone/snmp/mode/accesspoints.pm +++ b/src/network/ruckus/smartzone/snmp/mode/accesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/smartzone/snmp/mode/listaccesspoints.pm b/src/network/ruckus/smartzone/snmp/mode/listaccesspoints.pm index ad9a137fd..a0073f4de 100644 --- a/src/network/ruckus/smartzone/snmp/mode/listaccesspoints.pm +++ b/src/network/ruckus/smartzone/snmp/mode/listaccesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/smartzone/snmp/mode/system.pm b/src/network/ruckus/smartzone/snmp/mode/system.pm index e95ba2078..66e4e7f95 100644 --- a/src/network/ruckus/smartzone/snmp/mode/system.pm +++ b/src/network/ruckus/smartzone/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/smartzone/snmp/plugin.pm b/src/network/ruckus/smartzone/snmp/plugin.pm index 16dd99e9b..643b33992 100644 --- a/src/network/ruckus/smartzone/snmp/plugin.pm +++ b/src/network/ruckus/smartzone/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/zonedirector/snmp/mode/accesspoints.pm b/src/network/ruckus/zonedirector/snmp/mode/accesspoints.pm index ab43360bc..87eed9949 100644 --- a/src/network/ruckus/zonedirector/snmp/mode/accesspoints.pm +++ b/src/network/ruckus/zonedirector/snmp/mode/accesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/zonedirector/snmp/mode/listaccesspoints.pm b/src/network/ruckus/zonedirector/snmp/mode/listaccesspoints.pm index c3c717777..cd280cc2c 100644 --- a/src/network/ruckus/zonedirector/snmp/mode/listaccesspoints.pm +++ b/src/network/ruckus/zonedirector/snmp/mode/listaccesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/zonedirector/snmp/mode/system.pm b/src/network/ruckus/zonedirector/snmp/mode/system.pm index 3832c0543..3d6500739 100644 --- a/src/network/ruckus/zonedirector/snmp/mode/system.pm +++ b/src/network/ruckus/zonedirector/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruckus/zonedirector/snmp/plugin.pm b/src/network/ruckus/zonedirector/snmp/plugin.pm index 382e2e2e1..1f02838c8 100644 --- a/src/network/ruckus/zonedirector/snmp/plugin.pm +++ b/src/network/ruckus/zonedirector/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/mode/components/fan.pm b/src/network/ruggedcom/mode/components/fan.pm index ebcc71780..993a80f9f 100644 --- a/src/network/ruggedcom/mode/components/fan.pm +++ b/src/network/ruggedcom/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/mode/components/psu.pm b/src/network/ruggedcom/mode/components/psu.pm index a7abc03db..7f96a370e 100644 --- a/src/network/ruggedcom/mode/components/psu.pm +++ b/src/network/ruggedcom/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/mode/errors.pm b/src/network/ruggedcom/mode/errors.pm index 9c6aa6f46..4ccbfbffd 100644 --- a/src/network/ruggedcom/mode/errors.pm +++ b/src/network/ruggedcom/mode/errors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/mode/hardware.pm b/src/network/ruggedcom/mode/hardware.pm index 1e2f5f0d1..071f39daf 100644 --- a/src/network/ruggedcom/mode/hardware.pm +++ b/src/network/ruggedcom/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/mode/memory.pm b/src/network/ruggedcom/mode/memory.pm index 38fae5b65..4d52427f9 100644 --- a/src/network/ruggedcom/mode/memory.pm +++ b/src/network/ruggedcom/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/mode/temperature.pm b/src/network/ruggedcom/mode/temperature.pm index 8ead47fd8..56b243d75 100644 --- a/src/network/ruggedcom/mode/temperature.pm +++ b/src/network/ruggedcom/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ruggedcom/plugin.pm b/src/network/ruggedcom/plugin.pm index 624dd03ef..cd7e0b03d 100644 --- a/src/network/ruggedcom/plugin.pm +++ b/src/network/ruggedcom/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/securactive/mode/bca.pm b/src/network/securactive/mode/bca.pm index 001554edb..d2abaf929 100644 --- a/src/network/securactive/mode/bca.pm +++ b/src/network/securactive/mode/bca.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/securactive/mode/bcn.pm b/src/network/securactive/mode/bcn.pm index 47b8edbbf..6ec317bc5 100644 --- a/src/network/securactive/mode/bcn.pm +++ b/src/network/securactive/mode/bcn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/securactive/mode/listbca.pm b/src/network/securactive/mode/listbca.pm index 7d56675ad..983d362f6 100644 --- a/src/network/securactive/mode/listbca.pm +++ b/src/network/securactive/mode/listbca.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/securactive/mode/listbcn.pm b/src/network/securactive/mode/listbcn.pm index d965a44f9..9ecfba630 100644 --- a/src/network/securactive/mode/listbcn.pm +++ b/src/network/securactive/mode/listbcn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/securactive/plugin.pm b/src/network/securactive/plugin.pm index d847430bc..02cca4f08 100644 --- a/src/network/securactive/plugin.pm +++ b/src/network/securactive/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -49,6 +49,6 @@ __END__ =head1 PLUGIN DESCRIPTION Check SecurActive in SNMP. -The system (cpu, memory, traffic,...) can be used monitor with linux snmp plugin. +The system checks (CPU, memory, traffic,...) can be monitored with the linux snmp plugin. =cut diff --git a/src/network/silverpeak/snmp/mode/alarms.pm b/src/network/silverpeak/snmp/mode/alarms.pm index 2a5cfdc07..70c7d7bdd 100644 --- a/src/network/silverpeak/snmp/mode/alarms.pm +++ b/src/network/silverpeak/snmp/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/silverpeak/snmp/mode/status.pm b/src/network/silverpeak/snmp/mode/status.pm index 32f40df28..ca15525ea 100644 --- a/src/network/silverpeak/snmp/mode/status.pm +++ b/src/network/silverpeak/snmp/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/silverpeak/snmp/mode/uptime.pm b/src/network/silverpeak/snmp/mode/uptime.pm index 05b8f23ca..1bb33eb35 100644 --- a/src/network/silverpeak/snmp/mode/uptime.pm +++ b/src/network/silverpeak/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/silverpeak/snmp/plugin.pm b/src/network/silverpeak/snmp/plugin.pm index 2811e4390..562f7a05e 100644 --- a/src/network/silverpeak/snmp/plugin.pm +++ b/src/network/silverpeak/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonicwall/snmp/mode/connections.pm b/src/network/sonicwall/snmp/mode/connections.pm index 831d8e50d..8832c425d 100644 --- a/src/network/sonicwall/snmp/mode/connections.pm +++ b/src/network/sonicwall/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonicwall/snmp/mode/cpu.pm b/src/network/sonicwall/snmp/mode/cpu.pm index 7f8e69367..7bc3adee4 100644 --- a/src/network/sonicwall/snmp/mode/cpu.pm +++ b/src/network/sonicwall/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonicwall/snmp/mode/memory.pm b/src/network/sonicwall/snmp/mode/memory.pm index e237c52b5..a2bf8ef88 100644 --- a/src/network/sonicwall/snmp/mode/memory.pm +++ b/src/network/sonicwall/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonicwall/snmp/mode/vpn.pm b/src/network/sonicwall/snmp/mode/vpn.pm index c00068846..1a10b00d1 100644 --- a/src/network/sonicwall/snmp/mode/vpn.pm +++ b/src/network/sonicwall/snmp/mode/vpn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonicwall/snmp/plugin.pm b/src/network/sonicwall/snmp/plugin.pm index ee73b21ee..096e69dd8 100644 --- a/src/network/sonicwall/snmp/plugin.pm +++ b/src/network/sonicwall/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/callstats.pm b/src/network/sonus/sbc/snmp/mode/callstats.pm index 40de0d3ba..694cef7ba 100644 --- a/src/network/sonus/sbc/snmp/mode/callstats.pm +++ b/src/network/sonus/sbc/snmp/mode/callstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/channels.pm b/src/network/sonus/sbc/snmp/mode/channels.pm index f116772d4..d3db24837 100644 --- a/src/network/sonus/sbc/snmp/mode/channels.pm +++ b/src/network/sonus/sbc/snmp/mode/channels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/cpu.pm b/src/network/sonus/sbc/snmp/mode/cpu.pm index 293936166..48b2a5e8e 100644 --- a/src/network/sonus/sbc/snmp/mode/cpu.pm +++ b/src/network/sonus/sbc/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -47,7 +47,7 @@ of time that this processor was not idle) =item B<--use-ucd> -Use UCD mib for cpu average. +Use UCD mib for CPU average. =item B<--warning-average> diff --git a/src/network/sonus/sbc/snmp/mode/cpudetailed.pm b/src/network/sonus/sbc/snmp/mode/cpudetailed.pm index e24a06250..24caeb861 100644 --- a/src/network/sonus/sbc/snmp/mode/cpudetailed.pm +++ b/src/network/sonus/sbc/snmp/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/dspstats.pm b/src/network/sonus/sbc/snmp/mode/dspstats.pm index d1e79ae03..cc9583a86 100644 --- a/src/network/sonus/sbc/snmp/mode/dspstats.pm +++ b/src/network/sonus/sbc/snmp/mode/dspstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/interfaces.pm b/src/network/sonus/sbc/snmp/mode/interfaces.pm index c2b390762..a64c1d48e 100644 --- a/src/network/sonus/sbc/snmp/mode/interfaces.pm +++ b/src/network/sonus/sbc/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/sonus/sbc/snmp/mode/load.pm b/src/network/sonus/sbc/snmp/mode/load.pm index a8f00a15e..ae7bffe93 100644 --- a/src/network/sonus/sbc/snmp/mode/load.pm +++ b/src/network/sonus/sbc/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/memory.pm b/src/network/sonus/sbc/snmp/mode/memory.pm index ca1dd4e55..b1d75c2a3 100644 --- a/src/network/sonus/sbc/snmp/mode/memory.pm +++ b/src/network/sonus/sbc/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/mode/storage.pm b/src/network/sonus/sbc/snmp/mode/storage.pm index 043308652..588749fa4 100644 --- a/src/network/sonus/sbc/snmp/mode/storage.pm +++ b/src/network/sonus/sbc/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -110,7 +110,7 @@ Example: adding --display-transform-src='dev' --display-transform-dst='run' wil =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--space-reservation> diff --git a/src/network/sonus/sbc/snmp/mode/swap.pm b/src/network/sonus/sbc/snmp/mode/swap.pm index 3b805896b..c63df09bf 100644 --- a/src/network/sonus/sbc/snmp/mode/swap.pm +++ b/src/network/sonus/sbc/snmp/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sonus/sbc/snmp/plugin.pm b/src/network/sonus/sbc/snmp/plugin.pm index 0d28cb28e..35024ea42 100644 --- a/src/network/sonus/sbc/snmp/plugin.pm +++ b/src/network/sonus/sbc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sophos/es/snmp/mode/components/component.pm b/src/network/sophos/es/snmp/mode/components/component.pm index 3f346955d..a70b1c19c 100644 --- a/src/network/sophos/es/snmp/mode/components/component.pm +++ b/src/network/sophos/es/snmp/mode/components/component.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sophos/es/snmp/mode/components/system.pm b/src/network/sophos/es/snmp/mode/components/system.pm index 7ee41dfaf..ac9555597 100644 --- a/src/network/sophos/es/snmp/mode/components/system.pm +++ b/src/network/sophos/es/snmp/mode/components/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sophos/es/snmp/mode/health.pm b/src/network/sophos/es/snmp/mode/health.pm index 81e89ee69..c578f3843 100644 --- a/src/network/sophos/es/snmp/mode/health.pm +++ b/src/network/sophos/es/snmp/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sophos/es/snmp/mode/message.pm b/src/network/sophos/es/snmp/mode/message.pm index 5c3e4cce0..c1e7c488c 100644 --- a/src/network/sophos/es/snmp/mode/message.pm +++ b/src/network/sophos/es/snmp/mode/message.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/sophos/es/snmp/plugin.pm b/src/network/sophos/es/snmp/plugin.pm index 5129cc6bc..de6c2a7a5 100644 --- a/src/network/sophos/es/snmp/plugin.pm +++ b/src/network/sophos/es/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/clusterload.pm b/src/network/stonesoft/snmp/mode/clusterload.pm index 7b559534e..7afe3f4d5 100644 --- a/src/network/stonesoft/snmp/mode/clusterload.pm +++ b/src/network/stonesoft/snmp/mode/clusterload.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/clusterstate.pm b/src/network/stonesoft/snmp/mode/clusterstate.pm index c28a783a8..98d6cf40a 100644 --- a/src/network/stonesoft/snmp/mode/clusterstate.pm +++ b/src/network/stonesoft/snmp/mode/clusterstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/connections.pm b/src/network/stonesoft/snmp/mode/connections.pm index 91e611676..cc4f4dd12 100644 --- a/src/network/stonesoft/snmp/mode/connections.pm +++ b/src/network/stonesoft/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/cpu.pm b/src/network/stonesoft/snmp/mode/cpu.pm index b833680c3..273d80e8c 100644 --- a/src/network/stonesoft/snmp/mode/cpu.pm +++ b/src/network/stonesoft/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/droppedpackets.pm b/src/network/stonesoft/snmp/mode/droppedpackets.pm index ef7173b59..16050fa10 100644 --- a/src/network/stonesoft/snmp/mode/droppedpackets.pm +++ b/src/network/stonesoft/snmp/mode/droppedpackets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/memory.pm b/src/network/stonesoft/snmp/mode/memory.pm index 8b402e55b..09901a3ee 100644 --- a/src/network/stonesoft/snmp/mode/memory.pm +++ b/src/network/stonesoft/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/rejectedpackets.pm b/src/network/stonesoft/snmp/mode/rejectedpackets.pm index 2314c63ba..b26ddd3d0 100644 --- a/src/network/stonesoft/snmp/mode/rejectedpackets.pm +++ b/src/network/stonesoft/snmp/mode/rejectedpackets.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/mode/storage.pm b/src/network/stonesoft/snmp/mode/storage.pm index da8aa677f..849d2e87e 100644 --- a/src/network/stonesoft/snmp/mode/storage.pm +++ b/src/network/stonesoft/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stonesoft/snmp/plugin.pm b/src/network/stonesoft/snmp/plugin.pm index 7891aca93..012163500 100644 --- a/src/network/stonesoft/snmp/plugin.pm +++ b/src/network/stonesoft/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/custom/api.pm b/src/network/stormshield/api/custom/api.pm index e5485ce0b..9752c6236 100644 --- a/src/network/stormshield/api/custom/api.pm +++ b/src/network/stormshield/api/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/components/disk.pm b/src/network/stormshield/api/mode/components/disk.pm index 4f27b865d..e36189193 100644 --- a/src/network/stormshield/api/mode/components/disk.pm +++ b/src/network/stormshield/api/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/components/fan.pm b/src/network/stormshield/api/mode/components/fan.pm index b61338b94..e6f685ebd 100644 --- a/src/network/stormshield/api/mode/components/fan.pm +++ b/src/network/stormshield/api/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/components/psu.pm b/src/network/stormshield/api/mode/components/psu.pm index cd6368cb3..d42655c25 100644 --- a/src/network/stormshield/api/mode/components/psu.pm +++ b/src/network/stormshield/api/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/components/temperature.pm b/src/network/stormshield/api/mode/components/temperature.pm index 9e7c306e8..e77ae0464 100644 --- a/src/network/stormshield/api/mode/components/temperature.pm +++ b/src/network/stormshield/api/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/cpu.pm b/src/network/stormshield/api/mode/cpu.pm index ea4cac551..4d068aac4 100644 --- a/src/network/stormshield/api/mode/cpu.pm +++ b/src/network/stormshield/api/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -106,7 +106,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 @@ -117,7 +117,7 @@ Can be: 'core', 'average'. =item B<--filter-core> -Core cpu to monitor (can be a regexp). +Core CPU to monitor (can be a regexp). =back diff --git a/src/network/stormshield/api/mode/ha.pm b/src/network/stormshield/api/mode/ha.pm index 42605b9b0..f38c6ce0d 100644 --- a/src/network/stormshield/api/mode/ha.pm +++ b/src/network/stormshield/api/mode/ha.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/hardware.pm b/src/network/stormshield/api/mode/hardware.pm index d9a57abe1..71befea57 100644 --- a/src/network/stormshield/api/mode/hardware.pm +++ b/src/network/stormshield/api/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/health.pm b/src/network/stormshield/api/mode/health.pm index e1dbdaa83..3fa7b417f 100644 --- a/src/network/stormshield/api/mode/health.pm +++ b/src/network/stormshield/api/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/interfaces.pm b/src/network/stormshield/api/mode/interfaces.pm index c1faf140f..5de5b97ec 100644 --- a/src/network/stormshield/api/mode/interfaces.pm +++ b/src/network/stormshield/api/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/listinterfaces.pm b/src/network/stormshield/api/mode/listinterfaces.pm index 9c413d910..4183bc26e 100644 --- a/src/network/stormshield/api/mode/listinterfaces.pm +++ b/src/network/stormshield/api/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/memory.pm b/src/network/stormshield/api/mode/memory.pm index 7da5262de..2c10a4261 100644 --- a/src/network/stormshield/api/mode/memory.pm +++ b/src/network/stormshield/api/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/mode/uptime.pm b/src/network/stormshield/api/mode/uptime.pm index 61ac96465..3e11ab80f 100644 --- a/src/network/stormshield/api/mode/uptime.pm +++ b/src/network/stormshield/api/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/api/plugin.pm b/src/network/stormshield/api/plugin.pm index aad551c9b..1ac9313ab 100644 --- a/src/network/stormshield/api/plugin.pm +++ b/src/network/stormshield/api/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/local/mode/qosusage.pm b/src/network/stormshield/local/mode/qosusage.pm index df159bd89..f7374b8f5 100644 --- a/src/network/stormshield/local/mode/qosusage.pm +++ b/src/network/stormshield/local/mode/qosusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/local/plugin.pm b/src/network/stormshield/local/plugin.pm index 910a462c4..133f499ef 100644 --- a/src/network/stormshield/local/plugin.pm +++ b/src/network/stormshield/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/components/disk.pm b/src/network/stormshield/snmp/mode/components/disk.pm index 6ef926d1c..e45177074 100644 --- a/src/network/stormshield/snmp/mode/components/disk.pm +++ b/src/network/stormshield/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/components/fan.pm b/src/network/stormshield/snmp/mode/components/fan.pm index 9242cc4a1..9dda6a12c 100644 --- a/src/network/stormshield/snmp/mode/components/fan.pm +++ b/src/network/stormshield/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/components/psu.pm b/src/network/stormshield/snmp/mode/components/psu.pm index 6c58afedd..feef57326 100644 --- a/src/network/stormshield/snmp/mode/components/psu.pm +++ b/src/network/stormshield/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/components/temperature.pm b/src/network/stormshield/snmp/mode/components/temperature.pm index 1d33fd13b..7f3544a0e 100644 --- a/src/network/stormshield/snmp/mode/components/temperature.pm +++ b/src/network/stormshield/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/connections.pm b/src/network/stormshield/snmp/mode/connections.pm index 33ab7183f..615b97fbb 100644 --- a/src/network/stormshield/snmp/mode/connections.pm +++ b/src/network/stormshield/snmp/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/hanodes.pm b/src/network/stormshield/snmp/mode/hanodes.pm index d26b668d4..0c5b1808f 100644 --- a/src/network/stormshield/snmp/mode/hanodes.pm +++ b/src/network/stormshield/snmp/mode/hanodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/hardware.pm b/src/network/stormshield/snmp/mode/hardware.pm index 28a03bce9..1b03ae0ca 100644 --- a/src/network/stormshield/snmp/mode/hardware.pm +++ b/src/network/stormshield/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/health.pm b/src/network/stormshield/snmp/mode/health.pm index afaa76552..7fab84835 100644 --- a/src/network/stormshield/snmp/mode/health.pm +++ b/src/network/stormshield/snmp/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/memorydetailed.pm b/src/network/stormshield/snmp/mode/memorydetailed.pm index 6be1316f7..36fc7b46b 100644 --- a/src/network/stormshield/snmp/mode/memorydetailed.pm +++ b/src/network/stormshield/snmp/mode/memorydetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/qos.pm b/src/network/stormshield/snmp/mode/qos.pm index 38f848d38..f8776b1d0 100644 --- a/src/network/stormshield/snmp/mode/qos.pm +++ b/src/network/stormshield/snmp/mode/qos.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/mode/vpnstatus.pm b/src/network/stormshield/snmp/mode/vpnstatus.pm index aebc340ea..9ae9398a4 100644 --- a/src/network/stormshield/snmp/mode/vpnstatus.pm +++ b/src/network/stormshield/snmp/mode/vpnstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/stormshield/snmp/plugin.pm b/src/network/stormshield/snmp/plugin.pm index f9ae81e37..068b62a77 100644 --- a/src/network/stormshield/snmp/plugin.pm +++ b/src/network/stormshield/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/symbol/wing/snmp/mode/systems.pm b/src/network/symbol/wing/snmp/mode/systems.pm index 51ec08250..fbaee804d 100644 --- a/src/network/symbol/wing/snmp/mode/systems.pm +++ b/src/network/symbol/wing/snmp/mode/systems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/symbol/wing/snmp/plugin.pm b/src/network/symbol/wing/snmp/plugin.pm index 77859c82b..8b5afad40 100644 --- a/src/network/symbol/wing/snmp/plugin.pm +++ b/src/network/symbol/wing/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/teldat/snmp/mode/cellsradio.pm b/src/network/teldat/snmp/mode/cellsradio.pm index ee75879fd..f0175c832 100644 --- a/src/network/teldat/snmp/mode/cellsradio.pm +++ b/src/network/teldat/snmp/mode/cellsradio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/teldat/snmp/mode/cpu.pm b/src/network/teldat/snmp/mode/cpu.pm index 398926bab..10001cfbb 100644 --- a/src/network/teldat/snmp/mode/cpu.pm +++ b/src/network/teldat/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -102,7 +102,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/teldat/snmp/mode/interfaces.pm b/src/network/teldat/snmp/mode/interfaces.pm index 2de8d5dcc..5420de371 100644 --- a/src/network/teldat/snmp/mode/interfaces.pm +++ b/src/network/teldat/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -175,7 +175,7 @@ Regexp dst to transform display value. =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/teldat/snmp/mode/memory.pm b/src/network/teldat/snmp/mode/memory.pm index 16d3f8041..5d70b0fc1 100644 --- a/src/network/teldat/snmp/mode/memory.pm +++ b/src/network/teldat/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/teldat/snmp/mode/uptime.pm b/src/network/teldat/snmp/mode/uptime.pm index 027821995..2198ce5ea 100644 --- a/src/network/teldat/snmp/mode/uptime.pm +++ b/src/network/teldat/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/teldat/snmp/plugin.pm b/src/network/teldat/snmp/plugin.pm index eac4e3ecd..a12412bbf 100644 --- a/src/network/teldat/snmp/plugin.pm +++ b/src/network/teldat/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/teltonika/snmp/mode/interfaces.pm b/src/network/teltonika/snmp/mode/interfaces.pm index d571bb945..73dbd6a19 100644 --- a/src/network/teltonika/snmp/mode/interfaces.pm +++ b/src/network/teltonika/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/tplink/snmp/mode/cpu.pm b/src/network/tplink/snmp/mode/cpu.pm index e407b29fe..e2a2576e0 100644 --- a/src/network/tplink/snmp/mode/cpu.pm +++ b/src/network/tplink/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -167,7 +167,7 @@ __END__ =head1 MODE -Check cpu usage. +Check CPU usage. =over 8 diff --git a/src/network/tplink/snmp/mode/memory.pm b/src/network/tplink/snmp/mode/memory.pm index 4ac502848..ba99d574c 100644 --- a/src/network/tplink/snmp/mode/memory.pm +++ b/src/network/tplink/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/tplink/snmp/plugin.pm b/src/network/tplink/snmp/plugin.pm index cbb3b2b91..c962ae4ea 100644 --- a/src/network/tplink/snmp/plugin.pm +++ b/src/network/tplink/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/airfiber/snmp/mode/listradios.pm b/src/network/ubiquiti/airfiber/snmp/mode/listradios.pm index 97e21bbc3..25526253c 100644 --- a/src/network/ubiquiti/airfiber/snmp/mode/listradios.pm +++ b/src/network/ubiquiti/airfiber/snmp/mode/listradios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/airfiber/snmp/mode/radios.pm b/src/network/ubiquiti/airfiber/snmp/mode/radios.pm index bd027a8ec..bf64bab52 100644 --- a/src/network/ubiquiti/airfiber/snmp/mode/radios.pm +++ b/src/network/ubiquiti/airfiber/snmp/mode/radios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/airfiber/snmp/plugin.pm b/src/network/ubiquiti/airfiber/snmp/plugin.pm index f955b125f..90fe72e82 100644 --- a/src/network/ubiquiti/airfiber/snmp/plugin.pm +++ b/src/network/ubiquiti/airfiber/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/edge/snmp/plugin.pm b/src/network/ubiquiti/edge/snmp/plugin.pm index 3058c211c..6790d04f0 100644 --- a/src/network/ubiquiti/edge/snmp/plugin.pm +++ b/src/network/ubiquiti/edge/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/unifi/snmp/mode/listvirtualaccesspoints.pm b/src/network/ubiquiti/unifi/snmp/mode/listvirtualaccesspoints.pm index 4b646039c..51f941710 100644 --- a/src/network/ubiquiti/unifi/snmp/mode/listvirtualaccesspoints.pm +++ b/src/network/ubiquiti/unifi/snmp/mode/listvirtualaccesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/unifi/snmp/mode/virtualaccesspoints.pm b/src/network/ubiquiti/unifi/snmp/mode/virtualaccesspoints.pm index a013fc559..2c591d742 100644 --- a/src/network/ubiquiti/unifi/snmp/mode/virtualaccesspoints.pm +++ b/src/network/ubiquiti/unifi/snmp/mode/virtualaccesspoints.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ubiquiti/unifi/snmp/plugin.pm b/src/network/ubiquiti/unifi/snmp/plugin.pm index 3685b6020..7e739fbcc 100644 --- a/src/network/ubiquiti/unifi/snmp/plugin.pm +++ b/src/network/ubiquiti/unifi/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/ucopia/wlc/snmp/plugin.pm b/src/network/ucopia/wlc/snmp/plugin.pm index 2c7025c7c..551917397 100644 --- a/src/network/ucopia/wlc/snmp/plugin.pm +++ b/src/network/ucopia/wlc/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/vectra/restapi/custom/api.pm b/src/network/vectra/restapi/custom/api.pm index abcf090b0..a13c456ef 100644 --- a/src/network/vectra/restapi/custom/api.pm +++ b/src/network/vectra/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/vectra/restapi/mode/cpu.pm b/src/network/vectra/restapi/mode/cpu.pm index 138d486e4..d0bd02262 100644 --- a/src/network/vectra/restapi/mode/cpu.pm +++ b/src/network/vectra/restapi/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -68,7 +68,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/vectra/restapi/mode/disk.pm b/src/network/vectra/restapi/mode/disk.pm index ea75660d8..f0763a7f9 100644 --- a/src/network/vectra/restapi/mode/disk.pm +++ b/src/network/vectra/restapi/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/network/vectra/restapi/mode/interfaces.pm b/src/network/vectra/restapi/mode/interfaces.pm index 528af9a36..04eee0c9e 100644 --- a/src/network/vectra/restapi/mode/interfaces.pm +++ b/src/network/vectra/restapi/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/network/vectra/restapi/mode/listinterfaces.pm b/src/network/vectra/restapi/mode/listinterfaces.pm index 1c0589e76..45ba4896c 100644 --- a/src/network/vectra/restapi/mode/listinterfaces.pm +++ b/src/network/vectra/restapi/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/vectra/restapi/mode/listsensors.pm b/src/network/vectra/restapi/mode/listsensors.pm index 1f4e4c54b..48feaa8a4 100644 --- a/src/network/vectra/restapi/mode/listsensors.pm +++ b/src/network/vectra/restapi/mode/listsensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/vectra/restapi/mode/memory.pm b/src/network/vectra/restapi/mode/memory.pm index ddd962e3b..71a392746 100644 --- a/src/network/vectra/restapi/mode/memory.pm +++ b/src/network/vectra/restapi/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/network/vectra/restapi/mode/sensors.pm b/src/network/vectra/restapi/mode/sensors.pm index 5bfeedd6c..d860e9acc 100644 --- a/src/network/vectra/restapi/mode/sensors.pm +++ b/src/network/vectra/restapi/mode/sensors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/network/vectra/restapi/mode/uptime.pm b/src/network/vectra/restapi/mode/uptime.pm index 24a1a7e14..8f72507d6 100644 --- a/src/network/vectra/restapi/mode/uptime.pm +++ b/src/network/vectra/restapi/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/vectra/restapi/plugin.pm b/src/network/vectra/restapi/plugin.pm index ad18f8918..66885380b 100644 --- a/src/network/vectra/restapi/plugin.pm +++ b/src/network/vectra/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/custom/api.pm b/src/network/versa/director/restapi/custom/api.pm index dbd7d78bc..9d3e27a7a 100644 --- a/src/network/versa/director/restapi/custom/api.pm +++ b/src/network/versa/director/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/mode/cache.pm b/src/network/versa/director/restapi/mode/cache.pm index c411f4e16..9a2d409e7 100644 --- a/src/network/versa/director/restapi/mode/cache.pm +++ b/src/network/versa/director/restapi/mode/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/mode/devices.pm b/src/network/versa/director/restapi/mode/devices.pm index 7bb815287..8b8b273a1 100644 --- a/src/network/versa/director/restapi/mode/devices.pm +++ b/src/network/versa/director/restapi/mode/devices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/mode/discovery.pm b/src/network/versa/director/restapi/mode/discovery.pm index 8f5f94424..a834b205f 100644 --- a/src/network/versa/director/restapi/mode/discovery.pm +++ b/src/network/versa/director/restapi/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/mode/listdevices.pm b/src/network/versa/director/restapi/mode/listdevices.pm index d9be10d75..b3a474551 100644 --- a/src/network/versa/director/restapi/mode/listdevices.pm +++ b/src/network/versa/director/restapi/mode/listdevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/mode/listpaths.pm b/src/network/versa/director/restapi/mode/listpaths.pm index 882648ead..10bf44e5d 100644 --- a/src/network/versa/director/restapi/mode/listpaths.pm +++ b/src/network/versa/director/restapi/mode/listpaths.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/mode/paths.pm b/src/network/versa/director/restapi/mode/paths.pm index 90616e41e..efe9d904b 100644 --- a/src/network/versa/director/restapi/mode/paths.pm +++ b/src/network/versa/director/restapi/mode/paths.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/director/restapi/plugin.pm b/src/network/versa/director/restapi/plugin.pm index e6842f591..5d2427fbf 100644 --- a/src/network/versa/director/restapi/plugin.pm +++ b/src/network/versa/director/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/bgppeers.pm b/src/network/versa/snmp/mode/bgppeers.pm index 6468bb838..fab2d4722 100644 --- a/src/network/versa/snmp/mode/bgppeers.pm +++ b/src/network/versa/snmp/mode/bgppeers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/devices.pm b/src/network/versa/snmp/mode/devices.pm index 7c2467ace..e1505eb3d 100644 --- a/src/network/versa/snmp/mode/devices.pm +++ b/src/network/versa/snmp/mode/devices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/ipsec.pm b/src/network/versa/snmp/mode/ipsec.pm index 0e627db67..1d10a9e74 100644 --- a/src/network/versa/snmp/mode/ipsec.pm +++ b/src/network/versa/snmp/mode/ipsec.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/listipsec.pm b/src/network/versa/snmp/mode/listipsec.pm index d373b47ae..f5bbe3917 100644 --- a/src/network/versa/snmp/mode/listipsec.pm +++ b/src/network/versa/snmp/mode/listipsec.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/listsdwan.pm b/src/network/versa/snmp/mode/listsdwan.pm index 34fa7d92e..31b44b77b 100644 --- a/src/network/versa/snmp/mode/listsdwan.pm +++ b/src/network/versa/snmp/mode/listsdwan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/qospolicy.pm b/src/network/versa/snmp/mode/qospolicy.pm index 86acbacbb..f41fc8061 100644 --- a/src/network/versa/snmp/mode/qospolicy.pm +++ b/src/network/versa/snmp/mode/qospolicy.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/mode/sdwan.pm b/src/network/versa/snmp/mode/sdwan.pm index 13af097ae..58b6108be 100644 --- a/src/network/versa/snmp/mode/sdwan.pm +++ b/src/network/versa/snmp/mode/sdwan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/versa/snmp/plugin.pm b/src/network/versa/snmp/plugin.pm index de38fc7f1..6b956104e 100644 --- a/src/network/versa/snmp/plugin.pm +++ b/src/network/versa/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/fan.pm b/src/network/viptela/snmp/mode/components/fan.pm index 40fb3f332..d49dedd56 100644 --- a/src/network/viptela/snmp/mode/components/fan.pm +++ b/src/network/viptela/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-ffanged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/led.pm b/src/network/viptela/snmp/mode/components/led.pm index 4722e4ae2..c94e414d1 100644 --- a/src/network/viptela/snmp/mode/components/led.pm +++ b/src/network/viptela/snmp/mode/components/led.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/nim.pm b/src/network/viptela/snmp/mode/components/nim.pm index a15939132..59b7560cb 100644 --- a/src/network/viptela/snmp/mode/components/nim.pm +++ b/src/network/viptela/snmp/mode/components/nim.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fnimged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/pem.pm b/src/network/viptela/snmp/mode/components/pem.pm index 8f04d901c..b35e25b32 100644 --- a/src/network/viptela/snmp/mode/components/pem.pm +++ b/src/network/viptela/snmp/mode/components/pem.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fpemged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/pim.pm b/src/network/viptela/snmp/mode/components/pim.pm index 884030230..6e564723b 100644 --- a/src/network/viptela/snmp/mode/components/pim.pm +++ b/src/network/viptela/snmp/mode/components/pim.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fpimged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/temperature.pm b/src/network/viptela/snmp/mode/components/temperature.pm index f83099792..5d16a28a4 100644 --- a/src/network/viptela/snmp/mode/components/temperature.pm +++ b/src/network/viptela/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/components/usb.pm b/src/network/viptela/snmp/mode/components/usb.pm index 78ec9ca66..771b2656d 100644 --- a/src/network/viptela/snmp/mode/components/usb.pm +++ b/src/network/viptela/snmp/mode/components/usb.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fusbged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/controlconnections.pm b/src/network/viptela/snmp/mode/controlconnections.pm index 78966dcae..fd899ae5e 100644 --- a/src/network/viptela/snmp/mode/controlconnections.pm +++ b/src/network/viptela/snmp/mode/controlconnections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/cpu.pm b/src/network/viptela/snmp/mode/cpu.pm index a36f999bd..08cbc0c02 100644 --- a/src/network/viptela/snmp/mode/cpu.pm +++ b/src/network/viptela/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -72,7 +72,7 @@ __END__ =head1 MODE -Check cpu. +Check CPU usage. =over 8 diff --git a/src/network/viptela/snmp/mode/disk.pm b/src/network/viptela/snmp/mode/disk.pm index 02c8ab941..40ad5ef8d 100644 --- a/src/network/viptela/snmp/mode/disk.pm +++ b/src/network/viptela/snmp/mode/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/gretunnels.pm b/src/network/viptela/snmp/mode/gretunnels.pm index 4d3440d39..653cdd418 100644 --- a/src/network/viptela/snmp/mode/gretunnels.pm +++ b/src/network/viptela/snmp/mode/gretunnels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/hardware.pm b/src/network/viptela/snmp/mode/hardware.pm index d4f8c80c1..d388f63b7 100644 --- a/src/network/viptela/snmp/mode/hardware.pm +++ b/src/network/viptela/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/interfaces.pm b/src/network/viptela/snmp/mode/interfaces.pm index 2e5c739e1..e47f635f9 100644 --- a/src/network/viptela/snmp/mode/interfaces.pm +++ b/src/network/viptela/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -173,7 +173,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/network/viptela/snmp/mode/listgretunnels.pm b/src/network/viptela/snmp/mode/listgretunnels.pm index a91dfe55d..14546492d 100644 --- a/src/network/viptela/snmp/mode/listgretunnels.pm +++ b/src/network/viptela/snmp/mode/listgretunnels.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/mode/memory.pm b/src/network/viptela/snmp/mode/memory.pm index e2bba1433..a8eed12e3 100644 --- a/src/network/viptela/snmp/mode/memory.pm +++ b/src/network/viptela/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and alarm monitoring for diff --git a/src/network/viptela/snmp/mode/uptime.pm b/src/network/viptela/snmp/mode/uptime.pm index 1591acca3..1a7733e71 100644 --- a/src/network/viptela/snmp/mode/uptime.pm +++ b/src/network/viptela/snmp/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/viptela/snmp/plugin.pm b/src/network/viptela/snmp/plugin.pm index 0a2d40d97..3edc21512 100644 --- a/src/network/viptela/snmp/plugin.pm +++ b/src/network/viptela/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/watchguard/snmp/mode/cluster.pm b/src/network/watchguard/snmp/mode/cluster.pm index 30354e5dc..13991a863 100644 --- a/src/network/watchguard/snmp/mode/cluster.pm +++ b/src/network/watchguard/snmp/mode/cluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/watchguard/snmp/mode/cpu.pm b/src/network/watchguard/snmp/mode/cpu.pm index 9dbc77e6f..498941d07 100644 --- a/src/network/watchguard/snmp/mode/cpu.pm +++ b/src/network/watchguard/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/watchguard/snmp/mode/ipsectunnel.pm b/src/network/watchguard/snmp/mode/ipsectunnel.pm index 54468523a..2ff480e6c 100644 --- a/src/network/watchguard/snmp/mode/ipsectunnel.pm +++ b/src/network/watchguard/snmp/mode/ipsectunnel.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/watchguard/snmp/mode/policyusage.pm b/src/network/watchguard/snmp/mode/policyusage.pm index 1d6b6253e..a6a812e8a 100644 --- a/src/network/watchguard/snmp/mode/policyusage.pm +++ b/src/network/watchguard/snmp/mode/policyusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/watchguard/snmp/mode/system.pm b/src/network/watchguard/snmp/mode/system.pm index fe0ee3554..e88a16597 100644 --- a/src/network/watchguard/snmp/mode/system.pm +++ b/src/network/watchguard/snmp/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/watchguard/snmp/plugin.pm b/src/network/watchguard/snmp/plugin.pm index 976964714..c6974aa4a 100644 --- a/src/network/watchguard/snmp/plugin.pm +++ b/src/network/watchguard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/zyxel/snmp/mode/cpu.pm b/src/network/zyxel/snmp/mode/cpu.pm index f4c77f387..4166a7548 100644 --- a/src/network/zyxel/snmp/mode/cpu.pm +++ b/src/network/zyxel/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/zyxel/snmp/mode/listvpn.pm b/src/network/zyxel/snmp/mode/listvpn.pm index c59e5d329..78cba1291 100644 --- a/src/network/zyxel/snmp/mode/listvpn.pm +++ b/src/network/zyxel/snmp/mode/listvpn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/zyxel/snmp/mode/memory.pm b/src/network/zyxel/snmp/mode/memory.pm index 32e16b3e7..8b9723da0 100644 --- a/src/network/zyxel/snmp/mode/memory.pm +++ b/src/network/zyxel/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/zyxel/snmp/mode/sessions.pm b/src/network/zyxel/snmp/mode/sessions.pm index 3d188012b..6c881c560 100644 --- a/src/network/zyxel/snmp/mode/sessions.pm +++ b/src/network/zyxel/snmp/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/zyxel/snmp/mode/vpnstatus.pm b/src/network/zyxel/snmp/mode/vpnstatus.pm index 53d27ef46..b7d6ae4f3 100644 --- a/src/network/zyxel/snmp/mode/vpnstatus.pm +++ b/src/network/zyxel/snmp/mode/vpnstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/network/zyxel/snmp/plugin.pm b/src/network/zyxel/snmp/plugin.pm index 6fd2609f0..929bfd7ec 100644 --- a/src/network/zyxel/snmp/plugin.pm +++ b/src/network/zyxel/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/centreon/opentickets/api/custom/api.pm b/src/notification/centreon/opentickets/api/custom/api.pm index c0a1fe763..e59e5bcfe 100644 --- a/src/notification/centreon/opentickets/api/custom/api.pm +++ b/src/notification/centreon/opentickets/api/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/centreon/opentickets/api/mode/closehost.pm b/src/notification/centreon/opentickets/api/mode/closehost.pm index 5abf0eafe..fbc625636 100644 --- a/src/notification/centreon/opentickets/api/mode/closehost.pm +++ b/src/notification/centreon/opentickets/api/mode/closehost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/centreon/opentickets/api/mode/closeservice.pm b/src/notification/centreon/opentickets/api/mode/closeservice.pm index 26bfb8860..3db945e2e 100644 --- a/src/notification/centreon/opentickets/api/mode/closeservice.pm +++ b/src/notification/centreon/opentickets/api/mode/closeservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/centreon/opentickets/api/mode/openhost.pm b/src/notification/centreon/opentickets/api/mode/openhost.pm index 8adb63816..6c0f410e6 100644 --- a/src/notification/centreon/opentickets/api/mode/openhost.pm +++ b/src/notification/centreon/opentickets/api/mode/openhost.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/centreon/opentickets/api/mode/openservice.pm b/src/notification/centreon/opentickets/api/mode/openservice.pm index ba425ae52..ff66f777a 100644 --- a/src/notification/centreon/opentickets/api/mode/openservice.pm +++ b/src/notification/centreon/opentickets/api/mode/openservice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/centreon/opentickets/api/plugin.pm b/src/notification/centreon/opentickets/api/plugin.pm index ea3f3962b..7ad34e6c9 100644 --- a/src/notification/centreon/opentickets/api/plugin.pm +++ b/src/notification/centreon/opentickets/api/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/email/mode/alert.pm b/src/notification/email/mode/alert.pm index b3b5226fc..374104814 100644 --- a/src/notification/email/mode/alert.pm +++ b/src/notification/email/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -30,9 +30,12 @@ use Email::Sender::Simple qw(sendmail); use Email::Sender::Transport::SMTP; use JSON::XS; use URI::Escape; +use HTML::Template; use centreon::plugins::http; +use notification::email::templates::resources; -my %color_host = ( + +my %color = ( up => { background => '#88B922', text => '#FFFFFF' @@ -41,6 +44,22 @@ my %color_host = ( background => '#FF4A4A', text => '#FFFFFF' }, + ok => { + background => '#88B922', + text => '#FFFFFF' + }, + warning => { + background => '#FD9B27', + text => '#FFFFFF' + }, + critical => { + background => '#FF4A4A', + text => '#FFFFFF' + }, + unknown => { + background => '#E0E0E0', + text => '#FFFFFF' + }, unreachable => { background => '#E0E0E0', text => '#666666' @@ -63,41 +82,6 @@ my %color_host = ( } ); -my %color_service = ( - ok => { - background => '#88B922', - text => '#FFFFFF' - }, - warning => { - background => '#FD9B27', - text => '#FFFFFF' - }, - critical => { - background => '#FF4A4A', - text => '#FFFFFF' - }, - unknown => { - background => '#E0E0E0', - text => '#FFFFFF' - }, - acknowledgement => { - background => '#F5F1E9', - text => '#666666' - }, - downtimestart => { - background => '#F0E9F8', - text => '#666666' - }, - downtimeend => { - background => '#F0E9F8', - text => '#666666' - }, - downtimecanceled => { - background => '#F0E9F8', - text => '#666666' - } -); - sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); @@ -123,6 +107,7 @@ sub new { 'host-duration:s' => { name => 'host_duration' }, 'service-id:s' => { name => 'service_id' }, 'service-description:s' => { name => 'service_description' }, + 'service-displayname:s' => { name => 'service_displayname' }, 'service-state:s' => { name => 'service_state' }, 'service-output:s' => { name => 'service_output' }, 'service-longoutput:s' => { name => 'service_longoutput' }, @@ -178,50 +163,53 @@ sub host_message { my $host_id = $self->{option_results}->{host_id}; + my $event_type = ''; + my $author = ''; + my $author_alt = ''; + my $comment = ''; + my $comment_alt = ''; + my $include_author = 0; + my $include_comment = 0; + + if (defined($self->{option_results}->{notif_author}) && $self->{option_results}->{notif_author} ne '') { + $author = $self->{option_results}->{notif_author}; + $include_author = 1; + if ($self->{option_results}->{type} =~ /^downtime.*$/i) { + $event_type = 'Scheduled Downtime'; + $author_alt = 'Scheduled Downtime by: ' . $self->{option_results}->{notif_author}; + } elsif($self->{option_results}->{type} =~ /^acknowledgement$/i) { + $event_type = 'Acknowledged'; + $author_alt = 'Acknowledged by: ' . $self->{option_results}->{notif_author}; + } elsif($self->{option_results}->{type} =~ /^flaping.*$/i) { + $event_type = 'Flapping'; + $author_alt = 'Flapping by: ' . $self->{option_results}->{notif_author}; + } + } + + if (defined($self->{option_results}->{notif_comment}) && $self->{option_results}->{notif_comment} ne '') { + $comment = $self->{option_results}->{notif_comment}; + $include_comment = 1; + if ($self->{option_results}->{type} =~ /^downtime.*$/i) { + $event_type = 'Scheduled Downtime'; + $comment_alt = 'Scheduled Downtime Comment: ' . $self->{option_results}->{notif_comment}; + } elsif($self->{option_results}->{type} =~ /^acknowledgement$/i) { + $event_type = 'Acknowledged'; + $comment_alt = 'Acknowledged Comment: ' . $self->{option_results}->{notif_comment}; + } elsif($self->{option_results}->{type} =~ /^flaping.*$/i) { + $event_type = 'Flapping'; + $comment_alt = 'Flapping Comment: ' . $self->{option_results}->{notif_comment}; + } + } + my $details = { id => $host_id, resourcesDetailsEndpoint => "/centreon/api/latest/monitoring/resources/hosts/$host_id", tab => "details" }; - my $author_html = ''; - my $author_alt = ''; - my $comment_html = ''; - my $comment_alt = ''; - if (defined($self->{option_results}->{notif_author}) && $self->{option_results}->{notif_author} ne '') { - if ($self->{option_results}->{type} =~ /^downtime.*$/i) { - $author_html = '

Scheduled Downtime by:

-

' . $self->{option_results}->{notif_author} . '

'; - $author_alt = 'Scheduled Downtime by: ' . $self->{option_results}->{notif_author}; - } elsif ($self->{option_results}->{type} =~ /^acknowledgement$/i) { - $author_html = '

Acknowledged Author:

-

' . $self->{option_results}->{notif_author} . '

'; - $author_alt = 'Acknowledged Author: ' . $self->{option_results}->{notif_author}; - } elsif ($self->{option_results}->{type} =~ /^flaping.*$/i) { - $author_html = '

Flapping Author:

-

' . $self->{option_results}->{notif_author} . '

'; - $author_alt = 'Flapping Author: ' . $self->{option_results}->{notif_author}; - } - } - - if (defined($self->{option_results}->{notif_comment}) && $self->{option_results}->{notif_comment} ne '') { - if ($self->{option_results}->{type} =~ /^downtime.*$/i){ - $comment_html = '

Scheduled Downtime Comment:

-

' . $self->{option_results}->{notif_comment} . '

'; - $comment_alt = 'Scheduled Downtime Comment: ' . $self->{option_results}->{notif_comment}; - } elsif ($self->{option_results}->{type} =~ /^acknowledgement$/i) { - $comment_html = '

Acknowledged Comment:

-

' . $self->{option_results}->{notif_comment} . '

'; - $comment_alt = 'Acknowledged Comment: ' . $self->{option_results}->{notif_comment}; - } elsif ($self->{option_results}->{type} =~ /^flaping.*$/i) { - $comment_html = '

Flapping Comment:

-

' . $self->{option_results}->{notif_comment} . '

'; - $comment_alt = 'Flapping Comment: ' . $self->{option_results}->{notif_comment}; - } - } - my $json_data = encode_json($details); my $encoded_data = uri_escape($json_data); + my $dynamic_href = $self->{option_results}->{centreon_url} .'/centreon/monitoring/resources?details=' . $encoded_data; $self->{payload_attachment}->{subject} = '*** ' . $self->{option_results}->{type} . ' : Host: ' . $self->{option_results}->{host_name} . ' ' . $self->{option_results}->{host_state} . ' ***'; $self->{payload_attachment}->{alt_message} = ' @@ -245,284 +233,51 @@ sub host_message { Info: ' .$self->{option_results}->{host_output}; - $self->{payload_attachment}->{html_message} = ' - - - - - ' . $self->{option_results}->{host_name} . ' - - - - - - - - - - - - -
- -
- [' .$self->{option_results}->{type} . '] Host: ' . $self->{option_results}->{host_alias} . ' (' . $self->{option_results}->{host_name} . ') is ' . $self->{option_results}->{host_state} . '. *************************************************************************************************************************************** -
- - -
- - - '; } sub service_message { @@ -531,38 +286,40 @@ sub service_message { my $host_id = $self->{option_results}->{host_id}; my $service_id = $self->{option_results}->{service_id}; - my $author_html = ''; + my $event_type = ''; + my $author = ''; my $author_alt = ''; - my $comment_html = ''; + my $comment = ''; my $comment_alt = ''; + my $include_author = 0; + my $include_comment = 0; + if (defined($self->{option_results}->{notif_author}) && $self->{option_results}->{notif_author} ne '') { + $author = $self->{option_results}->{notif_author}; + $include_author = 1; if ($self->{option_results}->{type} =~ /^downtime.*$/i) { - $author_html = '

Scheduled Downtime by:

-

' . $self->{option_results}->{notif_author} . '

'; + $event_type = 'Scheduled Downtime'; $author_alt = 'Scheduled Downtime by: ' . $self->{option_results}->{notif_author}; } elsif($self->{option_results}->{type} =~ /^acknowledgement$/i) { - $author_html = '

Acknowledged Author:

-

' . $self->{option_results}->{notif_author} . '

'; - $author_alt = 'Acknowledged Author: ' . $self->{option_results}->{notif_author}; + $event_type = 'Acknowledged'; + $author_alt = 'Acknowledged by: ' . $self->{option_results}->{notif_author}; } elsif($self->{option_results}->{type} =~ /^flaping.*$/i) { - $author_html = '

Flapping Author:

-

' . $self->{option_results}->{notif_author} . '

'; - $author_alt = 'Flapping Author: ' . $self->{option_results}->{notif_author}; + $event_type = 'Flapping'; + $author_alt = 'Flapping by: ' . $self->{option_results}->{notif_author}; } } - + if (defined($self->{option_results}->{notif_comment}) && $self->{option_results}->{notif_comment} ne '') { + $comment = $self->{option_results}->{notif_comment}; + $include_comment = 1; if ($self->{option_results}->{type} =~ /^downtime.*$/i) { - $comment_html = '

Scheduled Downtime Comment:

-

' . $self->{option_results}->{notif_comment} . '

'; + $event_type = 'Scheduled Downtime'; $comment_alt = 'Scheduled Downtime Comment: ' . $self->{option_results}->{notif_comment}; } elsif($self->{option_results}->{type} =~ /^acknowledgement$/i) { - $comment_html = '

Acknowledged Comment:

-

' . $self->{option_results}->{notif_comment} . '

'; + $event_type = 'Acknowledged'; $comment_alt = 'Acknowledged Comment: ' . $self->{option_results}->{notif_comment}; } elsif($self->{option_results}->{type} =~ /^flaping.*$/i) { - $comment_html = '

Flapping Comment:

-

' . $self->{option_results}->{notif_comment} . '

'; + $event_type = 'Flapping'; $comment_alt = 'Flapping Comment: ' . $self->{option_results}->{notif_comment}; } } @@ -578,14 +335,14 @@ sub service_message { warning_status => '', critical_status => '' ); - + if ($self->{http}->get_code() !~ /200/ || $content =~ /^OK/) { - $graph_html = '

No graph

'; + $graph_html = '

No graph found

'; } elsif ($content =~ /Access denied|Resource not found|Invalid token/) { - $graph_html = '

Cannot retrieve graph: ' . $content . '

'; + $graph_html = '

Cannot retrieve graph: ' . $content . '

'; } else { $self->{payload_attachment}->{graph_png} = $content; - $graph_html = '\n"; + $graph_html = '\"Service\n"; } } @@ -595,13 +352,12 @@ sub service_message { tab => 'details' }; + my $line_break = '
'; my $json_data = encode_json($details); my $encoded_data = uri_escape($json_data); + my $dynamic_href = $self->{option_results}->{centreon_url} .'/centreon/monitoring/resources?details=' . $encoded_data; - my $line_break = '
'; - - $self->{option_results}->{service_longoutput} =~ s/\\n/
/g; - + $self->{payload_attachment}->{subject} = '*** ' . $self->{option_results}->{type} . ' : ' . $self->{option_results}->{service_description} . ' '. $self->{option_results}->{service_state} . ' on ' . $self->{option_results}->{host_name} . ' ***'; $self->{payload_attachment}->{alt_message} = ' ***** Centreon ***** @@ -626,309 +382,315 @@ sub service_message { ' . $self->{option_results}->{service_output} . ' ' . $self->{option_results}->{service_longoutput}; - $self->{payload_attachment}->{html_message} = ' - - - - - ' . $self->{option_results}->{host_name} . ' / ' . $self->{option_results}->{service_description} .' - - - - + $self->{option_results}->{service_longoutput} =~ s/\\n/
/g; + my $output = $self->{option_results}->{service_output} . $line_break . $self->{option_results}->{service_longoutput}; - - - - - - - -
- -
[' . $self->{option_results}->{type} . '] Service: ' . $self->{option_results}->{service_description} . ' on Host: ' . $self->{option_results}->{host_name} . ' (' . $self->{option_results}->{host_alias} . ') is '. $self->{option_results}->{service_state} . '. *************************************************************************************************************************************** -
- + + my $dynamic_css = HTML::Template->new( + scalarref => \$notification::email::templates::resources::get_css + ); + $dynamic_css->param( + backgroundColor => $background_color, + textColor => $text_color, + stateColor => $color{lc($self->{option_results}->{service_state})}->{background} + ); + + + my $html_part = HTML::Template->new( + scalarref => \$notification::email::templates::resources::get_bam_template); + $html_part->param( + dynamicCss => $dynamic_css->output, + type => $self->{option_results}->{type}, + serviceDescription => $self->{option_results}->{service_displayname}, + status => $self->{option_results}->{service_state}, + duration => $self->{option_results}->{service_duration}, + date => $self->{option_results}->{date}, + dynamicHref => $dynamic_href, + eventType => $event_type, + author => $author, + comment => $comment, + output => $self->{option_results}->{service_output}, + includeAuthor => $include_author, + includeComment => $include_comment + ); + + $self->{payload_attachment}->{html_message} = $html_part->output + +} + +sub metaservice_message { + my ($self, %options) = @_; + + my $host_id = $self->{option_results}->{host_id}; + my $service_id = $self->{option_results}->{service_id}; + + my $event_type = ''; + my $author = ''; + my $author_alt = ''; + my $comment = ''; + my $comment_alt = ''; + my $include_author = 0; + my $include_comment = 0; + + if (defined($self->{option_results}->{notif_author}) && $self->{option_results}->{notif_author} ne '') { + $author = $self->{option_results}->{notif_author}; + $include_author = 1; + if ($self->{option_results}->{type} =~ /^downtime.*$/i) { + $event_type = 'Scheduled Downtime'; + $author_alt = 'Scheduled Downtime by: ' . $self->{option_results}->{notif_author}; + } elsif($self->{option_results}->{type} =~ /^acknowledgement$/i) { + $event_type = 'Acknowledged'; + $author_alt = 'Acknowledged by: ' . $self->{option_results}->{notif_author}; + } elsif($self->{option_results}->{type} =~ /^flaping.*$/i) { + $event_type = 'Flapping'; + $author_alt = 'Flapping by: ' . $self->{option_results}->{notif_author}; + } + } + + if (defined($self->{option_results}->{notif_comment}) && $self->{option_results}->{notif_comment} ne '') { + $comment = $self->{option_results}->{notif_comment}; + $include_comment = 1; + if ($self->{option_results}->{type} =~ /^downtime.*$/i) { + $event_type = 'Scheduled Downtime'; + $comment_alt = 'Scheduled Downtime Comment: ' . $self->{option_results}->{notif_comment}; + } elsif($self->{option_results}->{type} =~ /^acknowledgement$/i) { + $event_type = 'Acknowledged'; + $comment_alt = 'Acknowledged Comment: ' . $self->{option_results}->{notif_comment}; + } elsif($self->{option_results}->{type} =~ /^flaping.*$/i) { + $event_type = 'Flapping'; + $comment_alt = 'Flapping Comment: ' . $self->{option_results}->{notif_comment}; + } + } + + my $graph_html; + if ($self->{option_results}->{centreon_user} && $self->{option_results}->{centreon_user} ne '' + && $self->{option_results}->{centreon_token} && $self->{option_results}->{centreon_token} ne '') { + my $content = $self->{http}->request( + hostname => '', + full_url => $self->{option_results}->{centreon_url} . '/centreon/include/views/graphs/generateGraphs/generateImage.php?akey=' . $self->{option_results}->{centreon_token} . '&username=' . $self->{option_results}->{centreon_user} . '&chartId=' . $host_id . '_'. $service_id, + timeout => $self->{option_results}->{timeout}, + unknown_status => '', + warning_status => '', + critical_status => '' + ); + + if ($self->{http}->get_code() !~ /200/ || $content =~ /^OK/) { + $graph_html = '

No graph found

'; + } elsif ($content =~ /Access denied|Resource not found|Invalid token/) { + $graph_html = '

Cannot retrieve graph: ' . $content . '

'; + } else { + $self->{payload_attachment}->{graph_png} = $content; + $graph_html = '\"Service\n"; + } + } + + my $details = { + id => $service_id, + resourcesDetailsEndpoint => "/centreon/api/latest/monitoring/resources/hosts/$host_id/services/$service_id", + tab => 'details' + }; + + my $line_break = '
'; + my $json_data = encode_json($details); + my $encoded_data = uri_escape($json_data); + my $dynamic_href = $self->{option_results}->{centreon_url} .'/centreon/monitoring/resources?details=' . $encoded_data; + + $self->{payload_attachment}->{subject} = '*** ' . $self->{option_results}->{type} . ' Meta Service: ' . $self->{option_results}->{service_displayname} . ' ' . $self->{option_results}->{service_state} . ' ***'; + $self->{payload_attachment}->{alt_message} = ' + ***** Centreon ***** + + Notification Type: ' . $self->{option_results}->{type} . ' + Meta Service: ' . $self->{option_results}->{service_displayname} . ' + State: ' . $self->{option_results}->{service_state} . ' + Date/Time: ' . $self->{option_results}->{date}; + + if(defined($author_alt) && $author_alt ne ''){ + $self->{payload_attachment}->{alt_message} .= "\n " . $author_alt . "\n"; + } + if(defined($comment_alt) && $comment_alt ne ''){ + $self->{payload_attachment}->{alt_message} .= " " . $comment_alt . "\n"; + } + $self->{payload_attachment}->{alt_message} .= ' + + Info: + ' .$self->{option_results}->{service_output}; + + my $background_color= 'white'; + my $text_color = 'black'; + if($self->{option_results}->{type} =~ /^problem|recovery$/i) { + $background_color = $color{lc($self->{option_results}->{service_state})}->{background}; + $text_color = $color{lc($self->{option_results}->{service_state})}->{text}; + } else { + $background_color = $color{lc($self->{option_results}->{type})}->{background} ; + $text_color = $color{lc($self->{option_results}->{type})}->{text}; + } + + my $dynamic_css = HTML::Template->new( + scalarref => \$notification::email::templates::resources::get_css + ); + $dynamic_css->param( + backgroundColor => $background_color, + textColor => $text_color, + stateColor => $color{lc($self->{option_results}->{service_state})}->{background} + ); + + + my $html_part = HTML::Template->new( + scalarref => \$notification::email::templates::resources::get_metaservice_template); + $html_part->param( + dynamicCss => $dynamic_css->output, + type => $self->{option_results}->{type}, + attempts => $self->{option_results}->{service_attempts}, + maxAttempts => $self->{option_results}->{max_service_attempts}, + serviceDescription => $self->{option_results}->{service_displayname}, + status => $self->{option_results}->{service_state}, + duration => $self->{option_results}->{service_duration}, + date => $self->{option_results}->{date}, + dynamicHref => $dynamic_href, + eventType => $event_type, + author => $author, + comment => $comment, + output => $self->{option_results}->{service_output}, + graphHtml => $graph_html, + includeAuthor => $include_author, + includeComment => $include_comment + ); + + $self->{payload_attachment}->{html_message} = $html_part->output -
- - - '; } sub set_payload { my ($self, %options) = @_; - if (defined($self->{option_results}->{service_description}) && $self->{option_results}->{service_description} ne '') { + if ($self->{option_results}->{host_name} =~ /^_Module_BAM.*/) { + $self->bam_message(); + } elsif ($self->{option_results}->{host_name} =~ /^_Module_Meta/ ) { + $self->metaservice_message(); + } elsif ( defined($self->{option_results}->{service_description}) && $self->{option_results}->{service_description} ne '' ) { $self->service_message(); } else { $self->host_message(); @@ -1041,7 +803,7 @@ centreon_plugins.pl --plugin=notification::email::plugin --mode=alert --to-addre Example for Centreon configuration: -centreon_plugins.pl --plugin=notification::email::plugin --mode=alert --to-address='$CONTACTEMAIL$' --host-address='$HOSTADDRESS$' --host-name='$HOSTNAME$' --host-alias='$HOSTALIAS$' --host-state='$HOSTSTATE$' --host-output='$HOSTOUTPUT$' --host-attempts='$HOSTATTEMPT$' --max-host-attempts='$MAXHOSTATTEMPTS$' --host-duration='$HOSTDURATION$' --date='$SHORTDATETIME$' --type='$NOTIFICATIONTYPE$' --service-description='$SERVICEDESC$' --service-state='$SERVICESTATE$' --service-output='$SERVICEOUTPUT$' --service-longoutput='$LONGSERVICEOUTPUT$' --service-attempts=''$SERVICEATTEMPT$ --max-service-attempts='$MAXSERVICEATTEMPTS$' --service-duration='$SERVICEDURATION$' --host-id='$HOSTID$' --service-id='$SERVICEID$' --notif-author='$NOTIFICATIONAUTHOR$' --notif-comment='$NOTIFICATIONCOMMENT$' --smtp-nossl --centreon-url='https://your-centreon-server' --smtp-address=your-smtp-server --smtp-port=your-smtp-port --from-address='centreon-engine@centreon.com' --centreon-user='your-centreon-username' --centreon-token='your-centreon-autologin-key' --smtp-user='your-smtp-username' --smtp-password='your-smtp-password' +centreon_plugins.pl --plugin=notification::email::plugin --mode=alert --to-address='$CONTACTEMAIL$' --host-address='$HOSTADDRESS$' --host-name='$HOSTNAME$' --host-alias='$HOSTALIAS$' --host-state='$HOSTSTATE$' --host-output='$HOSTOUTPUT$' --host-attempts='$HOSTATTEMPT$' --max-host-attempts='$MAXHOSTATTEMPTS$' --host-duration='$HOSTDURATION$' --date='$SHORTDATETIME$' --type='$NOTIFICATIONTYPE$' --service-description='$SERVICEDESC$' --service-displayname='$SERVICEDISPLAYNAME$' --service-state='$SERVICESTATE$' --service-output='$SERVICEOUTPUT$' --service-longoutput='$LONGSERVICEOUTPUT$' --service-attempts='$SERVICEATTEMPT$' --max-service-attempts='$MAXSERVICEATTEMPTS$' --service-duration='$SERVICEDURATION$' --host-id='$HOSTID$' --service-id='$SERVICEID$' --notif-author='$NOTIFICATIONAUTHOR$' --notif-comment='$NOTIFICATIONCOMMENT$' --smtp-nossl --centreon-url='https://your-centreon-server' --smtp-address=your-smtp-server --smtp-port=your-smtp-port --from-address='centreon-engine@centreon.com' --centreon-user='your-centreon-username' --centreon-token='your-centreon-autologin-key' --smtp-user='your-smtp-username' --smtp-password='your-smtp-password' =over 8 @@ -1121,6 +883,10 @@ ID of the service. Description of the service. +=item B<--service-displayname> + +Display BA name. + =item B<--service-state> State of the service. diff --git a/src/notification/email/plugin.pm b/src/notification/email/plugin.pm index 88937b121..08f3be957 100644 --- a/src/notification/email/plugin.pm +++ b/src/notification/email/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/email/templates/bam.pm b/src/notification/email/templates/bam.pm new file mode 100644 index 000000000..cb3ad2205 --- /dev/null +++ b/src/notification/email/templates/bam.pm @@ -0,0 +1,359 @@ +package notification::email::templates::bam; + +use strict; +use warnings; + +use Exporter qw(import); + +our @EXPORT_OK = qw(get_bam_template); + +sub get_bam_template { +return q{ + + + + + + + + + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ +
+
+
+
+ + + + + + +
+ + + + +
+
+
+
+
+
+
+ + + + + + +
+ +
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Business Activity:

+

+ + is + + + + for: + + + +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ + + + +
+
+

Date:

+

+ +

+
+
+
+
+
+ + + + + + +
+ +
+
+
+
+ + + + + + +
+ + + + +
+ + + + +
+ More Information
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ by: +

+

+ +

+
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ Comment: +

+

+ +

+
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Status information:

+

+ +

+
+
+
+
+
+
+
+
+
+ + + +}; +} + +1; \ No newline at end of file diff --git a/src/notification/email/templates/host.pm b/src/notification/email/templates/host.pm new file mode 100644 index 000000000..fc8b3fba9 --- /dev/null +++ b/src/notification/email/templates/host.pm @@ -0,0 +1,415 @@ +package notification::email::templates::host; + +use strict; +use warnings; + +use Exporter qw(import); + +our @EXPORT_OK = qw(get_host_template); + +sub get_host_template { +return q{ + + + + + + + + + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ +
+
+
+
+ + + + + + +
+ + + + +
+
+
+
+
+
+
+ + + + + + +
+ + + + +
+
+ / +
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Host:

+

+ + is + + + + for: + + + +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Host Alias:

+

+ +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ + + + +
+
+

Host Address:

+

+ +

+
+
+
+
+
+ + + + + + +
+ + + + +
+
+

Date:

+

+ +

+
+
+
+
+
+ + + + + + +
+ + + + +
+ + + + +
+ More Information
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ by: +

+

+ +

+
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ Comment: +

+

+ +

+
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Status information:

+

+ +

+
+
+
+
+
+
+
+
+
+ + + +}; +} + +1; \ No newline at end of file diff --git a/src/notification/email/templates/metaservice.pm b/src/notification/email/templates/metaservice.pm new file mode 100644 index 000000000..1c3af6efe --- /dev/null +++ b/src/notification/email/templates/metaservice.pm @@ -0,0 +1,408 @@ +package notification::email::templates::metaservice; + +use strict; +use warnings; + +use Exporter qw(import); + +our @EXPORT_OK = qw(get_metaservice_template); + +sub get_metaservice_template { +return q{ + + + + + + + + + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ +
+
+
+
+ + + + + + +
+ + + + +
+
+
+
+
+
+
+ + + + + + +
+ + + + +
+
+ / +
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Meta Service:

+

+ + is + + + + for: + + + +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ + + + +
+
+

Date:

+

+ +

+
+
+
+
+
+ + + + + + +
+ +
+
+
+
+ + + + + + +
+ + + + +
+ + + + +
+ More Information
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ by: +

+

+ +

+
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ Comment: +

+

+ +

+
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Status information:

+

+ +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+ + + + + + +
+ +
+
+
+
+
+
+
+
+
+ + + +}; +} + +1; \ No newline at end of file diff --git a/src/notification/email/templates/resources.pm b/src/notification/email/templates/resources.pm new file mode 100644 index 000000000..f763eb5bb --- /dev/null +++ b/src/notification/email/templates/resources.pm @@ -0,0 +1,18 @@ +package notification::email::templates::resources; + +use strict; +use warnings; + +use notification::email::templates::style qw(get_css); +use notification::email::templates::host qw(get_host_template); +use notification::email::templates::service qw(get_service_template); +use notification::email::templates::bam qw(get_bam_template); +use notification::email::templates::metaservice qw(get_metaservice_template); + +our $get_service_template = get_service_template(); +our $get_host_template = get_host_template(); +our $get_bam_template = get_bam_template(); +our $get_metaservice_template = get_metaservice_template(); +our $get_css = get_css(); + +1; diff --git a/src/notification/email/templates/service.pm b/src/notification/email/templates/service.pm new file mode 100644 index 000000000..c7dc7b194 --- /dev/null +++ b/src/notification/email/templates/service.pm @@ -0,0 +1,461 @@ +package notification::email::templates::service; + +use strict; +use warnings; + +use Exporter qw(import); + +our @EXPORT_OK = qw(get_service_template); + +sub get_service_template { + return q{ + + + + + + + + + + + + + +
+ +
+ + + + + + +
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ +
+
+
+
+ + + + + + +
+ + + + +
+
+ +
+
+
+
+
+ + + + + + +
+ + + + +
+
+ / +
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Host:

+

+ +

+

Service:

+

+ + + is + + + for: + + +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Host Alias:

+

+ +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ +
+ + + + + + +
+ + + + +
+
+

Host Address:

+

+ +

+
+
+
+
+
+ + + + + + +
+ + + + +
+
+

Date:

+

+ +

+
+
+
+
+
+ + + + + + +
+ + + + +
+ + + + +
More Information
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ by: +

+

+ +

+
+
+
+
+
+
+
+ + +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

+ Comment: +

+

+

+
+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+
+

Status information:

+

+ +

+
+
+
+
+
+
+ +
+ + + + + + +
+ +
+ + + + + + +
+ + + + +
+ + + + + + +
+ +
+
+
+
+
+
+
+
+
+ + + +}; +} + +1; diff --git a/src/notification/email/templates/style.pm b/src/notification/email/templates/style.pm new file mode 100644 index 000000000..7e6a97a1d --- /dev/null +++ b/src/notification/email/templates/style.pm @@ -0,0 +1,204 @@ +package notification::email::templates::style; + +use strict; +use warnings; + +use Exporter qw(import); + +our @EXPORT_OK = qw(get_css); + +sub get_css { +return q{ + + + + + + + +}; +} + +1; \ No newline at end of file diff --git a/src/notification/foxbox/mode/alert.pm b/src/notification/foxbox/mode/alert.pm index 91b91f87c..5e1d0dbf3 100644 --- a/src/notification/foxbox/mode/alert.pm +++ b/src/notification/foxbox/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/foxbox/plugin.pm b/src/notification/foxbox/plugin.pm index 108962785..f7cb81720 100644 --- a/src/notification/foxbox/plugin.pm +++ b/src/notification/foxbox/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/highsms/mode/alert.pm b/src/notification/highsms/mode/alert.pm index efccc1706..23953ed11 100644 --- a/src/notification/highsms/mode/alert.pm +++ b/src/notification/highsms/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/highsms/plugin.pm b/src/notification/highsms/plugin.pm index 1d44a02d1..bd06dc4a5 100644 --- a/src/notification/highsms/plugin.pm +++ b/src/notification/highsms/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/jasminsms/httpapi/custom/api.pm b/src/notification/jasminsms/httpapi/custom/api.pm index 08131ece8..a44f15d54 100644 --- a/src/notification/jasminsms/httpapi/custom/api.pm +++ b/src/notification/jasminsms/httpapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/jasminsms/httpapi/mode/alert.pm b/src/notification/jasminsms/httpapi/mode/alert.pm index 5237afaae..e5fd44851 100644 --- a/src/notification/jasminsms/httpapi/mode/alert.pm +++ b/src/notification/jasminsms/httpapi/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/jasminsms/httpapi/plugin.pm b/src/notification/jasminsms/httpapi/plugin.pm index 3ac41107d..52e40a10b 100644 --- a/src/notification/jasminsms/httpapi/plugin.pm +++ b/src/notification/jasminsms/httpapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/microsoft/office365/teams/custom/webhookapi.pm b/src/notification/microsoft/office365/teams/custom/webhookapi.pm index da7e43026..e271838ba 100644 --- a/src/notification/microsoft/office365/teams/custom/webhookapi.pm +++ b/src/notification/microsoft/office365/teams/custom/webhookapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/microsoft/office365/teams/mode/alert.pm b/src/notification/microsoft/office365/teams/mode/alert.pm index 56253ddc6..f62e3122f 100644 --- a/src/notification/microsoft/office365/teams/mode/alert.pm +++ b/src/notification/microsoft/office365/teams/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/microsoft/office365/teams/plugin.pm b/src/notification/microsoft/office365/teams/plugin.pm index 8451708ec..94311b039 100644 --- a/src/notification/microsoft/office365/teams/plugin.pm +++ b/src/notification/microsoft/office365/teams/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/ovhsms/mode/alert.pm b/src/notification/ovhsms/mode/alert.pm index 93cfa668c..b0405934f 100644 --- a/src/notification/ovhsms/mode/alert.pm +++ b/src/notification/ovhsms/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/ovhsms/plugin.pm b/src/notification/ovhsms/plugin.pm index 3e97c596f..1bc205f00 100644 --- a/src/notification/ovhsms/plugin.pm +++ b/src/notification/ovhsms/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/prowl/mode/alert.pm b/src/notification/prowl/mode/alert.pm index 7d87e740c..545906e8e 100644 --- a/src/notification/prowl/mode/alert.pm +++ b/src/notification/prowl/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/prowl/plugin.pm b/src/notification/prowl/plugin.pm index 277070899..d65c76a65 100644 --- a/src/notification/prowl/plugin.pm +++ b/src/notification/prowl/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/sirportly/mode/ticket.pm b/src/notification/sirportly/mode/ticket.pm index 1069df637..959645acc 100644 --- a/src/notification/sirportly/mode/ticket.pm +++ b/src/notification/sirportly/mode/ticket.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/sirportly/plugin.pm b/src/notification/sirportly/plugin.pm index 4bdc85c60..23373b8c9 100644 --- a/src/notification/sirportly/plugin.pm +++ b/src/notification/sirportly/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/slack/mode/alert.pm b/src/notification/slack/mode/alert.pm index 2b2631ba1..624ceb5d7 100644 --- a/src/notification/slack/mode/alert.pm +++ b/src/notification/slack/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/slack/plugin.pm b/src/notification/slack/plugin.pm index 33bd5a9a8..ccd694ec0 100644 --- a/src/notification/slack/plugin.pm +++ b/src/notification/slack/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/telegram/mode/alert.pm b/src/notification/telegram/mode/alert.pm index 6a8826faa..16c863a15 100644 --- a/src/notification/telegram/mode/alert.pm +++ b/src/notification/telegram/mode/alert.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/notification/telegram/plugin.pm b/src/notification/telegram/plugin.pm index 88396ed86..122f56c95 100644 --- a/src/notification/telegram/plugin.pm +++ b/src/notification/telegram/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/custom/cli.pm b/src/os/aix/local/custom/cli.pm index 926627e81..ecc216dc6 100644 --- a/src/os/aix/local/custom/cli.pm +++ b/src/os/aix/local/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/cmdreturn.pm b/src/os/aix/local/mode/cmdreturn.pm index 9e781dfa4..9590ac186 100644 --- a/src/os/aix/local/mode/cmdreturn.pm +++ b/src/os/aix/local/mode/cmdreturn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/errpt.pm b/src/os/aix/local/mode/errpt.pm index edc6efdc7..85c82efda 100644 --- a/src/os/aix/local/mode/errpt.pm +++ b/src/os/aix/local/mode/errpt.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/inodes.pm b/src/os/aix/local/mode/inodes.pm index 4f03b027c..05b2e47a0 100644 --- a/src/os/aix/local/mode/inodes.pm +++ b/src/os/aix/local/mode/inodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/liststorages.pm b/src/os/aix/local/mode/liststorages.pm index 2c44ff03c..a33ffcc50 100644 --- a/src/os/aix/local/mode/liststorages.pm +++ b/src/os/aix/local/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/lvsync.pm b/src/os/aix/local/mode/lvsync.pm index a19624cb2..aa294b20e 100644 --- a/src/os/aix/local/mode/lvsync.pm +++ b/src/os/aix/local/mode/lvsync.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/process.pm b/src/os/aix/local/mode/process.pm index ca665e431..db30b55f9 100644 --- a/src/os/aix/local/mode/process.pm +++ b/src/os/aix/local/mode/process.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/mode/storage.pm b/src/os/aix/local/mode/storage.pm index 93558f225..2656c3334 100644 --- a/src/os/aix/local/mode/storage.pm +++ b/src/os/aix/local/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/local/plugin.pm b/src/os/aix/local/plugin.pm index 36d02bc9c..ace46c03d 100644 --- a/src/os/aix/local/plugin.pm +++ b/src/os/aix/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/snmp/mode/swap.pm b/src/os/aix/snmp/mode/swap.pm index 20f875809..efb9ef17f 100644 --- a/src/os/aix/snmp/mode/swap.pm +++ b/src/os/aix/snmp/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/aix/snmp/plugin.pm b/src/os/aix/snmp/plugin.pm index e7e44340e..defc47e25 100644 --- a/src/os/aix/snmp/plugin.pm +++ b/src/os/aix/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/custom/api.pm b/src/os/as400/connector/custom/api.pm index 04c3c0f40..8068b708f 100644 --- a/src/os/as400/connector/custom/api.pm +++ b/src/os/as400/connector/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/command.pm b/src/os/as400/connector/mode/command.pm index 6c74f221f..218357d06 100644 --- a/src/os/as400/connector/mode/command.pm +++ b/src/os/as400/connector/mode/command.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/disks.pm b/src/os/as400/connector/mode/disks.pm index e940c73fa..6c6dcaed5 100644 --- a/src/os/as400/connector/mode/disks.pm +++ b/src/os/as400/connector/mode/disks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/jobqueues.pm b/src/os/as400/connector/mode/jobqueues.pm index 39368e3d0..32469f1f1 100644 --- a/src/os/as400/connector/mode/jobqueues.pm +++ b/src/os/as400/connector/mode/jobqueues.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/jobs.pm b/src/os/as400/connector/mode/jobs.pm index 8647d3aab..caedac6b8 100644 --- a/src/os/as400/connector/mode/jobs.pm +++ b/src/os/as400/connector/mode/jobs.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/listdisks.pm b/src/os/as400/connector/mode/listdisks.pm index 215d45e8a..2361c0782 100644 --- a/src/os/as400/connector/mode/listdisks.pm +++ b/src/os/as400/connector/mode/listdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/listsubsystems.pm b/src/os/as400/connector/mode/listsubsystems.pm index b1a55d978..e17683149 100644 --- a/src/os/as400/connector/mode/listsubsystems.pm +++ b/src/os/as400/connector/mode/listsubsystems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/messagequeue.pm b/src/os/as400/connector/mode/messagequeue.pm index 318b7cd27..d478fe350 100644 --- a/src/os/as400/connector/mode/messagequeue.pm +++ b/src/os/as400/connector/mode/messagequeue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/pagefaults.pm b/src/os/as400/connector/mode/pagefaults.pm index 7ce509b44..3e3ef88c7 100644 --- a/src/os/as400/connector/mode/pagefaults.pm +++ b/src/os/as400/connector/mode/pagefaults.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/subsystems.pm b/src/os/as400/connector/mode/subsystems.pm index fe5ca362d..12dddab1b 100644 --- a/src/os/as400/connector/mode/subsystems.pm +++ b/src/os/as400/connector/mode/subsystems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/mode/system.pm b/src/os/as400/connector/mode/system.pm index 117079854..d5e099ed8 100644 --- a/src/os/as400/connector/mode/system.pm +++ b/src/os/as400/connector/mode/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/as400/connector/plugin.pm b/src/os/as400/connector/plugin.pm index 8bf267d24..904fb7c00 100644 --- a/src/os/as400/connector/plugin.pm +++ b/src/os/as400/connector/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/freebsd/snmp/mode/memory.pm b/src/os/freebsd/snmp/mode/memory.pm index d482815d0..a8760d890 100644 --- a/src/os/freebsd/snmp/mode/memory.pm +++ b/src/os/freebsd/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/freebsd/snmp/plugin.pm b/src/os/freebsd/snmp/plugin.pm index acbf836c7..b96ada458 100644 --- a/src/os/freebsd/snmp/plugin.pm +++ b/src/os/freebsd/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/local/mode/inodes.pm b/src/os/hpux/local/mode/inodes.pm index d0ff400d4..3a696b4e3 100644 --- a/src/os/hpux/local/mode/inodes.pm +++ b/src/os/hpux/local/mode/inodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/local/mode/liststorages.pm b/src/os/hpux/local/mode/liststorages.pm index feca58b98..4fd1bb0ab 100644 --- a/src/os/hpux/local/mode/liststorages.pm +++ b/src/os/hpux/local/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/local/mode/storage.pm b/src/os/hpux/local/mode/storage.pm index 32fb77539..bd312c420 100644 --- a/src/os/hpux/local/mode/storage.pm +++ b/src/os/hpux/local/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/local/plugin.pm b/src/os/hpux/local/plugin.pm index 3c63709ce..080a7d518 100644 --- a/src/os/hpux/local/plugin.pm +++ b/src/os/hpux/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/snmp/mode/cpu.pm b/src/os/hpux/snmp/mode/cpu.pm index 84b33e8d6..a7ef0b234 100644 --- a/src/os/hpux/snmp/mode/cpu.pm +++ b/src/os/hpux/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/snmp/mode/load.pm b/src/os/hpux/snmp/mode/load.pm index 9e90d4125..65bf3d0fd 100644 --- a/src/os/hpux/snmp/mode/load.pm +++ b/src/os/hpux/snmp/mode/load.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/snmp/mode/memory.pm b/src/os/hpux/snmp/mode/memory.pm index 326b56987..52d072772 100644 --- a/src/os/hpux/snmp/mode/memory.pm +++ b/src/os/hpux/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/snmp/mode/process.pm b/src/os/hpux/snmp/mode/process.pm index b1bc8c9da..184142c61 100644 --- a/src/os/hpux/snmp/mode/process.pm +++ b/src/os/hpux/snmp/mode/process.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/snmp/mode/storage.pm b/src/os/hpux/snmp/mode/storage.pm index 923663bff..315db0bdf 100644 --- a/src/os/hpux/snmp/mode/storage.pm +++ b/src/os/hpux/snmp/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/hpux/snmp/plugin.pm b/src/os/hpux/snmp/plugin.pm index 69a81c84e..6919909a5 100644 --- a/src/os/hpux/snmp/plugin.pm +++ b/src/os/hpux/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/custom/cli.pm b/src/os/linux/local/custom/cli.pm index 827346857..fe8f03763 100644 --- a/src/os/linux/local/custom/cli.pm +++ b/src/os/linux/local/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/checkplugin.pm b/src/os/linux/local/mode/checkplugin.pm index bf49383b1..05631a801 100644 --- a/src/os/linux/local/mode/checkplugin.pm +++ b/src/os/linux/local/mode/checkplugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/cmdreturn.pm b/src/os/linux/local/mode/cmdreturn.pm index 0b4759b72..a367b9359 100644 --- a/src/os/linux/local/mode/cmdreturn.pm +++ b/src/os/linux/local/mode/cmdreturn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/connections.pm b/src/os/linux/local/mode/connections.pm index 39555213a..9e866e98d 100644 --- a/src/os/linux/local/mode/connections.pm +++ b/src/os/linux/local/mode/connections.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/cpu.pm b/src/os/linux/local/mode/cpu.pm index a562ddab5..2db78a77b 100644 --- a/src/os/linux/local/mode/cpu.pm +++ b/src/os/linux/local/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/cpudetailed.pm b/src/os/linux/local/mode/cpudetailed.pm index d9c29b5d2..f1ce12f84 100644 --- a/src/os/linux/local/mode/cpudetailed.pm +++ b/src/os/linux/local/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/discoverysnmp.pm b/src/os/linux/local/mode/discoverysnmp.pm index 38ff2e73d..2d387fce2 100644 --- a/src/os/linux/local/mode/discoverysnmp.pm +++ b/src/os/linux/local/mode/discoverysnmp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/discoverysnmpv3.pm b/src/os/linux/local/mode/discoverysnmpv3.pm index 7efc520b6..9fe0bf6ef 100644 --- a/src/os/linux/local/mode/discoverysnmpv3.pm +++ b/src/os/linux/local/mode/discoverysnmpv3.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/diskio.pm b/src/os/linux/local/mode/diskio.pm index 2cefdbd67..2ebd544b8 100644 --- a/src/os/linux/local/mode/diskio.pm +++ b/src/os/linux/local/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/filesdate.pm b/src/os/linux/local/mode/filesdate.pm index ce5abebbb..ffa8a16a6 100644 --- a/src/os/linux/local/mode/filesdate.pm +++ b/src/os/linux/local/mode/filesdate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/filessize.pm b/src/os/linux/local/mode/filessize.pm index 2971006aa..b0622d85c 100644 --- a/src/os/linux/local/mode/filessize.pm +++ b/src/os/linux/local/mode/filessize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/inodes.pm b/src/os/linux/local/mode/inodes.pm index ff194f479..e954a2602 100644 --- a/src/os/linux/local/mode/inodes.pm +++ b/src/os/linux/local/mode/inodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/listinterfaces.pm b/src/os/linux/local/mode/listinterfaces.pm index 42bdac479..571afd5dc 100644 --- a/src/os/linux/local/mode/listinterfaces.pm +++ b/src/os/linux/local/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/listpartitions.pm b/src/os/linux/local/mode/listpartitions.pm index 6d46673c3..a3ba4e0a5 100644 --- a/src/os/linux/local/mode/listpartitions.pm +++ b/src/os/linux/local/mode/listpartitions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/liststorages.pm b/src/os/linux/local/mode/liststorages.pm index 65fb2c832..32140e884 100644 --- a/src/os/linux/local/mode/liststorages.pm +++ b/src/os/linux/local/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/listsystemdservices.pm b/src/os/linux/local/mode/listsystemdservices.pm index 18ffb22ca..80bb7519d 100644 --- a/src/os/linux/local/mode/listsystemdservices.pm +++ b/src/os/linux/local/mode/listsystemdservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -46,9 +46,22 @@ sub check_options { sub manage_selection { my ($self, %options) = @_; - my ($stdout) = $options{custom}->execute_command( - command => 'systemctl', - command_options => '-a --no-pager --no-legend --plain' + # check systemctl version to convert no-legend in legend=false (change in versions >= 248) + my $legend_format= ' --no-legend'; + my ($stdout_version) = $options{custom}->execute_command( + command => 'systemctl', + command_options => '--version' + ); + $stdout_version =~ /^systemd\s(\d+)\s/; + my $systemctl_version=$1; + if($systemctl_version >= 248){ + $legend_format = ' --legend=false'; + } + + my $command_options_1 = '-a --no-pager --plain'; + my ($stdout) = $options{custom}->execute_command( + command => 'systemctl', + command_options => $command_options_1.$legend_format ); my $results = {}; @@ -117,6 +130,7 @@ __END__ List systemd services. Command used: systemctl -a --no-pager --no-legend --plain +Command change for systemctl version >= 248 : --no-legend is converted in legend=false =over 8 diff --git a/src/os/linux/local/mode/loadaverage.pm b/src/os/linux/local/mode/loadaverage.pm index 9805006d3..78ba55f85 100644 --- a/src/os/linux/local/mode/loadaverage.pm +++ b/src/os/linux/local/mode/loadaverage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/lvm.pm b/src/os/linux/local/mode/lvm.pm index 1e8920050..26012fc84 100644 --- a/src/os/linux/local/mode/lvm.pm +++ b/src/os/linux/local/mode/lvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/memory.pm b/src/os/linux/local/mode/memory.pm index c4d9573cd..ffa1fdb17 100644 --- a/src/os/linux/local/mode/memory.pm +++ b/src/os/linux/local/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/mountpoint.pm b/src/os/linux/local/mode/mountpoint.pm index 8d5174245..b41e42193 100644 --- a/src/os/linux/local/mode/mountpoint.pm +++ b/src/os/linux/local/mode/mountpoint.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/openfiles.pm b/src/os/linux/local/mode/openfiles.pm index 9ecbc645a..a0cf72329 100644 --- a/src/os/linux/local/mode/openfiles.pm +++ b/src/os/linux/local/mode/openfiles.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/packeterrors.pm b/src/os/linux/local/mode/packeterrors.pm index 46e0b1a7e..65abd1f98 100644 --- a/src/os/linux/local/mode/packeterrors.pm +++ b/src/os/linux/local/mode/packeterrors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/paging.pm b/src/os/linux/local/mode/paging.pm index dd433f14e..89786aaa9 100644 --- a/src/os/linux/local/mode/paging.pm +++ b/src/os/linux/local/mode/paging.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/pendingupdates.pm b/src/os/linux/local/mode/pendingupdates.pm index 184ec6e65..b94edd81e 100644 --- a/src/os/linux/local/mode/pendingupdates.pm +++ b/src/os/linux/local/mode/pendingupdates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/process.pm b/src/os/linux/local/mode/process.pm index d89529abe..63c00f7cd 100644 --- a/src/os/linux/local/mode/process.pm +++ b/src/os/linux/local/mode/process.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -382,7 +382,7 @@ bash -c 'tail -n +1 /proc/{pid1,pid2,...}/{statm,stat,io}' =item B<--add-cpu> -Monitor cpu usage. +Monitor CPU usage. =item B<--add-memory> diff --git a/src/os/linux/local/mode/quota.pm b/src/os/linux/local/mode/quota.pm index 8a2da3500..25d5a9e7c 100644 --- a/src/os/linux/local/mode/quota.pm +++ b/src/os/linux/local/mode/quota.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/resources/discovery.pm b/src/os/linux/local/mode/resources/discovery.pm index 0bf1e5256..0cdc75635 100644 --- a/src/os/linux/local/mode/resources/discovery.pm +++ b/src/os/linux/local/mode/resources/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/storage.pm b/src/os/linux/local/mode/storage.pm index a70e47921..12b52903b 100644 --- a/src/os/linux/local/mode/storage.pm +++ b/src/os/linux/local/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/swap.pm b/src/os/linux/local/mode/swap.pm index 16408de43..170961ba5 100644 --- a/src/os/linux/local/mode/swap.pm +++ b/src/os/linux/local/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/systemdjournal.pm b/src/os/linux/local/mode/systemdjournal.pm index 16ac220d3..c19b936a8 100644 --- a/src/os/linux/local/mode/systemdjournal.pm +++ b/src/os/linux/local/mode/systemdjournal.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/systemdscstatus.pm b/src/os/linux/local/mode/systemdscstatus.pm index 9c8236a5d..8314ea9dc 100644 --- a/src/os/linux/local/mode/systemdscstatus.pm +++ b/src/os/linux/local/mode/systemdscstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -115,9 +115,22 @@ sub new { sub manage_selection { my ($self, %options) = @_; - my ($stdout) = $options{custom}->execute_command( - command => 'systemctl', - command_options => '-a --no-pager --no-legend --plain' + # check systemctl version to convert no-legend in legend=false (change in versions >= 248) + my $legend_format= ' --no-legend'; + my ($stdout_version) = $options{custom}->execute_command( + command => 'systemctl', + command_options => '--version' + ); + $stdout_version =~ /^systemd\s(\d+)\s/; + my $systemctl_version=$1; + if($systemctl_version >= 248){ + $legend_format = ' --legend=false'; + } + + my $command_options_1 = '-a --no-pager --plain'; + my ($stdout) = $options{custom}->execute_command( + command => 'systemctl', + command_options => $command_options_1.$legend_format ); $self->{global} = { running => 0, exited => 0, failed => 0, dead => 0, total => 0 }; @@ -143,17 +156,19 @@ sub manage_selection { $self->{output}->option_exit(); } - ($stdout) = $options{custom}->execute_command( - command => 'systemctl', - command_options => 'list-unit-files --no-pager --no-legend --plain' + my $command_options_2 = 'list-unit-files --no-pager --plain'; + my ($stdout_2) = $options{custom}->execute_command( + command => 'systemctl', + command_options => $command_options_2.$legend_format ); + # vendor preset is a new column #UNIT FILE STATE VENDOR PRESET #runlevel4.target enabled #runlevel5.target static #runlevel6.target disabled #irqbalance.service enabled enabled - while ($stdout =~ /^(.*?)\s+(\S+)\s*/msig) { + while ($stdout_2 =~ /^(.*?)\s+(\S+)\s*/msig) { my ($name, $boot) = ($1, $2); next if (!defined($self->{sc}->{$name})); $self->{sc}->{$name}->{boot} = $boot; @@ -169,6 +184,7 @@ __END__ Check systemd services status. Command used: 'systemctl -a --no-pager --no-legend' and 'systemctl list-unit-files --no-pager --no-legend' +Command change for systemctl version >= 248 : --no-legend is converted in legend=false =over 8 @@ -190,11 +206,21 @@ Can be: 'total-running', 'total-dead', 'total-exited', Define the conditions to match for the status to be WARNING. You can use the following variables: %{display}, %{active}, %{sub}, %{load}, %{boot} +Example of statuses for the majority of these variables: +%{active}: active, inactive +%{sub}: waiting, plugged, mounted, dead, failed, running, exited, listening, active +%{load}: loaded, not-found +%{boot}: enabled, disabled, static, indirect =item B<--critical-status> Define the conditions to match for the status to be CRITICAL (default: '%{active} =~ /failed/i'). You can use the following variables: %{display}, %{active}, %{sub}, %{load}, %{boot} +Example of statuses for the majority of these variables: +%{active}: active, inactive +%{sub}: waiting, plugged, mounted, dead, failed, running, exited, listening, active +%{load}: loaded, not-found +%{boot}: enabled, disabled, static, indirect =back diff --git a/src/os/linux/local/mode/traffic.pm b/src/os/linux/local/mode/traffic.pm index f1889b037..e388cb774 100644 --- a/src/os/linux/local/mode/traffic.pm +++ b/src/os/linux/local/mode/traffic.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/mode/uptime.pm b/src/os/linux/local/mode/uptime.pm index 730466b4d..90f3e30a8 100644 --- a/src/os/linux/local/mode/uptime.pm +++ b/src/os/linux/local/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/local/plugin.pm b/src/os/linux/local/plugin.pm index c6ba53dc6..fc59a8685 100644 --- a/src/os/linux/local/plugin.pm +++ b/src/os/linux/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/linux/snmp/plugin.pm b/src/os/linux/snmp/plugin.pm index f5d92f318..49a50c74e 100644 --- a/src/os/linux/snmp/plugin.pm +++ b/src/os/linux/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/mac/snmp/mode/memory.pm b/src/os/mac/snmp/mode/memory.pm index 6b8d4e83a..2fa992bc2 100644 --- a/src/os/mac/snmp/mode/memory.pm +++ b/src/os/mac/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/mac/snmp/plugin.pm b/src/os/mac/snmp/plugin.pm index c0b08b6d5..1ae1ef3df 100644 --- a/src/os/mac/snmp/plugin.pm +++ b/src/os/mac/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/components/fan.pm b/src/os/picos/snmp/mode/components/fan.pm index 48b46c252..132822cb8 100644 --- a/src/os/picos/snmp/mode/components/fan.pm +++ b/src/os/picos/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/components/psu.pm b/src/os/picos/snmp/mode/components/psu.pm index 9da7ad46c..ee6fe09bd 100644 --- a/src/os/picos/snmp/mode/components/psu.pm +++ b/src/os/picos/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/cpu.pm b/src/os/picos/snmp/mode/cpu.pm index f349a27a0..5a51e94b2 100644 --- a/src/os/picos/snmp/mode/cpu.pm +++ b/src/os/picos/snmp/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/hardware.pm b/src/os/picos/snmp/mode/hardware.pm index d2a5916b4..fc18a6356 100644 --- a/src/os/picos/snmp/mode/hardware.pm +++ b/src/os/picos/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/interfaces.pm b/src/os/picos/snmp/mode/interfaces.pm index 53bff49d7..0030ba2ce 100644 --- a/src/os/picos/snmp/mode/interfaces.pm +++ b/src/os/picos/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -307,7 +307,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/os/picos/snmp/mode/listinterfaces.pm b/src/os/picos/snmp/mode/listinterfaces.pm index 3edbdd198..e835bb8d3 100644 --- a/src/os/picos/snmp/mode/listinterfaces.pm +++ b/src/os/picos/snmp/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/memory.pm b/src/os/picos/snmp/mode/memory.pm index ba883e4c8..e10454798 100644 --- a/src/os/picos/snmp/mode/memory.pm +++ b/src/os/picos/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/mode/temperature.pm b/src/os/picos/snmp/mode/temperature.pm index 3e36f01cd..6e5df6995 100644 --- a/src/os/picos/snmp/mode/temperature.pm +++ b/src/os/picos/snmp/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/picos/snmp/plugin.pm b/src/os/picos/snmp/plugin.pm index b79410d82..01015d20d 100644 --- a/src/os/picos/snmp/plugin.pm +++ b/src/os/picos/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/analyzedisks.pm b/src/os/solaris/local/mode/analyzedisks.pm index 75d406af0..8969518d6 100644 --- a/src/os/solaris/local/mode/analyzedisks.pm +++ b/src/os/solaris/local/mode/analyzedisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/cpu.pm b/src/os/solaris/local/mode/cpu.pm index 18a9e403d..4342f0635 100644 --- a/src/os/solaris/local/mode/cpu.pm +++ b/src/os/solaris/local/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/fcconnected.pm b/src/os/solaris/local/mode/fcconnected.pm index af7084dfa..7caa2479f 100644 --- a/src/os/solaris/local/mode/fcconnected.pm +++ b/src/os/solaris/local/mode/fcconnected.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/fmadm.pm b/src/os/solaris/local/mode/fmadm.pm index 5596d0394..d479408c7 100644 --- a/src/os/solaris/local/mode/fmadm.pm +++ b/src/os/solaris/local/mode/fmadm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/hwraidctl.pm b/src/os/solaris/local/mode/hwraidctl.pm index 64dbd91ba..010f37718 100644 --- a/src/os/solaris/local/mode/hwraidctl.pm +++ b/src/os/solaris/local/mode/hwraidctl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/hwsas2ircu.pm b/src/os/solaris/local/mode/hwsas2ircu.pm index 5c5ec84a5..7027136f2 100644 --- a/src/os/solaris/local/mode/hwsas2ircu.pm +++ b/src/os/solaris/local/mode/hwsas2ircu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/lomv120.pm b/src/os/solaris/local/mode/lomv120.pm index a20eaab94..54b89297a 100644 --- a/src/os/solaris/local/mode/lomv120.pm +++ b/src/os/solaris/local/mode/lomv120.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/lomv120components/fan.pm b/src/os/solaris/local/mode/lomv120components/fan.pm index dc58bd37d..b06c8a9c6 100644 --- a/src/os/solaris/local/mode/lomv120components/fan.pm +++ b/src/os/solaris/local/mode/lomv120components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/lomv120components/psu.pm b/src/os/solaris/local/mode/lomv120components/psu.pm index 9b8f4c450..024dbf861 100644 --- a/src/os/solaris/local/mode/lomv120components/psu.pm +++ b/src/os/solaris/local/mode/lomv120components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/lomv120components/sf.pm b/src/os/solaris/local/mode/lomv120components/sf.pm index b7ab240a4..3ca03252b 100644 --- a/src/os/solaris/local/mode/lomv120components/sf.pm +++ b/src/os/solaris/local/mode/lomv120components/sf.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/lomv120components/voltage.pm b/src/os/solaris/local/mode/lomv120components/voltage.pm index 5b79d689a..39afb5e1f 100644 --- a/src/os/solaris/local/mode/lomv120components/voltage.pm +++ b/src/os/solaris/local/mode/lomv120components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/lomv1280.pm b/src/os/solaris/local/mode/lomv1280.pm index 816e2c253..3f50cd8c6 100644 --- a/src/os/solaris/local/mode/lomv1280.pm +++ b/src/os/solaris/local/mode/lomv1280.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/prtdiag.pm b/src/os/solaris/local/mode/prtdiag.pm index 064d88a33..72e5725c0 100644 --- a/src/os/solaris/local/mode/prtdiag.pm +++ b/src/os/solaris/local/mode/prtdiag.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/svmdisks.pm b/src/os/solaris/local/mode/svmdisks.pm index abbfe976b..155967db8 100644 --- a/src/os/solaris/local/mode/svmdisks.pm +++ b/src/os/solaris/local/mode/svmdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/mode/vxdisks.pm b/src/os/solaris/local/mode/vxdisks.pm index c65bb41ea..227c6ee07 100644 --- a/src/os/solaris/local/mode/vxdisks.pm +++ b/src/os/solaris/local/mode/vxdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/local/plugin.pm b/src/os/solaris/local/plugin.pm index a33ebb71c..e3de246d7 100644 --- a/src/os/solaris/local/plugin.pm +++ b/src/os/solaris/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/solaris/snmp/plugin.pm b/src/os/solaris/snmp/plugin.pm index f2c82aa4f..03b2e254f 100644 --- a/src/os/solaris/snmp/plugin.pm +++ b/src/os/solaris/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/certificates.pm b/src/os/windows/local/mode/certificates.pm index a9e900548..361845464 100644 --- a/src/os/windows/local/mode/certificates.pm +++ b/src/os/windows/local/mode/certificates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/cmdreturn.pm b/src/os/windows/local/mode/cmdreturn.pm index 1a9a44f8f..ef67371da 100644 --- a/src/os/windows/local/mode/cmdreturn.pm +++ b/src/os/windows/local/mode/cmdreturn.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/listcertificates.pm b/src/os/windows/local/mode/listcertificates.pm index 27fb0420b..7153d2e76 100644 --- a/src/os/windows/local/mode/listcertificates.pm +++ b/src/os/windows/local/mode/listcertificates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/liststorages.pm b/src/os/windows/local/mode/liststorages.pm index 478bd69a6..04afe5d5e 100644 --- a/src/os/windows/local/mode/liststorages.pm +++ b/src/os/windows/local/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/ntp.pm b/src/os/windows/local/mode/ntp.pm index 57191f3ae..f258c240b 100644 --- a/src/os/windows/local/mode/ntp.pm +++ b/src/os/windows/local/mode/ntp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/pendingreboot.pm b/src/os/windows/local/mode/pendingreboot.pm index 4e42f07e4..d7d0eabad 100644 --- a/src/os/windows/local/mode/pendingreboot.pm +++ b/src/os/windows/local/mode/pendingreboot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/sessions.pm b/src/os/windows/local/mode/sessions.pm index 587e5f52e..0eebd0d3a 100644 --- a/src/os/windows/local/mode/sessions.pm +++ b/src/os/windows/local/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/mode/updates.pm b/src/os/windows/local/mode/updates.pm index 6d13d2308..fb4b85976 100644 --- a/src/os/windows/local/mode/updates.pm +++ b/src/os/windows/local/mode/updates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/local/plugin.pm b/src/os/windows/local/plugin.pm index c2916ecf0..a80f16386 100644 --- a/src/os/windows/local/plugin.pm +++ b/src/os/windows/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/snmp/mode/listservices.pm b/src/os/windows/snmp/mode/listservices.pm index 8816071ab..d6b7e6069 100644 --- a/src/os/windows/snmp/mode/listservices.pm +++ b/src/os/windows/snmp/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/snmp/mode/memory.pm b/src/os/windows/snmp/mode/memory.pm index a4618be95..a6b062e19 100644 --- a/src/os/windows/snmp/mode/memory.pm +++ b/src/os/windows/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/snmp/mode/service.pm b/src/os/windows/snmp/mode/service.pm index 6a7151608..705631edb 100644 --- a/src/os/windows/snmp/mode/service.pm +++ b/src/os/windows/snmp/mode/service.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/snmp/mode/swap.pm b/src/os/windows/snmp/mode/swap.pm index f4349ddcb..69fe607dc 100644 --- a/src/os/windows/snmp/mode/swap.pm +++ b/src/os/windows/snmp/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/snmp/plugin.pm b/src/os/windows/snmp/plugin.pm index 1d29e96d7..96bae700a 100644 --- a/src/os/windows/snmp/plugin.pm +++ b/src/os/windows/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/cpu.pm b/src/os/windows/wsman/mode/cpu.pm index e35380419..83f21df06 100644 --- a/src/os/windows/wsman/mode/cpu.pm +++ b/src/os/windows/wsman/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/eventlog.pm b/src/os/windows/wsman/mode/eventlog.pm index dd3323e9b..1856ac03d 100644 --- a/src/os/windows/wsman/mode/eventlog.pm +++ b/src/os/windows/wsman/mode/eventlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/filesdate.pm b/src/os/windows/wsman/mode/filesdate.pm index 8da1eddde..95a745b67 100644 --- a/src/os/windows/wsman/mode/filesdate.pm +++ b/src/os/windows/wsman/mode/filesdate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/filessize.pm b/src/os/windows/wsman/mode/filessize.pm index 6c24625cc..bcf8f0f97 100644 --- a/src/os/windows/wsman/mode/filessize.pm +++ b/src/os/windows/wsman/mode/filessize.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/interfaces.pm b/src/os/windows/wsman/mode/interfaces.pm index 3efcc9b79..1125c1044 100644 --- a/src/os/windows/wsman/mode/interfaces.pm +++ b/src/os/windows/wsman/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/listinterfaces.pm b/src/os/windows/wsman/mode/listinterfaces.pm index 371a4df5b..66c9fdc23 100644 --- a/src/os/windows/wsman/mode/listinterfaces.pm +++ b/src/os/windows/wsman/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/listprocesses.pm b/src/os/windows/wsman/mode/listprocesses.pm index 64b8db9e4..f21fda547 100644 --- a/src/os/windows/wsman/mode/listprocesses.pm +++ b/src/os/windows/wsman/mode/listprocesses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/listservices.pm b/src/os/windows/wsman/mode/listservices.pm index 384bd7f4e..804d8d575 100644 --- a/src/os/windows/wsman/mode/listservices.pm +++ b/src/os/windows/wsman/mode/listservices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/liststorages.pm b/src/os/windows/wsman/mode/liststorages.pm index 870f218e3..cf15efe74 100644 --- a/src/os/windows/wsman/mode/liststorages.pm +++ b/src/os/windows/wsman/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/memory.pm b/src/os/windows/wsman/mode/memory.pm index c525162a0..a25f3f7ad 100644 --- a/src/os/windows/wsman/mode/memory.pm +++ b/src/os/windows/wsman/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/pages.pm b/src/os/windows/wsman/mode/pages.pm index 6f5a0a40e..2a4fe16a1 100644 --- a/src/os/windows/wsman/mode/pages.pm +++ b/src/os/windows/wsman/mode/pages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/pendingreboot.pm b/src/os/windows/wsman/mode/pendingreboot.pm index cbe0d1016..54040ce5f 100644 --- a/src/os/windows/wsman/mode/pendingreboot.pm +++ b/src/os/windows/wsman/mode/pendingreboot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/processes.pm b/src/os/windows/wsman/mode/processes.pm index a509d9718..2cea986ed 100644 --- a/src/os/windows/wsman/mode/processes.pm +++ b/src/os/windows/wsman/mode/processes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/services.pm b/src/os/windows/wsman/mode/services.pm index a2d68cd0b..5e78a9f29 100644 --- a/src/os/windows/wsman/mode/services.pm +++ b/src/os/windows/wsman/mode/services.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/sessions.pm b/src/os/windows/wsman/mode/sessions.pm index 07d0c5ad9..3eb0640a8 100644 --- a/src/os/windows/wsman/mode/sessions.pm +++ b/src/os/windows/wsman/mode/sessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/storages.pm b/src/os/windows/wsman/mode/storages.pm index 3749a5f15..334fed058 100644 --- a/src/os/windows/wsman/mode/storages.pm +++ b/src/os/windows/wsman/mode/storages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/time.pm b/src/os/windows/wsman/mode/time.pm index 7fb00c9bd..57915ea6f 100644 --- a/src/os/windows/wsman/mode/time.pm +++ b/src/os/windows/wsman/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/updates.pm b/src/os/windows/wsman/mode/updates.pm index 5862022a8..75391d177 100644 --- a/src/os/windows/wsman/mode/updates.pm +++ b/src/os/windows/wsman/mode/updates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/mode/uptime.pm b/src/os/windows/wsman/mode/uptime.pm index 3fe83e216..062bf3d09 100644 --- a/src/os/windows/wsman/mode/uptime.pm +++ b/src/os/windows/wsman/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/os/windows/wsman/plugin.pm b/src/os/windows/wsman/plugin.pm index 4cc011629..9bce2b863 100644 --- a/src/os/windows/wsman/plugin.pm +++ b/src/os/windows/wsman/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/arp.pm b/src/snmp_standard/mode/arp.pm index 0e6c6cf04..34fdd434c 100644 --- a/src/snmp_standard/mode/arp.pm +++ b/src/snmp_standard/mode/arp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/cpu.pm b/src/snmp_standard/mode/cpu.pm index 2ec2e3dbd..8c43f2e86 100644 --- a/src/snmp_standard/mode/cpu.pm +++ b/src/snmp_standard/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -138,7 +138,7 @@ of time that this processor was not idle) =item B<--use-ucd> -Use UCD mib for cpu average. +Use UCD mib for CPU average. =item B<--warning-average> diff --git a/src/snmp_standard/mode/cpudetailed.pm b/src/snmp_standard/mode/cpudetailed.pm index 2452ffb2d..f5d9cd3aa 100644 --- a/src/snmp_standard/mode/cpudetailed.pm +++ b/src/snmp_standard/mode/cpudetailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/discovery.pm b/src/snmp_standard/mode/discovery.pm index dfbb8fbfa..52bdbc204 100644 --- a/src/snmp_standard/mode/discovery.pm +++ b/src/snmp_standard/mode/discovery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/diskio.pm b/src/snmp_standard/mode/diskio.pm index c565b9aec..7138101e0 100644 --- a/src/snmp_standard/mode/diskio.pm +++ b/src/snmp_standard/mode/diskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/diskusage.pm b/src/snmp_standard/mode/diskusage.pm index 3f5e69847..23f42981a 100644 --- a/src/snmp_standard/mode/diskusage.pm +++ b/src/snmp_standard/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -400,7 +400,7 @@ Example: adding --display-transform-src='dev' --display-transform-dst='run' wil =item B<--show-cache> -Display cache disk path datas. +Display cache disk path data. =item B<--space-reservation> diff --git a/src/snmp_standard/mode/dynamiccommand.pm b/src/snmp_standard/mode/dynamiccommand.pm index 2ab44e67d..36d30a12e 100644 --- a/src/snmp_standard/mode/dynamiccommand.pm +++ b/src/snmp_standard/mode/dynamiccommand.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/entity.pm b/src/snmp_standard/mode/entity.pm index 8681f9a56..93de13491 100644 --- a/src/snmp_standard/mode/entity.pm +++ b/src/snmp_standard/mode/entity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/hardwaredevice.pm b/src/snmp_standard/mode/hardwaredevice.pm index 155458a2b..fe5ef18ff 100644 --- a/src/snmp_standard/mode/hardwaredevice.pm +++ b/src/snmp_standard/mode/hardwaredevice.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/hardwarefibrealliance.pm b/src/snmp_standard/mode/hardwarefibrealliance.pm index 26ca884db..b6fcef71e 100644 --- a/src/snmp_standard/mode/hardwarefibrealliance.pm +++ b/src/snmp_standard/mode/hardwarefibrealliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/inodes.pm b/src/snmp_standard/mode/inodes.pm index 90a9ba308..b17974edc 100644 --- a/src/snmp_standard/mode/inodes.pm +++ b/src/snmp_standard/mode/inodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/interfaces.pm b/src/snmp_standard/mode/interfaces.pm index 362c311d4..c5bd5de15 100644 --- a/src/snmp_standard/mode/interfaces.pm +++ b/src/snmp_standard/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -1745,7 +1745,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/snmp_standard/mode/isdnusage.pm b/src/snmp_standard/mode/isdnusage.pm index 0c468d1a4..8f44ec556 100644 --- a/src/snmp_standard/mode/isdnusage.pm +++ b/src/snmp_standard/mode/isdnusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/listdiskio.pm b/src/snmp_standard/mode/listdiskio.pm index 9a97b42e5..b8ca30a2a 100644 --- a/src/snmp_standard/mode/listdiskio.pm +++ b/src/snmp_standard/mode/listdiskio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/listdiskspath.pm b/src/snmp_standard/mode/listdiskspath.pm index 37ea37ccb..ec934c14c 100644 --- a/src/snmp_standard/mode/listdiskspath.pm +++ b/src/snmp_standard/mode/listdiskspath.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/listinterfaces.pm b/src/snmp_standard/mode/listinterfaces.pm index cc890addd..3e4bfd587 100644 --- a/src/snmp_standard/mode/listinterfaces.pm +++ b/src/snmp_standard/mode/listinterfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/listprocesses.pm b/src/snmp_standard/mode/listprocesses.pm index f472a8b9b..cf6a62ffe 100644 --- a/src/snmp_standard/mode/listprocesses.pm +++ b/src/snmp_standard/mode/listprocesses.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -163,7 +163,7 @@ Filter by service name (can be a regexp). =item B<--add-stats> -Add cpu and memory stats. +Add CPU and memory stats. =back diff --git a/src/snmp_standard/mode/listspanningtrees.pm b/src/snmp_standard/mode/listspanningtrees.pm index c28a585e2..f45757457 100644 --- a/src/snmp_standard/mode/listspanningtrees.pm +++ b/src/snmp_standard/mode/listspanningtrees.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/liststorages.pm b/src/snmp_standard/mode/liststorages.pm index 285bd6819..3513598a1 100644 --- a/src/snmp_standard/mode/liststorages.pm +++ b/src/snmp_standard/mode/liststorages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/loadaverage.pm b/src/snmp_standard/mode/loadaverage.pm index cc46ef8b1..0b61ba2b9 100644 --- a/src/snmp_standard/mode/loadaverage.pm +++ b/src/snmp_standard/mode/loadaverage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/memory.pm b/src/snmp_standard/mode/memory.pm index 988168c81..9767e4619 100644 --- a/src/snmp_standard/mode/memory.pm +++ b/src/snmp_standard/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/mtausage.pm b/src/snmp_standard/mode/mtausage.pm index b217b446f..e47c42055 100644 --- a/src/snmp_standard/mode/mtausage.pm +++ b/src/snmp_standard/mode/mtausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/ntp.pm b/src/snmp_standard/mode/ntp.pm index a2f80d0cc..52f14e7c8 100644 --- a/src/snmp_standard/mode/ntp.pm +++ b/src/snmp_standard/mode/ntp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/numericvalue.pm b/src/snmp_standard/mode/numericvalue.pm index 10f16c0d0..91303bd13 100644 --- a/src/snmp_standard/mode/numericvalue.pm +++ b/src/snmp_standard/mode/numericvalue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/printererror.pm b/src/snmp_standard/mode/printererror.pm index b5e9e9b36..ca404b256 100644 --- a/src/snmp_standard/mode/printererror.pm +++ b/src/snmp_standard/mode/printererror.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/processcount.pm b/src/snmp_standard/mode/processcount.pm index 0e0de3322..c19273c86 100644 --- a/src/snmp_standard/mode/processcount.pm +++ b/src/snmp_standard/mode/processcount.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -284,7 +284,7 @@ sub run { min => 0); } - # Check cpu + # Check CPU if (defined($self->{option_results}->{cpu}) && $num_processes_match > 0) { my $datas = {}; $datas->{last_timestamp} = time(); @@ -354,7 +354,7 @@ __END__ =head1 MODE Check system number of processes. -Can also check memory usage and cpu usage. +Can also check memory usage and CPU usage. =over 8 @@ -434,19 +434,19 @@ memory used by matching processes (in Bytes). =item B<--cpu> -Check cpu usage. Should be used with fix processes. +Check CPU usage. Should be used with fix processes. If processes pid changes too much, the plugin can't compute values. =item B<--warning-cpu-total> -Warning threshold of cpu usage for all processes (in percent). -CPU usage is in % of one cpu, so maximum can be 100% * number of CPU +Warning threshold of CPU usage for all processes (in percent). +CPU usage is in % of one CPU, so maximum can be 100% * number of CPU and a process can have a value greater than 100%. =item B<--critical-cpu-total> -Critical threshold of cpu usage for all processes (in percent). -CPU usage is in % of one cpu, so maximum can be 100% * number of CPU +Critical threshold of CPU usage for all processes (in percent). +CPU usage is in % of one CPU, so maximum can be 100% * number of CPU and a process can have a value greater than 100%. =item B<--top> diff --git a/src/snmp_standard/mode/resources/types.pm b/src/snmp_standard/mode/resources/types.pm index 2184f623d..94f45c45a 100644 --- a/src/snmp_standard/mode/resources/types.pm +++ b/src/snmp_standard/mode/resources/types.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/spanningtree.pm b/src/snmp_standard/mode/spanningtree.pm index 9f4292333..0aa7d9166 100644 --- a/src/snmp_standard/mode/spanningtree.pm +++ b/src/snmp_standard/mode/spanningtree.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/storage.pm b/src/snmp_standard/mode/storage.pm index 0b0087cc3..6eca26d92 100644 --- a/src/snmp_standard/mode/storage.pm +++ b/src/snmp_standard/mode/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -673,7 +673,7 @@ Example: adding --display-transform-src='dev' --display-transform-dst='run' wil =item B<--show-cache> -Display cache storage datas. +Display cache storage data. =item B<--space-reservation> diff --git a/src/snmp_standard/mode/stringvalue.pm b/src/snmp_standard/mode/stringvalue.pm index 6d09a8706..378b11b79 100644 --- a/src/snmp_standard/mode/stringvalue.pm +++ b/src/snmp_standard/mode/stringvalue.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/swap.pm b/src/snmp_standard/mode/swap.pm index e31c78488..cb6b34518 100644 --- a/src/snmp_standard/mode/swap.pm +++ b/src/snmp_standard/mode/swap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/tcpcon.pm b/src/snmp_standard/mode/tcpcon.pm index b578c1898..86a4ed10a 100644 --- a/src/snmp_standard/mode/tcpcon.pm +++ b/src/snmp_standard/mode/tcpcon.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/udpcon.pm b/src/snmp_standard/mode/udpcon.pm index b3325570b..5e2a4f71a 100644 --- a/src/snmp_standard/mode/udpcon.pm +++ b/src/snmp_standard/mode/udpcon.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/uptime.pm b/src/snmp_standard/mode/uptime.pm index 7aca14ac2..303f821c8 100644 --- a/src/snmp_standard/mode/uptime.pm +++ b/src/snmp_standard/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/snmp_standard/mode/vrrp.pm b/src/snmp_standard/mode/vrrp.pm index 1b54df586..05dbe5d59 100644 --- a/src/snmp_standard/mode/vrrp.pm +++ b/src/snmp_standard/mode/vrrp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/adic/tape/snmp/plugin.pm b/src/storage/adic/tape/snmp/plugin.pm index e760e1ad8..23c769614 100644 --- a/src/storage/adic/tape/snmp/plugin.pm +++ b/src/storage/adic/tape/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/avid/isis/snmp/mode/performance.pm b/src/storage/avid/isis/snmp/mode/performance.pm index 35d1f323c..5af20bf19 100644 --- a/src/storage/avid/isis/snmp/mode/performance.pm +++ b/src/storage/avid/isis/snmp/mode/performance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/avid/isis/snmp/mode/status.pm b/src/storage/avid/isis/snmp/mode/status.pm index 2c7333b17..a681cf37e 100644 --- a/src/storage/avid/isis/snmp/mode/status.pm +++ b/src/storage/avid/isis/snmp/mode/status.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/avid/isis/snmp/mode/usage.pm b/src/storage/avid/isis/snmp/mode/usage.pm index d0c735cc9..4350d3ee0 100644 --- a/src/storage/avid/isis/snmp/mode/usage.pm +++ b/src/storage/avid/isis/snmp/mode/usage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/avid/isis/snmp/plugin.pm b/src/storage/avid/isis/snmp/plugin.pm index c2e87caa1..941c46914 100644 --- a/src/storage/avid/isis/snmp/plugin.pm +++ b/src/storage/avid/isis/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/bdt/multistak/snmp/mode/components/device.pm b/src/storage/bdt/multistak/snmp/mode/components/device.pm index 0ebd854f0..2538a8233 100644 --- a/src/storage/bdt/multistak/snmp/mode/components/device.pm +++ b/src/storage/bdt/multistak/snmp/mode/components/device.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/bdt/multistak/snmp/mode/components/module.pm b/src/storage/bdt/multistak/snmp/mode/components/module.pm index ee5940299..84cfbe9b6 100644 --- a/src/storage/bdt/multistak/snmp/mode/components/module.pm +++ b/src/storage/bdt/multistak/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/bdt/multistak/snmp/mode/hardware.pm b/src/storage/bdt/multistak/snmp/mode/hardware.pm index 6a3177d12..f6648b29b 100644 --- a/src/storage/bdt/multistak/snmp/mode/hardware.pm +++ b/src/storage/bdt/multistak/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/bdt/multistak/snmp/plugin.pm b/src/storage/bdt/multistak/snmp/plugin.pm index 5ba173e1e..2ce002ba5 100644 --- a/src/storage/bdt/multistak/snmp/plugin.pm +++ b/src/storage/bdt/multistak/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/buffalo/terastation/snmp/mode/arrayusage.pm b/src/storage/buffalo/terastation/snmp/mode/arrayusage.pm index adb30eb8f..828d035b9 100644 --- a/src/storage/buffalo/terastation/snmp/mode/arrayusage.pm +++ b/src/storage/buffalo/terastation/snmp/mode/arrayusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/buffalo/terastation/snmp/mode/components/disk.pm b/src/storage/buffalo/terastation/snmp/mode/components/disk.pm index b7476d720..daf6e3865 100644 --- a/src/storage/buffalo/terastation/snmp/mode/components/disk.pm +++ b/src/storage/buffalo/terastation/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/buffalo/terastation/snmp/mode/components/iscsi.pm b/src/storage/buffalo/terastation/snmp/mode/components/iscsi.pm index 133d79f0f..6806000d9 100644 --- a/src/storage/buffalo/terastation/snmp/mode/components/iscsi.pm +++ b/src/storage/buffalo/terastation/snmp/mode/components/iscsi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/buffalo/terastation/snmp/mode/components/psu.pm b/src/storage/buffalo/terastation/snmp/mode/components/psu.pm index 1de352f6f..7b2034f86 100644 --- a/src/storage/buffalo/terastation/snmp/mode/components/psu.pm +++ b/src/storage/buffalo/terastation/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/buffalo/terastation/snmp/mode/hardware.pm b/src/storage/buffalo/terastation/snmp/mode/hardware.pm index 44c344ac8..30a645f5e 100644 --- a/src/storage/buffalo/terastation/snmp/mode/hardware.pm +++ b/src/storage/buffalo/terastation/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/buffalo/terastation/snmp/plugin.pm b/src/storage/buffalo/terastation/snmp/plugin.pm index 3e3456756..929f959b0 100644 --- a/src/storage/buffalo/terastation/snmp/plugin.pm +++ b/src/storage/buffalo/terastation/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/MD3000/cli/custom/cli.pm b/src/storage/dell/MD3000/cli/custom/cli.pm index 0d15afd8d..725d6b8b0 100644 --- a/src/storage/dell/MD3000/cli/custom/cli.pm +++ b/src/storage/dell/MD3000/cli/custom/cli.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/MD3000/cli/plugin.pm b/src/storage/dell/MD3000/cli/plugin.pm index 997745bc3..f9ec2b6b3 100644 --- a/src/storage/dell/MD3000/cli/plugin.pm +++ b/src/storage/dell/MD3000/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/TL2000/mode/globalstatus.pm b/src/storage/dell/TL2000/mode/globalstatus.pm index 55fb81d18..6c6d5c0dc 100644 --- a/src/storage/dell/TL2000/mode/globalstatus.pm +++ b/src/storage/dell/TL2000/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/TL2000/plugin.pm b/src/storage/dell/TL2000/plugin.pm index 01138b4ca..1aa6079a4 100644 --- a/src/storage/dell/TL2000/plugin.pm +++ b/src/storage/dell/TL2000/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/local/mode/hbausage.pm b/src/storage/dell/compellent/local/mode/hbausage.pm index b852d4e50..b1fe335ff 100644 --- a/src/storage/dell/compellent/local/mode/hbausage.pm +++ b/src/storage/dell/compellent/local/mode/hbausage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/local/mode/volumeusage.pm b/src/storage/dell/compellent/local/mode/volumeusage.pm index 8e549f07d..9cf599a8d 100644 --- a/src/storage/dell/compellent/local/mode/volumeusage.pm +++ b/src/storage/dell/compellent/local/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/local/plugin.pm b/src/storage/dell/compellent/local/plugin.pm index 1be306fa4..523b78b8f 100644 --- a/src/storage/dell/compellent/local/plugin.pm +++ b/src/storage/dell/compellent/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/cache.pm b/src/storage/dell/compellent/snmp/mode/components/cache.pm index 0cfeb7dd9..c27498847 100644 --- a/src/storage/dell/compellent/snmp/mode/components/cache.pm +++ b/src/storage/dell/compellent/snmp/mode/components/cache.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/ctrl.pm b/src/storage/dell/compellent/snmp/mode/components/ctrl.pm index 376e559d4..7a73690ac 100644 --- a/src/storage/dell/compellent/snmp/mode/components/ctrl.pm +++ b/src/storage/dell/compellent/snmp/mode/components/ctrl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/ctrlfan.pm b/src/storage/dell/compellent/snmp/mode/components/ctrlfan.pm index e04236352..866ddec35 100644 --- a/src/storage/dell/compellent/snmp/mode/components/ctrlfan.pm +++ b/src/storage/dell/compellent/snmp/mode/components/ctrlfan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/ctrlpower.pm b/src/storage/dell/compellent/snmp/mode/components/ctrlpower.pm index ee5f40285..40654e3d8 100644 --- a/src/storage/dell/compellent/snmp/mode/components/ctrlpower.pm +++ b/src/storage/dell/compellent/snmp/mode/components/ctrlpower.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/ctrltemp.pm b/src/storage/dell/compellent/snmp/mode/components/ctrltemp.pm index 36808a007..b48fa364d 100644 --- a/src/storage/dell/compellent/snmp/mode/components/ctrltemp.pm +++ b/src/storage/dell/compellent/snmp/mode/components/ctrltemp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/ctrlvoltage.pm b/src/storage/dell/compellent/snmp/mode/components/ctrlvoltage.pm index 6e49d5877..42222aec6 100644 --- a/src/storage/dell/compellent/snmp/mode/components/ctrlvoltage.pm +++ b/src/storage/dell/compellent/snmp/mode/components/ctrlvoltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/disk.pm b/src/storage/dell/compellent/snmp/mode/components/disk.pm index 961862a76..a696afd84 100644 --- a/src/storage/dell/compellent/snmp/mode/components/disk.pm +++ b/src/storage/dell/compellent/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/diskfolder.pm b/src/storage/dell/compellent/snmp/mode/components/diskfolder.pm index be7d1cf1e..721afb8a3 100644 --- a/src/storage/dell/compellent/snmp/mode/components/diskfolder.pm +++ b/src/storage/dell/compellent/snmp/mode/components/diskfolder.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/encl.pm b/src/storage/dell/compellent/snmp/mode/components/encl.pm index bddf828fa..ff0c32129 100644 --- a/src/storage/dell/compellent/snmp/mode/components/encl.pm +++ b/src/storage/dell/compellent/snmp/mode/components/encl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/enclfan.pm b/src/storage/dell/compellent/snmp/mode/components/enclfan.pm index 46118c46c..4d6275c83 100644 --- a/src/storage/dell/compellent/snmp/mode/components/enclfan.pm +++ b/src/storage/dell/compellent/snmp/mode/components/enclfan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/encliomod.pm b/src/storage/dell/compellent/snmp/mode/components/encliomod.pm index 057d9268a..3f2423ca1 100644 --- a/src/storage/dell/compellent/snmp/mode/components/encliomod.pm +++ b/src/storage/dell/compellent/snmp/mode/components/encliomod.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/enclpower.pm b/src/storage/dell/compellent/snmp/mode/components/enclpower.pm index ebff6841e..9f80ead97 100644 --- a/src/storage/dell/compellent/snmp/mode/components/enclpower.pm +++ b/src/storage/dell/compellent/snmp/mode/components/enclpower.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/encltemp.pm b/src/storage/dell/compellent/snmp/mode/components/encltemp.pm index 57ca0d698..ef15da8e6 100644 --- a/src/storage/dell/compellent/snmp/mode/components/encltemp.pm +++ b/src/storage/dell/compellent/snmp/mode/components/encltemp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/resources.pm b/src/storage/dell/compellent/snmp/mode/components/resources.pm index 2e0203a3e..732857271 100644 --- a/src/storage/dell/compellent/snmp/mode/components/resources.pm +++ b/src/storage/dell/compellent/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/sc.pm b/src/storage/dell/compellent/snmp/mode/components/sc.pm index 883f82350..061e92f7b 100644 --- a/src/storage/dell/compellent/snmp/mode/components/sc.pm +++ b/src/storage/dell/compellent/snmp/mode/components/sc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/server.pm b/src/storage/dell/compellent/snmp/mode/components/server.pm index 20d5a9eba..4da3a7c98 100644 --- a/src/storage/dell/compellent/snmp/mode/components/server.pm +++ b/src/storage/dell/compellent/snmp/mode/components/server.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/components/volume.pm b/src/storage/dell/compellent/snmp/mode/components/volume.pm index 8ad441ff6..b8097d913 100644 --- a/src/storage/dell/compellent/snmp/mode/components/volume.pm +++ b/src/storage/dell/compellent/snmp/mode/components/volume.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/globalstatus.pm b/src/storage/dell/compellent/snmp/mode/globalstatus.pm index a100e5050..63e595db6 100644 --- a/src/storage/dell/compellent/snmp/mode/globalstatus.pm +++ b/src/storage/dell/compellent/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/mode/hardware.pm b/src/storage/dell/compellent/snmp/mode/hardware.pm index d33009c42..95a268d7d 100644 --- a/src/storage/dell/compellent/snmp/mode/hardware.pm +++ b/src/storage/dell/compellent/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/compellent/snmp/plugin.pm b/src/storage/dell/compellent/snmp/plugin.pm index 58cf07d10..d95103f07 100644 --- a/src/storage/dell/compellent/snmp/plugin.pm +++ b/src/storage/dell/compellent/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/arrayusage.pm b/src/storage/dell/equallogic/snmp/mode/arrayusage.pm index 26c33c71f..db261bb6c 100644 --- a/src/storage/dell/equallogic/snmp/mode/arrayusage.pm +++ b/src/storage/dell/equallogic/snmp/mode/arrayusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/components/disk.pm b/src/storage/dell/equallogic/snmp/mode/components/disk.pm index 8c52a7811..bd4588f33 100644 --- a/src/storage/dell/equallogic/snmp/mode/components/disk.pm +++ b/src/storage/dell/equallogic/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/components/fan.pm b/src/storage/dell/equallogic/snmp/mode/components/fan.pm index 4d8bd879e..0b7db138a 100644 --- a/src/storage/dell/equallogic/snmp/mode/components/fan.pm +++ b/src/storage/dell/equallogic/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/components/health.pm b/src/storage/dell/equallogic/snmp/mode/components/health.pm index 4e3a7c85f..bfee03ac1 100644 --- a/src/storage/dell/equallogic/snmp/mode/components/health.pm +++ b/src/storage/dell/equallogic/snmp/mode/components/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/components/psu.pm b/src/storage/dell/equallogic/snmp/mode/components/psu.pm index 59f30f7a2..8f7e2265c 100644 --- a/src/storage/dell/equallogic/snmp/mode/components/psu.pm +++ b/src/storage/dell/equallogic/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/components/raid.pm b/src/storage/dell/equallogic/snmp/mode/components/raid.pm index 2e8d2ce94..1e6391668 100644 --- a/src/storage/dell/equallogic/snmp/mode/components/raid.pm +++ b/src/storage/dell/equallogic/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/components/temperature.pm b/src/storage/dell/equallogic/snmp/mode/components/temperature.pm index 0a8aed082..9c82df118 100644 --- a/src/storage/dell/equallogic/snmp/mode/components/temperature.pm +++ b/src/storage/dell/equallogic/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/diskusage.pm b/src/storage/dell/equallogic/snmp/mode/diskusage.pm index 738348ee3..9ffa8bb20 100644 --- a/src/storage/dell/equallogic/snmp/mode/diskusage.pm +++ b/src/storage/dell/equallogic/snmp/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/hardware.pm b/src/storage/dell/equallogic/snmp/mode/hardware.pm index 3d599a11b..6ac0f7725 100644 --- a/src/storage/dell/equallogic/snmp/mode/hardware.pm +++ b/src/storage/dell/equallogic/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/mode/poolusage.pm b/src/storage/dell/equallogic/snmp/mode/poolusage.pm index 20eb6f31b..d02a12915 100644 --- a/src/storage/dell/equallogic/snmp/mode/poolusage.pm +++ b/src/storage/dell/equallogic/snmp/mode/poolusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/equallogic/snmp/plugin.pm b/src/storage/dell/equallogic/snmp/plugin.pm index 0d07cd141..c673d9d53 100644 --- a/src/storage/dell/equallogic/snmp/plugin.pm +++ b/src/storage/dell/equallogic/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/mode/components/ad.pm b/src/storage/dell/fluidfs/snmp/mode/components/ad.pm index 5acd73fc3..4bd730233 100644 --- a/src/storage/dell/fluidfs/snmp/mode/components/ad.pm +++ b/src/storage/dell/fluidfs/snmp/mode/components/ad.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/mode/components/extservers.pm b/src/storage/dell/fluidfs/snmp/mode/components/extservers.pm index 32eee2074..cbab0f65e 100644 --- a/src/storage/dell/fluidfs/snmp/mode/components/extservers.pm +++ b/src/storage/dell/fluidfs/snmp/mode/components/extservers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/mode/components/overall.pm b/src/storage/dell/fluidfs/snmp/mode/components/overall.pm index 0e9942221..d066fc3a5 100644 --- a/src/storage/dell/fluidfs/snmp/mode/components/overall.pm +++ b/src/storage/dell/fluidfs/snmp/mode/components/overall.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/mode/components/substorage.pm b/src/storage/dell/fluidfs/snmp/mode/components/substorage.pm index af1eeeba3..fd75bea45 100644 --- a/src/storage/dell/fluidfs/snmp/mode/components/substorage.pm +++ b/src/storage/dell/fluidfs/snmp/mode/components/substorage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/mode/hardware.pm b/src/storage/dell/fluidfs/snmp/mode/hardware.pm index cc94637fc..2038a139d 100644 --- a/src/storage/dell/fluidfs/snmp/mode/hardware.pm +++ b/src/storage/dell/fluidfs/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/mode/volumeusage.pm b/src/storage/dell/fluidfs/snmp/mode/volumeusage.pm index e5228cbb8..9b1b9ffe8 100644 --- a/src/storage/dell/fluidfs/snmp/mode/volumeusage.pm +++ b/src/storage/dell/fluidfs/snmp/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/fluidfs/snmp/plugin.pm b/src/storage/dell/fluidfs/snmp/plugin.pm index 0c1369ad5..a85365e20 100644 --- a/src/storage/dell/fluidfs/snmp/plugin.pm +++ b/src/storage/dell/fluidfs/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/custom/api.pm b/src/storage/dell/me4/restapi/custom/api.pm index be61b8f49..5ab192f66 100644 --- a/src/storage/dell/me4/restapi/custom/api.pm +++ b/src/storage/dell/me4/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/controller.pm b/src/storage/dell/me4/restapi/mode/components/controller.pm index a67f99392..5de3e74f6 100644 --- a/src/storage/dell/me4/restapi/mode/components/controller.pm +++ b/src/storage/dell/me4/restapi/mode/components/controller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/disk.pm b/src/storage/dell/me4/restapi/mode/components/disk.pm index 3ea32b049..6e6702de8 100644 --- a/src/storage/dell/me4/restapi/mode/components/disk.pm +++ b/src/storage/dell/me4/restapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/fan.pm b/src/storage/dell/me4/restapi/mode/components/fan.pm index ec185156e..738493624 100644 --- a/src/storage/dell/me4/restapi/mode/components/fan.pm +++ b/src/storage/dell/me4/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/fru.pm b/src/storage/dell/me4/restapi/mode/components/fru.pm index b33b24748..2d8ae82c2 100644 --- a/src/storage/dell/me4/restapi/mode/components/fru.pm +++ b/src/storage/dell/me4/restapi/mode/components/fru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/psu.pm b/src/storage/dell/me4/restapi/mode/components/psu.pm index 72dd08cdc..1bcce8d5d 100644 --- a/src/storage/dell/me4/restapi/mode/components/psu.pm +++ b/src/storage/dell/me4/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/sensor.pm b/src/storage/dell/me4/restapi/mode/components/sensor.pm index 6e872c5b9..9353225cc 100644 --- a/src/storage/dell/me4/restapi/mode/components/sensor.pm +++ b/src/storage/dell/me4/restapi/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/components/volume.pm b/src/storage/dell/me4/restapi/mode/components/volume.pm index a5bbcc803..8ee7fbae5 100644 --- a/src/storage/dell/me4/restapi/mode/components/volume.pm +++ b/src/storage/dell/me4/restapi/mode/components/volume.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/controllerstatistics.pm b/src/storage/dell/me4/restapi/mode/controllerstatistics.pm index 8f7d15797..9623f72ec 100644 --- a/src/storage/dell/me4/restapi/mode/controllerstatistics.pm +++ b/src/storage/dell/me4/restapi/mode/controllerstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/hardware.pm b/src/storage/dell/me4/restapi/mode/hardware.pm index 58e7fa554..3c1d5fd08 100644 --- a/src/storage/dell/me4/restapi/mode/hardware.pm +++ b/src/storage/dell/me4/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/interfaces.pm b/src/storage/dell/me4/restapi/mode/interfaces.pm index f6063af3e..f48a09e32 100644 --- a/src/storage/dell/me4/restapi/mode/interfaces.pm +++ b/src/storage/dell/me4/restapi/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/listcontrollers.pm b/src/storage/dell/me4/restapi/mode/listcontrollers.pm index 1ea93099e..2f78e9c9d 100644 --- a/src/storage/dell/me4/restapi/mode/listcontrollers.pm +++ b/src/storage/dell/me4/restapi/mode/listcontrollers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/listvolumes.pm b/src/storage/dell/me4/restapi/mode/listvolumes.pm index fc4865c38..4bb2af289 100644 --- a/src/storage/dell/me4/restapi/mode/listvolumes.pm +++ b/src/storage/dell/me4/restapi/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/mode/volumestatistics.pm b/src/storage/dell/me4/restapi/mode/volumestatistics.pm index f6da435c8..d614a4201 100644 --- a/src/storage/dell/me4/restapi/mode/volumestatistics.pm +++ b/src/storage/dell/me4/restapi/mode/volumestatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/me4/restapi/plugin.pm b/src/storage/dell/me4/restapi/plugin.pm index 9779f2fdf..6a6ad3806 100644 --- a/src/storage/dell/me4/restapi/plugin.pm +++ b/src/storage/dell/me4/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/ml6000/snmp/plugin.pm b/src/storage/dell/ml6000/snmp/plugin.pm index 74738f1e1..26bf41924 100644 --- a/src/storage/dell/ml6000/snmp/plugin.pm +++ b/src/storage/dell/ml6000/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/custom/api.pm b/src/storage/dell/powerstore/restapi/custom/api.pm index 34edfe521..81eed1c6c 100644 --- a/src/storage/dell/powerstore/restapi/custom/api.pm +++ b/src/storage/dell/powerstore/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/clusters.pm b/src/storage/dell/powerstore/restapi/mode/clusters.pm index 09128a2b1..2ece865b1 100644 --- a/src/storage/dell/powerstore/restapi/mode/clusters.pm +++ b/src/storage/dell/powerstore/restapi/mode/clusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/appliance.pm b/src/storage/dell/powerstore/restapi/mode/components/appliance.pm index a2e079d99..19fdd9373 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/appliance.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/appliance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/battery.pm b/src/storage/dell/powerstore/restapi/mode/components/battery.pm index 4338639e7..64a4f7ca0 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/battery.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/dimm.pm b/src/storage/dell/powerstore/restapi/mode/components/dimm.pm index c26a1718e..eb2ff2a8c 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/dimm.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/dimm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/disk.pm b/src/storage/dell/powerstore/restapi/mode/components/disk.pm index 2fdef0b5f..dd05a90ff 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/disk.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/enclosure.pm b/src/storage/dell/powerstore/restapi/mode/components/enclosure.pm index dd2f17e72..f6e983527 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/enclosure.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/fan.pm b/src/storage/dell/powerstore/restapi/mode/components/fan.pm index 0cf0e2237..5bd86440b 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/fan.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/iomodule.pm b/src/storage/dell/powerstore/restapi/mode/components/iomodule.pm index 8cb71a6bb..f524265a2 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/iomodule.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/iomodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/node.pm b/src/storage/dell/powerstore/restapi/mode/components/node.pm index 2d5211af5..b0072dc48 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/node.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/node.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/psu.pm b/src/storage/dell/powerstore/restapi/mode/components/psu.pm index 25062198b..ca8854b81 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/psu.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/resources.pm b/src/storage/dell/powerstore/restapi/mode/components/resources.pm index 9d956479b..67785ccf0 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/resources.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/components/sfp.pm b/src/storage/dell/powerstore/restapi/mode/components/sfp.pm index 86defc154..20aa3a1cb 100644 --- a/src/storage/dell/powerstore/restapi/mode/components/sfp.pm +++ b/src/storage/dell/powerstore/restapi/mode/components/sfp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/hardware.pm b/src/storage/dell/powerstore/restapi/mode/hardware.pm index 9afd59f66..26dfde489 100644 --- a/src/storage/dell/powerstore/restapi/mode/hardware.pm +++ b/src/storage/dell/powerstore/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/mode/memory.pm b/src/storage/dell/powerstore/restapi/mode/memory.pm index b0208e4c3..5a4496338 100644 --- a/src/storage/dell/powerstore/restapi/mode/memory.pm +++ b/src/storage/dell/powerstore/restapi/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/dell/powerstore/restapi/plugin.pm b/src/storage/dell/powerstore/restapi/plugin.pm index 313aa451e..769cabfdc 100644 --- a/src/storage/dell/powerstore/restapi/plugin.pm +++ b/src/storage/dell/powerstore/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/lib/functions.pm b/src/storage/emc/DataDomain/lib/functions.pm index c86fa3a18..8ff6832b0 100644 --- a/src/storage/emc/DataDomain/lib/functions.pm +++ b/src/storage/emc/DataDomain/lib/functions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/components/battery.pm b/src/storage/emc/DataDomain/mode/components/battery.pm index eff8ac677..6663976f0 100644 --- a/src/storage/emc/DataDomain/mode/components/battery.pm +++ b/src/storage/emc/DataDomain/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/components/disk.pm b/src/storage/emc/DataDomain/mode/components/disk.pm index 963d737dd..cf6e3903b 100644 --- a/src/storage/emc/DataDomain/mode/components/disk.pm +++ b/src/storage/emc/DataDomain/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/components/fan.pm b/src/storage/emc/DataDomain/mode/components/fan.pm index ea3c45cdb..c047011e3 100644 --- a/src/storage/emc/DataDomain/mode/components/fan.pm +++ b/src/storage/emc/DataDomain/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/components/psu.pm b/src/storage/emc/DataDomain/mode/components/psu.pm index 2094cb2d4..df8a6da0f 100644 --- a/src/storage/emc/DataDomain/mode/components/psu.pm +++ b/src/storage/emc/DataDomain/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/components/temperature.pm b/src/storage/emc/DataDomain/mode/components/temperature.pm index 803c938da..456f5104e 100644 --- a/src/storage/emc/DataDomain/mode/components/temperature.pm +++ b/src/storage/emc/DataDomain/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/filesystem.pm b/src/storage/emc/DataDomain/mode/filesystem.pm index 73a572113..bb8126060 100644 --- a/src/storage/emc/DataDomain/mode/filesystem.pm +++ b/src/storage/emc/DataDomain/mode/filesystem.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/hardware.pm b/src/storage/emc/DataDomain/mode/hardware.pm index d9f32ccf8..4b505b576 100644 --- a/src/storage/emc/DataDomain/mode/hardware.pm +++ b/src/storage/emc/DataDomain/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/mode/replication.pm b/src/storage/emc/DataDomain/mode/replication.pm index 9bf6c4184..5ac2e4302 100644 --- a/src/storage/emc/DataDomain/mode/replication.pm +++ b/src/storage/emc/DataDomain/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/DataDomain/plugin.pm b/src/storage/emc/DataDomain/plugin.pm index 8f10f64d9..ca9568f56 100644 --- a/src/storage/emc/DataDomain/plugin.pm +++ b/src/storage/emc/DataDomain/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/celerra/local/mode/components/controlstation.pm b/src/storage/emc/celerra/local/mode/components/controlstation.pm index 1a5c4117a..8c5b10cda 100644 --- a/src/storage/emc/celerra/local/mode/components/controlstation.pm +++ b/src/storage/emc/celerra/local/mode/components/controlstation.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/celerra/local/mode/components/datamover.pm b/src/storage/emc/celerra/local/mode/components/datamover.pm index 6e51f31d1..92d426eb0 100644 --- a/src/storage/emc/celerra/local/mode/components/datamover.pm +++ b/src/storage/emc/celerra/local/mode/components/datamover.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/celerra/local/mode/filesystems.pm b/src/storage/emc/celerra/local/mode/filesystems.pm index f2b55dfa3..7114be06f 100644 --- a/src/storage/emc/celerra/local/mode/filesystems.pm +++ b/src/storage/emc/celerra/local/mode/filesystems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/celerra/local/mode/getreason.pm b/src/storage/emc/celerra/local/mode/getreason.pm index f0299211a..1a1e83d24 100644 --- a/src/storage/emc/celerra/local/mode/getreason.pm +++ b/src/storage/emc/celerra/local/mode/getreason.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/celerra/local/mode/pools.pm b/src/storage/emc/celerra/local/mode/pools.pm index d65b7020e..548a15cca 100644 --- a/src/storage/emc/celerra/local/mode/pools.pm +++ b/src/storage/emc/celerra/local/mode/pools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/celerra/local/plugin.pm b/src/storage/emc/celerra/local/plugin.pm index a155834f2..bdd5335b9 100644 --- a/src/storage/emc/celerra/local/plugin.pm +++ b/src/storage/emc/celerra/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/clariion/plugin.pm b/src/storage/emc/clariion/plugin.pm index b4263d73e..f17b7de51 100644 --- a/src/storage/emc/clariion/plugin.pm +++ b/src/storage/emc/clariion/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/mode/clusterusage.pm b/src/storage/emc/isilon/snmp/mode/clusterusage.pm index 1d8bfa3c9..a4aa995ed 100644 --- a/src/storage/emc/isilon/snmp/mode/clusterusage.pm +++ b/src/storage/emc/isilon/snmp/mode/clusterusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/mode/components/disk.pm b/src/storage/emc/isilon/snmp/mode/components/disk.pm index 3d1681427..abcfbe05b 100644 --- a/src/storage/emc/isilon/snmp/mode/components/disk.pm +++ b/src/storage/emc/isilon/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/mode/components/fan.pm b/src/storage/emc/isilon/snmp/mode/components/fan.pm index d72b3841f..d6edd9731 100644 --- a/src/storage/emc/isilon/snmp/mode/components/fan.pm +++ b/src/storage/emc/isilon/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/mode/components/power.pm b/src/storage/emc/isilon/snmp/mode/components/power.pm index e52d121c0..52e0e95f5 100644 --- a/src/storage/emc/isilon/snmp/mode/components/power.pm +++ b/src/storage/emc/isilon/snmp/mode/components/power.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/mode/components/temperature.pm b/src/storage/emc/isilon/snmp/mode/components/temperature.pm index 4e089cfb7..fb212acac 100644 --- a/src/storage/emc/isilon/snmp/mode/components/temperature.pm +++ b/src/storage/emc/isilon/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/mode/hardware.pm b/src/storage/emc/isilon/snmp/mode/hardware.pm index 9cfee7abb..33568c494 100644 --- a/src/storage/emc/isilon/snmp/mode/hardware.pm +++ b/src/storage/emc/isilon/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/isilon/snmp/plugin.pm b/src/storage/emc/isilon/snmp/plugin.pm index 696253819..cb5a5f4f9 100644 --- a/src/storage/emc/isilon/snmp/plugin.pm +++ b/src/storage/emc/isilon/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/recoverypoint/ssh/mode/monitoredparameters.pm b/src/storage/emc/recoverypoint/ssh/mode/monitoredparameters.pm index 2738a0f25..c2db55302 100644 --- a/src/storage/emc/recoverypoint/ssh/mode/monitoredparameters.pm +++ b/src/storage/emc/recoverypoint/ssh/mode/monitoredparameters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/recoverypoint/ssh/mode/systemstatus.pm b/src/storage/emc/recoverypoint/ssh/mode/systemstatus.pm index a5f69d984..ace2b4710 100644 --- a/src/storage/emc/recoverypoint/ssh/mode/systemstatus.pm +++ b/src/storage/emc/recoverypoint/ssh/mode/systemstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/recoverypoint/ssh/plugin.pm b/src/storage/emc/recoverypoint/ssh/plugin.pm index 904f99083..6eed5f6e5 100644 --- a/src/storage/emc/recoverypoint/ssh/plugin.pm +++ b/src/storage/emc/recoverypoint/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/config.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/config.pm index 14884ebb2..1a2066670 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/config.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/config.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/director.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/director.pm index 0615525e6..edd308552 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/director.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/director.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/disk.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/disk.pm index 4fb64133b..5e7aaa3e6 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/disk.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/fru.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/fru.pm index 19061b844..e66965bed 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/fru.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/fru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/memory.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/memory.pm index cc102aa0a..8007234d0 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/memory.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/test.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/test.pm index cf71bc59b..785feafdb 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/test.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/test.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/components/xcm.pm b/src/storage/emc/symmetrix/dmx34/local/mode/components/xcm.pm index 7d14dcea6..72f02b6f1 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/components/xcm.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/components/xcm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/mode/hardware.pm b/src/storage/emc/symmetrix/dmx34/local/mode/hardware.pm index a633ce32f..b07da1dec 100644 --- a/src/storage/emc/symmetrix/dmx34/local/mode/hardware.pm +++ b/src/storage/emc/symmetrix/dmx34/local/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/dmx34/local/plugin.pm b/src/storage/emc/symmetrix/dmx34/local/plugin.pm index 3353a33a3..38334c494 100644 --- a/src/storage/emc/symmetrix/dmx34/local/plugin.pm +++ b/src/storage/emc/symmetrix/dmx34/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/cabling.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/cabling.pm index c62b96ee2..76af13a38 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/cabling.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/cabling.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/director.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/director.pm index 5c7429096..6897161c5 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/director.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/director.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/fabric.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/fabric.pm index 8761d2d4e..a110d6919 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/fabric.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/fabric.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/module.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/module.pm index aec281e5f..5177955ee 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/module.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/power.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/power.pm index 0352654c0..151463056 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/power.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/power.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/sparedisk.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/sparedisk.pm index 330ed0cb1..e504e6363 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/sparedisk.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/sparedisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/temperature.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/temperature.pm index 9336b6e14..663fd8ddd 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/temperature.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/components/voltage.pm b/src/storage/emc/symmetrix/vmax/local/mode/components/voltage.pm index d465d9a37..056c2dd93 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/components/voltage.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/mode/hardware.pm b/src/storage/emc/symmetrix/vmax/local/mode/hardware.pm index dd919be50..f3196339e 100644 --- a/src/storage/emc/symmetrix/vmax/local/mode/hardware.pm +++ b/src/storage/emc/symmetrix/vmax/local/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/symmetrix/vmax/local/plugin.pm b/src/storage/emc/symmetrix/vmax/local/plugin.pm index fa95f7bbe..951aeba03 100644 --- a/src/storage/emc/symmetrix/vmax/local/plugin.pm +++ b/src/storage/emc/symmetrix/vmax/local/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/custom/api.pm b/src/storage/emc/unisphere/restapi/custom/api.pm index e6648ce5c..8f35ff827 100644 --- a/src/storage/emc/unisphere/restapi/custom/api.pm +++ b/src/storage/emc/unisphere/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/battery.pm b/src/storage/emc/unisphere/restapi/mode/components/battery.pm index ec89ae5e0..a482ac293 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/battery.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/disk.pm b/src/storage/emc/unisphere/restapi/mode/components/disk.pm index 7ebce24c7..2dddb72b5 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/disk.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/dpe.pm b/src/storage/emc/unisphere/restapi/mode/components/dpe.pm index 5950bf8c5..a8ff039e0 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/dpe.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/dpe.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/fan.pm b/src/storage/emc/unisphere/restapi/mode/components/fan.pm index 950133da5..af075c2e4 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/fan.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/iomodule.pm b/src/storage/emc/unisphere/restapi/mode/components/iomodule.pm index 3f6a5c617..5b70d6772 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/iomodule.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/iomodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/memmodule.pm b/src/storage/emc/unisphere/restapi/mode/components/memmodule.pm index 382b12361..dca2a6ebe 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/memmodule.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/memmodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/psu.pm b/src/storage/emc/unisphere/restapi/mode/components/psu.pm index c5f557f02..174241f83 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/psu.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/resources.pm b/src/storage/emc/unisphere/restapi/mode/components/resources.pm index d3728c9ff..b648cbdf2 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/resources.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/sp.pm b/src/storage/emc/unisphere/restapi/mode/components/sp.pm index a6614cf7a..b5fbb1ce4 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/sp.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/sp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/components/ssd.pm b/src/storage/emc/unisphere/restapi/mode/components/ssd.pm index b7380aa7b..430818c2b 100644 --- a/src/storage/emc/unisphere/restapi/mode/components/ssd.pm +++ b/src/storage/emc/unisphere/restapi/mode/components/ssd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/hardware.pm b/src/storage/emc/unisphere/restapi/mode/hardware.pm index 225d2104b..2f46b94a1 100644 --- a/src/storage/emc/unisphere/restapi/mode/hardware.pm +++ b/src/storage/emc/unisphere/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/listpools.pm b/src/storage/emc/unisphere/restapi/mode/listpools.pm index 80da45f8c..c1d427c5a 100644 --- a/src/storage/emc/unisphere/restapi/mode/listpools.pm +++ b/src/storage/emc/unisphere/restapi/mode/listpools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/listreplications.pm b/src/storage/emc/unisphere/restapi/mode/listreplications.pm index df8b997ff..cdf8ed64f 100644 --- a/src/storage/emc/unisphere/restapi/mode/listreplications.pm +++ b/src/storage/emc/unisphere/restapi/mode/listreplications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/liststorageresources.pm b/src/storage/emc/unisphere/restapi/mode/liststorageresources.pm index 50af105b8..bf4f68b64 100644 --- a/src/storage/emc/unisphere/restapi/mode/liststorageresources.pm +++ b/src/storage/emc/unisphere/restapi/mode/liststorageresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/pools.pm b/src/storage/emc/unisphere/restapi/mode/pools.pm index c61e0de8c..2f45d85e3 100644 --- a/src/storage/emc/unisphere/restapi/mode/pools.pm +++ b/src/storage/emc/unisphere/restapi/mode/pools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/replications.pm b/src/storage/emc/unisphere/restapi/mode/replications.pm index 425c8ca3a..86a39e274 100644 --- a/src/storage/emc/unisphere/restapi/mode/replications.pm +++ b/src/storage/emc/unisphere/restapi/mode/replications.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/mode/storageresources.pm b/src/storage/emc/unisphere/restapi/mode/storageresources.pm index 8d64167a1..8d8a145dc 100644 --- a/src/storage/emc/unisphere/restapi/mode/storageresources.pm +++ b/src/storage/emc/unisphere/restapi/mode/storageresources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/unisphere/restapi/plugin.pm b/src/storage/emc/unisphere/restapi/plugin.pm index b0de75112..be96c21a0 100644 --- a/src/storage/emc/unisphere/restapi/plugin.pm +++ b/src/storage/emc/unisphere/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/custom/apiv1.pm b/src/storage/emc/vplex/restapi/custom/apiv1.pm index 8e3bc3c3c..209eb7fbc 100644 --- a/src/storage/emc/vplex/restapi/custom/apiv1.pm +++ b/src/storage/emc/vplex/restapi/custom/apiv1.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/custom/apiv2.pm b/src/storage/emc/vplex/restapi/custom/apiv2.pm index 607c6848f..095c844a0 100644 --- a/src/storage/emc/vplex/restapi/custom/apiv2.pm +++ b/src/storage/emc/vplex/restapi/custom/apiv2.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/clustercommunication.pm b/src/storage/emc/vplex/restapi/mode/clustercommunication.pm index d2d2008fa..d637d6d91 100644 --- a/src/storage/emc/vplex/restapi/mode/clustercommunication.pm +++ b/src/storage/emc/vplex/restapi/mode/clustercommunication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/clusterdevices.pm b/src/storage/emc/vplex/restapi/mode/clusterdevices.pm index 3f7d58ea6..d75cb6421 100644 --- a/src/storage/emc/vplex/restapi/mode/clusterdevices.pm +++ b/src/storage/emc/vplex/restapi/mode/clusterdevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/directors.pm b/src/storage/emc/vplex/restapi/mode/directors.pm index 3b16eae05..1de4bdcf9 100644 --- a/src/storage/emc/vplex/restapi/mode/directors.pm +++ b/src/storage/emc/vplex/restapi/mode/directors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/distributeddevices.pm b/src/storage/emc/vplex/restapi/mode/distributeddevices.pm index 6e840b7f5..317b123c8 100644 --- a/src/storage/emc/vplex/restapi/mode/distributeddevices.pm +++ b/src/storage/emc/vplex/restapi/mode/distributeddevices.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/fans.pm b/src/storage/emc/vplex/restapi/mode/fans.pm index 298c58ab7..9d9ec42a2 100644 --- a/src/storage/emc/vplex/restapi/mode/fans.pm +++ b/src/storage/emc/vplex/restapi/mode/fans.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/psus.pm b/src/storage/emc/vplex/restapi/mode/psus.pm index dfb7dddba..115affd43 100644 --- a/src/storage/emc/vplex/restapi/mode/psus.pm +++ b/src/storage/emc/vplex/restapi/mode/psus.pm @@ -1,4 +1,4 @@ -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/mode/storagevolumes.pm b/src/storage/emc/vplex/restapi/mode/storagevolumes.pm index 22ab8431b..43365bc6c 100644 --- a/src/storage/emc/vplex/restapi/mode/storagevolumes.pm +++ b/src/storage/emc/vplex/restapi/mode/storagevolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/vplex/restapi/plugin.pm b/src/storage/emc/vplex/restapi/plugin.pm index fb3457a2a..30c75fc14 100644 --- a/src/storage/emc/vplex/restapi/plugin.pm +++ b/src/storage/emc/vplex/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/custom/xtremioapi.pm b/src/storage/emc/xtremio/restapi/custom/xtremioapi.pm index 88c6afedc..17e1959ab 100644 --- a/src/storage/emc/xtremio/restapi/custom/xtremioapi.pm +++ b/src/storage/emc/xtremio/restapi/custom/xtremioapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/clusterhealth.pm b/src/storage/emc/xtremio/restapi/mode/clusterhealth.pm index 3002a6602..c26c5a029 100644 --- a/src/storage/emc/xtremio/restapi/mode/clusterhealth.pm +++ b/src/storage/emc/xtremio/restapi/mode/clusterhealth.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/dpg.pm b/src/storage/emc/xtremio/restapi/mode/dpg.pm index b85f9d78d..7cc5bde7b 100644 --- a/src/storage/emc/xtremio/restapi/mode/dpg.pm +++ b/src/storage/emc/xtremio/restapi/mode/dpg.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/ssdendurance.pm b/src/storage/emc/xtremio/restapi/mode/ssdendurance.pm index 438c54233..75aa7bfdb 100644 --- a/src/storage/emc/xtremio/restapi/mode/ssdendurance.pm +++ b/src/storage/emc/xtremio/restapi/mode/ssdendurance.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/ssdiops.pm b/src/storage/emc/xtremio/restapi/mode/ssdiops.pm index 3763fb5bc..a82a3e010 100644 --- a/src/storage/emc/xtremio/restapi/mode/ssdiops.pm +++ b/src/storage/emc/xtremio/restapi/mode/ssdiops.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/storagecontrollers.pm b/src/storage/emc/xtremio/restapi/mode/storagecontrollers.pm index c69334557..a4a700232 100644 --- a/src/storage/emc/xtremio/restapi/mode/storagecontrollers.pm +++ b/src/storage/emc/xtremio/restapi/mode/storagecontrollers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/xenvscpu.pm b/src/storage/emc/xtremio/restapi/mode/xenvscpu.pm index 13c708474..136f1431f 100644 --- a/src/storage/emc/xtremio/restapi/mode/xenvscpu.pm +++ b/src/storage/emc/xtremio/restapi/mode/xenvscpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/mode/xenvsstate.pm b/src/storage/emc/xtremio/restapi/mode/xenvsstate.pm index 479b0a3a8..6a55a0193 100644 --- a/src/storage/emc/xtremio/restapi/mode/xenvsstate.pm +++ b/src/storage/emc/xtremio/restapi/mode/xenvsstate.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/emc/xtremio/restapi/plugin.pm b/src/storage/emc/xtremio/restapi/plugin.pm index acfb60ee5..3d98f7f8d 100644 --- a/src/storage/emc/xtremio/restapi/plugin.pm +++ b/src/storage/emc/xtremio/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/exagrid/snmp/mode/serverusage.pm b/src/storage/exagrid/snmp/mode/serverusage.pm index 4f6ab5988..a3b0e7aab 100644 --- a/src/storage/exagrid/snmp/mode/serverusage.pm +++ b/src/storage/exagrid/snmp/mode/serverusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/exagrid/snmp/plugin.pm b/src/storage/exagrid/snmp/plugin.pm index 6f269a412..3d3302b7b 100644 --- a/src/storage/exagrid/snmp/plugin.pm +++ b/src/storage/exagrid/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/mode/cpu.pm b/src/storage/fujitsu/eternus/dx/ssh/mode/cpu.pm index 9fd875bb1..79b745911 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/mode/cpu.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/mode/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/mode/physicaldisk.pm b/src/storage/fujitsu/eternus/dx/ssh/mode/physicaldisk.pm index 8e882b445..8f843a08a 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/mode/physicaldisk.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/mode/physicaldisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/mode/portstats.pm b/src/storage/fujitsu/eternus/dx/ssh/mode/portstats.pm index 90ddd2b84..5e6f29035 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/mode/portstats.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/mode/portstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/mode/psu.pm b/src/storage/fujitsu/eternus/dx/ssh/mode/psu.pm index c7afc896d..5b3da7eb2 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/mode/psu.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/mode/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/mode/raidgroups.pm b/src/storage/fujitsu/eternus/dx/ssh/mode/raidgroups.pm index b2393d836..e002f3a0c 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/mode/raidgroups.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/mode/raidgroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/mode/volumestats.pm b/src/storage/fujitsu/eternus/dx/ssh/mode/volumestats.pm index 06014b54c..6f1bde2cf 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/mode/volumestats.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/mode/volumestats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/fujitsu/eternus/dx/ssh/plugin.pm b/src/storage/fujitsu/eternus/dx/ssh/plugin.pm index cc0407b0b..c2b9a4cfa 100644 --- a/src/storage/fujitsu/eternus/dx/ssh/plugin.pm +++ b/src/storage/fujitsu/eternus/dx/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/mode/listnodes.pm b/src/storage/hitachi/hcp/snmp/mode/listnodes.pm index 3dc7c67cd..39c6208c2 100644 --- a/src/storage/hitachi/hcp/snmp/mode/listnodes.pm +++ b/src/storage/hitachi/hcp/snmp/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/mode/listtenants.pm b/src/storage/hitachi/hcp/snmp/mode/listtenants.pm index aab3ff7ed..316f2a459 100644 --- a/src/storage/hitachi/hcp/snmp/mode/listtenants.pm +++ b/src/storage/hitachi/hcp/snmp/mode/listtenants.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/mode/listvolumes.pm b/src/storage/hitachi/hcp/snmp/mode/listvolumes.pm index 55e51790d..ec9382e08 100644 --- a/src/storage/hitachi/hcp/snmp/mode/listvolumes.pm +++ b/src/storage/hitachi/hcp/snmp/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/mode/nodes.pm b/src/storage/hitachi/hcp/snmp/mode/nodes.pm index 17055561a..df26ed33e 100644 --- a/src/storage/hitachi/hcp/snmp/mode/nodes.pm +++ b/src/storage/hitachi/hcp/snmp/mode/nodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/mode/tenants.pm b/src/storage/hitachi/hcp/snmp/mode/tenants.pm index f62afec80..45c029aae 100644 --- a/src/storage/hitachi/hcp/snmp/mode/tenants.pm +++ b/src/storage/hitachi/hcp/snmp/mode/tenants.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/mode/volumes.pm b/src/storage/hitachi/hcp/snmp/mode/volumes.pm index 8de2c8fd4..41dd8b388 100644 --- a/src/storage/hitachi/hcp/snmp/mode/volumes.pm +++ b/src/storage/hitachi/hcp/snmp/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hcp/snmp/plugin.pm b/src/storage/hitachi/hcp/snmp/plugin.pm index e7cdf9279..8cca1e19e 100644 --- a/src/storage/hitachi/hcp/snmp/plugin.pm +++ b/src/storage/hitachi/hcp/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/hnas/snmp/plugin.pm b/src/storage/hitachi/hnas/snmp/plugin.pm index 332e3010c..309c1104f 100644 --- a/src/storage/hitachi/hnas/snmp/plugin.pm +++ b/src/storage/hitachi/hnas/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/standard/snmp/mode/components/component.pm b/src/storage/hitachi/standard/snmp/mode/components/component.pm index c1e916360..4a21e520f 100644 --- a/src/storage/hitachi/standard/snmp/mode/components/component.pm +++ b/src/storage/hitachi/standard/snmp/mode/components/component.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/standard/snmp/mode/components/dkc.pm b/src/storage/hitachi/standard/snmp/mode/components/dkc.pm index 59216409c..7b9b3f3de 100644 --- a/src/storage/hitachi/standard/snmp/mode/components/dkc.pm +++ b/src/storage/hitachi/standard/snmp/mode/components/dkc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/standard/snmp/mode/components/dku.pm b/src/storage/hitachi/standard/snmp/mode/components/dku.pm index ae70fba43..f41351926 100644 --- a/src/storage/hitachi/standard/snmp/mode/components/dku.pm +++ b/src/storage/hitachi/standard/snmp/mode/components/dku.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/standard/snmp/mode/hardware.pm b/src/storage/hitachi/standard/snmp/mode/hardware.pm index 2f755b0a3..c2aa35bbb 100644 --- a/src/storage/hitachi/standard/snmp/mode/hardware.pm +++ b/src/storage/hitachi/standard/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hitachi/standard/snmp/plugin.pm b/src/storage/hitachi/standard/snmp/plugin.pm index 01f58e836..87cd6bcae 100644 --- a/src/storage/hitachi/standard/snmp/plugin.pm +++ b/src/storage/hitachi/standard/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/custom/custom.pm b/src/storage/hp/3par/ssh/custom/custom.pm index 377ebf8a6..a20ce8f61 100644 --- a/src/storage/hp/3par/ssh/custom/custom.pm +++ b/src/storage/hp/3par/ssh/custom/custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/afc.pm b/src/storage/hp/3par/ssh/mode/afc.pm index e214afb18..35206903e 100644 --- a/src/storage/hp/3par/ssh/mode/afc.pm +++ b/src/storage/hp/3par/ssh/mode/afc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/cages.pm b/src/storage/hp/3par/ssh/mode/cages.pm index a5b255311..29151b93a 100644 --- a/src/storage/hp/3par/ssh/mode/cages.pm +++ b/src/storage/hp/3par/ssh/mode/cages.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/capacity.pm b/src/storage/hp/3par/ssh/mode/capacity.pm index c76cf308e..93120fe57 100644 --- a/src/storage/hp/3par/ssh/mode/capacity.pm +++ b/src/storage/hp/3par/ssh/mode/capacity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/battery.pm b/src/storage/hp/3par/ssh/mode/components/battery.pm index 4c10d6990..cbcbd38e3 100644 --- a/src/storage/hp/3par/ssh/mode/components/battery.pm +++ b/src/storage/hp/3par/ssh/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/cim.pm b/src/storage/hp/3par/ssh/mode/components/cim.pm index 8348624b2..8230c7c02 100644 --- a/src/storage/hp/3par/ssh/mode/components/cim.pm +++ b/src/storage/hp/3par/ssh/mode/components/cim.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/disk.pm b/src/storage/hp/3par/ssh/mode/components/disk.pm index f110bc0c3..29905552c 100644 --- a/src/storage/hp/3par/ssh/mode/components/disk.pm +++ b/src/storage/hp/3par/ssh/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/node.pm b/src/storage/hp/3par/ssh/mode/components/node.pm index 374a26d41..213d7b3cb 100644 --- a/src/storage/hp/3par/ssh/mode/components/node.pm +++ b/src/storage/hp/3par/ssh/mode/components/node.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/port.pm b/src/storage/hp/3par/ssh/mode/components/port.pm index 8147b7cf1..af7d72b38 100644 --- a/src/storage/hp/3par/ssh/mode/components/port.pm +++ b/src/storage/hp/3par/ssh/mode/components/port.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/psu.pm b/src/storage/hp/3par/ssh/mode/components/psu.pm index d915596ea..232e36c17 100644 --- a/src/storage/hp/3par/ssh/mode/components/psu.pm +++ b/src/storage/hp/3par/ssh/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/sensor.pm b/src/storage/hp/3par/ssh/mode/components/sensor.pm index e9bc2ff80..f1346fe46 100644 --- a/src/storage/hp/3par/ssh/mode/components/sensor.pm +++ b/src/storage/hp/3par/ssh/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/components/wsapi.pm b/src/storage/hp/3par/ssh/mode/components/wsapi.pm index 3d1ec8a53..407fa6b79 100644 --- a/src/storage/hp/3par/ssh/mode/components/wsapi.pm +++ b/src/storage/hp/3par/ssh/mode/components/wsapi.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/diskusage.pm b/src/storage/hp/3par/ssh/mode/diskusage.pm index a66a262c2..68605fb55 100644 --- a/src/storage/hp/3par/ssh/mode/diskusage.pm +++ b/src/storage/hp/3par/ssh/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/hardware.pm b/src/storage/hp/3par/ssh/mode/hardware.pm index 64c6ac4a0..12494ec01 100644 --- a/src/storage/hp/3par/ssh/mode/hardware.pm +++ b/src/storage/hp/3par/ssh/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/nodes.pm b/src/storage/hp/3par/ssh/mode/nodes.pm index 7dcb0bf3b..04eacd89b 100644 --- a/src/storage/hp/3par/ssh/mode/nodes.pm +++ b/src/storage/hp/3par/ssh/mode/nodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/psu.pm b/src/storage/hp/3par/ssh/mode/psu.pm index c7d4ed8e1..4f715c5ce 100644 --- a/src/storage/hp/3par/ssh/mode/psu.pm +++ b/src/storage/hp/3par/ssh/mode/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/time.pm b/src/storage/hp/3par/ssh/mode/time.pm index 4b5540e36..bc81e44bd 100644 --- a/src/storage/hp/3par/ssh/mode/time.pm +++ b/src/storage/hp/3par/ssh/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/uptime.pm b/src/storage/hp/3par/ssh/mode/uptime.pm index 85cf415bd..8aaebbc38 100644 --- a/src/storage/hp/3par/ssh/mode/uptime.pm +++ b/src/storage/hp/3par/ssh/mode/uptime.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/mode/volumeusage.pm b/src/storage/hp/3par/ssh/mode/volumeusage.pm index 082c783ce..50d1f2ecf 100644 --- a/src/storage/hp/3par/ssh/mode/volumeusage.pm +++ b/src/storage/hp/3par/ssh/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/3par/ssh/plugin.pm b/src/storage/hp/3par/ssh/plugin.pm index a393eaf7b..6b8ac2c7f 100644 --- a/src/storage/hp/3par/ssh/plugin.pm +++ b/src/storage/hp/3par/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/custom/api.pm b/src/storage/hp/eva/cli/custom/api.pm index fb6da25f9..f15cdca0f 100644 --- a/src/storage/hp/eva/cli/custom/api.pm +++ b/src/storage/hp/eva/cli/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/battery.pm b/src/storage/hp/eva/cli/mode/components/battery.pm index 5223db69f..b565f36db 100644 --- a/src/storage/hp/eva/cli/mode/components/battery.pm +++ b/src/storage/hp/eva/cli/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/disk.pm b/src/storage/hp/eva/cli/mode/components/disk.pm index d28af319c..fbbfe7998 100644 --- a/src/storage/hp/eva/cli/mode/components/disk.pm +++ b/src/storage/hp/eva/cli/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/diskgrp.pm b/src/storage/hp/eva/cli/mode/components/diskgrp.pm index 61db826fa..ba739a9a2 100644 --- a/src/storage/hp/eva/cli/mode/components/diskgrp.pm +++ b/src/storage/hp/eva/cli/mode/components/diskgrp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/fan.pm b/src/storage/hp/eva/cli/mode/components/fan.pm index 892ccd4ba..b358bfb34 100644 --- a/src/storage/hp/eva/cli/mode/components/fan.pm +++ b/src/storage/hp/eva/cli/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/iomodule.pm b/src/storage/hp/eva/cli/mode/components/iomodule.pm index 1296ae146..a9c1ad306 100644 --- a/src/storage/hp/eva/cli/mode/components/iomodule.pm +++ b/src/storage/hp/eva/cli/mode/components/iomodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/psu.pm b/src/storage/hp/eva/cli/mode/components/psu.pm index daa5924c3..0dd5d7fdb 100644 --- a/src/storage/hp/eva/cli/mode/components/psu.pm +++ b/src/storage/hp/eva/cli/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/system.pm b/src/storage/hp/eva/cli/mode/components/system.pm index 2e46af03b..51902c1b4 100644 --- a/src/storage/hp/eva/cli/mode/components/system.pm +++ b/src/storage/hp/eva/cli/mode/components/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/components/temperature.pm b/src/storage/hp/eva/cli/mode/components/temperature.pm index 42047a19c..047431dc8 100644 --- a/src/storage/hp/eva/cli/mode/components/temperature.pm +++ b/src/storage/hp/eva/cli/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/hardware.pm b/src/storage/hp/eva/cli/mode/hardware.pm index 772e29f7a..ce309dc75 100644 --- a/src/storage/hp/eva/cli/mode/hardware.pm +++ b/src/storage/hp/eva/cli/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/mode/storageusage.pm b/src/storage/hp/eva/cli/mode/storageusage.pm index 6cf5d5751..19f893249 100644 --- a/src/storage/hp/eva/cli/mode/storageusage.pm +++ b/src/storage/hp/eva/cli/mode/storageusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/eva/cli/plugin.pm b/src/storage/hp/eva/cli/plugin.pm index 37e459bce..40e8c8f1e 100644 --- a/src/storage/hp/eva/cli/plugin.pm +++ b/src/storage/hp/eva/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/device.pm b/src/storage/hp/lefthand/snmp/mode/components/device.pm index b9513a0b3..82d979587 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/device.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/device.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/fan.pm b/src/storage/hp/lefthand/snmp/mode/components/fan.pm index a6c612114..93866c69c 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/fan.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/psu.pm b/src/storage/hp/lefthand/snmp/mode/components/psu.pm index 06eeb59af..2432d84bd 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/psu.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/rc.pm b/src/storage/hp/lefthand/snmp/mode/components/rc.pm index 9a9ab3248..d59914077 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/rc.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/rc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/rcc.pm b/src/storage/hp/lefthand/snmp/mode/components/rcc.pm index 83f0f0aeb..49dcf7ded 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/rcc.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/rcc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/resources.pm b/src/storage/hp/lefthand/snmp/mode/components/resources.pm index 4e6141676..a6d599fa0 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/resources.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/ro.pm b/src/storage/hp/lefthand/snmp/mode/components/ro.pm index 06f62428a..3cd3d840c 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/ro.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/ro.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/temperature.pm b/src/storage/hp/lefthand/snmp/mode/components/temperature.pm index fc72b843d..f22c942de 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/temperature.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/components/voltage.pm b/src/storage/hp/lefthand/snmp/mode/components/voltage.pm index 4d2ed22c9..f53a9ea4c 100644 --- a/src/storage/hp/lefthand/snmp/mode/components/voltage.pm +++ b/src/storage/hp/lefthand/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/hardware.pm b/src/storage/hp/lefthand/snmp/mode/hardware.pm index dfe78d7a9..232e27230 100644 --- a/src/storage/hp/lefthand/snmp/mode/hardware.pm +++ b/src/storage/hp/lefthand/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/mode/volumeusage.pm b/src/storage/hp/lefthand/snmp/mode/volumeusage.pm index f06b3761d..26b004919 100644 --- a/src/storage/hp/lefthand/snmp/mode/volumeusage.pm +++ b/src/storage/hp/lefthand/snmp/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/lefthand/snmp/plugin.pm b/src/storage/hp/lefthand/snmp/plugin.pm index 78c3de80f..f1c4e8ecb 100644 --- a/src/storage/hp/lefthand/snmp/plugin.pm +++ b/src/storage/hp/lefthand/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/msa2000/snmp/plugin.pm b/src/storage/hp/msa2000/snmp/plugin.pm index f91a00007..00505a77c 100644 --- a/src/storage/hp/msa2000/snmp/plugin.pm +++ b/src/storage/hp/msa2000/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/msl/snmp/mode/hardware.pm b/src/storage/hp/msl/snmp/mode/hardware.pm index 83f61a8d5..03329d750 100644 --- a/src/storage/hp/msl/snmp/mode/hardware.pm +++ b/src/storage/hp/msl/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/msl/snmp/plugin.pm b/src/storage/hp/msl/snmp/plugin.pm index e7781368c..846672ceb 100644 --- a/src/storage/hp/msl/snmp/plugin.pm +++ b/src/storage/hp/msl/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/custom/api.pm b/src/storage/hp/p2000/xmlapi/custom/api.pm index f1c50a14e..7c43e4cc9 100644 --- a/src/storage/hp/p2000/xmlapi/custom/api.pm +++ b/src/storage/hp/p2000/xmlapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/disk.pm b/src/storage/hp/p2000/xmlapi/mode/components/disk.pm index 9f0aadb41..90de26de5 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/disk.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/enclosure.pm b/src/storage/hp/p2000/xmlapi/mode/components/enclosure.pm index a768c60aa..f7ef0fb70 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/enclosure.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/fan.pm b/src/storage/hp/p2000/xmlapi/mode/components/fan.pm index a929698ed..58e077aad 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/fan.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/fru.pm b/src/storage/hp/p2000/xmlapi/mode/components/fru.pm index bc2a7a3ac..03cecb0a4 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/fru.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/fru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/psu.pm b/src/storage/hp/p2000/xmlapi/mode/components/psu.pm index ff66f3183..6a98988b2 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/psu.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/resources.pm b/src/storage/hp/p2000/xmlapi/mode/components/resources.pm index f53dfaa6a..c0ac50e99 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/resources.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/saslink.pm b/src/storage/hp/p2000/xmlapi/mode/components/saslink.pm index 328cdd442..53f5500a3 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/saslink.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/saslink.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/sensor.pm b/src/storage/hp/p2000/xmlapi/mode/components/sensor.pm index 932f474a4..38585b0c5 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/sensor.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/sensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/components/vdisk.pm b/src/storage/hp/p2000/xmlapi/mode/components/vdisk.pm index f7d6d520b..e5df62170 100644 --- a/src/storage/hp/p2000/xmlapi/mode/components/vdisk.pm +++ b/src/storage/hp/p2000/xmlapi/mode/components/vdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/controllers.pm b/src/storage/hp/p2000/xmlapi/mode/controllers.pm index 7e6edc730..81f8ce5b3 100644 --- a/src/storage/hp/p2000/xmlapi/mode/controllers.pm +++ b/src/storage/hp/p2000/xmlapi/mode/controllers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/health.pm b/src/storage/hp/p2000/xmlapi/mode/health.pm index 987f26a0b..65e8f4548 100644 --- a/src/storage/hp/p2000/xmlapi/mode/health.pm +++ b/src/storage/hp/p2000/xmlapi/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/listvolumes.pm b/src/storage/hp/p2000/xmlapi/mode/listvolumes.pm index b43109c57..68a7bd91d 100644 --- a/src/storage/hp/p2000/xmlapi/mode/listvolumes.pm +++ b/src/storage/hp/p2000/xmlapi/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/ntp.pm b/src/storage/hp/p2000/xmlapi/mode/ntp.pm index e37777534..9bd61a99b 100644 --- a/src/storage/hp/p2000/xmlapi/mode/ntp.pm +++ b/src/storage/hp/p2000/xmlapi/mode/ntp.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/time.pm b/src/storage/hp/p2000/xmlapi/mode/time.pm index 027443c1b..559ec1966 100644 --- a/src/storage/hp/p2000/xmlapi/mode/time.pm +++ b/src/storage/hp/p2000/xmlapi/mode/time.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/vdisks.pm b/src/storage/hp/p2000/xmlapi/mode/vdisks.pm index f4cfe977d..f8f27ff35 100644 --- a/src/storage/hp/p2000/xmlapi/mode/vdisks.pm +++ b/src/storage/hp/p2000/xmlapi/mode/vdisks.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/mode/volumesstats.pm b/src/storage/hp/p2000/xmlapi/mode/volumesstats.pm index b6a1a6037..f48407a70 100644 --- a/src/storage/hp/p2000/xmlapi/mode/volumesstats.pm +++ b/src/storage/hp/p2000/xmlapi/mode/volumesstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/p2000/xmlapi/plugin.pm b/src/storage/hp/p2000/xmlapi/plugin.pm index 176623bba..d79056ca6 100644 --- a/src/storage/hp/p2000/xmlapi/plugin.pm +++ b/src/storage/hp/p2000/xmlapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/3/restapi/custom/api.pm b/src/storage/hp/storeonce/3/restapi/custom/api.pm index 4fa898a53..5de5f85c7 100644 --- a/src/storage/hp/storeonce/3/restapi/custom/api.pm +++ b/src/storage/hp/storeonce/3/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/3/restapi/mode/clusterusage.pm b/src/storage/hp/storeonce/3/restapi/mode/clusterusage.pm index c8ee29895..c54737e35 100644 --- a/src/storage/hp/storeonce/3/restapi/mode/clusterusage.pm +++ b/src/storage/hp/storeonce/3/restapi/mode/clusterusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/3/restapi/mode/fcsusage.pm b/src/storage/hp/storeonce/3/restapi/mode/fcsusage.pm index bdd66619b..3cc52809e 100644 --- a/src/storage/hp/storeonce/3/restapi/mode/fcsusage.pm +++ b/src/storage/hp/storeonce/3/restapi/mode/fcsusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/3/restapi/mode/nasusage.pm b/src/storage/hp/storeonce/3/restapi/mode/nasusage.pm index bc92c1dc8..cf0db22ca 100644 --- a/src/storage/hp/storeonce/3/restapi/mode/nasusage.pm +++ b/src/storage/hp/storeonce/3/restapi/mode/nasusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/3/restapi/mode/servicesetusage.pm b/src/storage/hp/storeonce/3/restapi/mode/servicesetusage.pm index 49cb72e31..7c3da3c78 100644 --- a/src/storage/hp/storeonce/3/restapi/mode/servicesetusage.pm +++ b/src/storage/hp/storeonce/3/restapi/mode/servicesetusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/3/restapi/plugin.pm b/src/storage/hp/storeonce/3/restapi/plugin.pm index f629d1765..67dbce323 100644 --- a/src/storage/hp/storeonce/3/restapi/plugin.pm +++ b/src/storage/hp/storeonce/3/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/custom/api.pm b/src/storage/hp/storeonce/4/restapi/custom/api.pm index 781d2af6e..1c65be11b 100644 --- a/src/storage/hp/storeonce/4/restapi/custom/api.pm +++ b/src/storage/hp/storeonce/4/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/appliances.pm b/src/storage/hp/storeonce/4/restapi/mode/appliances.pm index 8a790d4b6..5fb320dca 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/appliances.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/appliances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/drive.pm b/src/storage/hp/storeonce/4/restapi/mode/components/drive.pm index d63f12afa..807349409 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/drive.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/drive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/driveencl.pm b/src/storage/hp/storeonce/4/restapi/mode/components/driveencl.pm index 93fb2e7fc..8266e1c6b 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/driveencl.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/driveencl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/fan.pm b/src/storage/hp/storeonce/4/restapi/mode/components/fan.pm index a4f803961..97ba0b422 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/fan.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/iomodule.pm b/src/storage/hp/storeonce/4/restapi/mode/components/iomodule.pm index 6332e8ce7..36fe3c41e 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/iomodule.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/iomodule.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/pool.pm b/src/storage/hp/storeonce/4/restapi/mode/components/pool.pm index d29a686e5..daf9ef221 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/pool.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/pool.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/psu.pm b/src/storage/hp/storeonce/4/restapi/mode/components/psu.pm index 568a47d86..5a556ea54 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/psu.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/components/temperature.pm b/src/storage/hp/storeonce/4/restapi/mode/components/temperature.pm index 5ed22d33d..67f25b99b 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/components/temperature.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/hardwarestorage.pm b/src/storage/hp/storeonce/4/restapi/mode/hardwarestorage.pm index 4602797bf..f6304b0c9 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/hardwarestorage.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/hardwarestorage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/listappliances.pm b/src/storage/hp/storeonce/4/restapi/mode/listappliances.pm index bf7aa732e..9e668a501 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/listappliances.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/listappliances.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/liststores.pm b/src/storage/hp/storeonce/4/restapi/mode/liststores.pm index f4c49ed52..1e413a98e 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/liststores.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/liststores.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/mode/stores.pm b/src/storage/hp/storeonce/4/restapi/mode/stores.pm index f9db003e8..65f833d9f 100644 --- a/src/storage/hp/storeonce/4/restapi/mode/stores.pm +++ b/src/storage/hp/storeonce/4/restapi/mode/stores.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/4/restapi/plugin.pm b/src/storage/hp/storeonce/4/restapi/plugin.pm index a1d1c1b04..4da379607 100644 --- a/src/storage/hp/storeonce/4/restapi/plugin.pm +++ b/src/storage/hp/storeonce/4/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/ssh/custom/custom.pm b/src/storage/hp/storeonce/ssh/custom/custom.pm index 256669988..7f7df2e27 100644 --- a/src/storage/hp/storeonce/ssh/custom/custom.pm +++ b/src/storage/hp/storeonce/ssh/custom/custom.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/ssh/mode/components/hardware.pm b/src/storage/hp/storeonce/ssh/mode/components/hardware.pm index 8d6b11ddb..beb0375b0 100644 --- a/src/storage/hp/storeonce/ssh/mode/components/hardware.pm +++ b/src/storage/hp/storeonce/ssh/mode/components/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/ssh/mode/components/serviceset.pm b/src/storage/hp/storeonce/ssh/mode/components/serviceset.pm index 31008c7c8..7a0237333 100644 --- a/src/storage/hp/storeonce/ssh/mode/components/serviceset.pm +++ b/src/storage/hp/storeonce/ssh/mode/components/serviceset.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/ssh/mode/hardware.pm b/src/storage/hp/storeonce/ssh/mode/hardware.pm index af752335d..bb161c185 100644 --- a/src/storage/hp/storeonce/ssh/mode/hardware.pm +++ b/src/storage/hp/storeonce/ssh/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/hp/storeonce/ssh/plugin.pm b/src/storage/hp/storeonce/ssh/plugin.pm index 695d5beef..793e0601b 100644 --- a/src/storage/hp/storeonce/ssh/plugin.pm +++ b/src/storage/hp/storeonce/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/components/bbu.pm b/src/storage/huawei/oceanstor/snmp/mode/components/bbu.pm index c9f3c5037..bc5aef76b 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/components/bbu.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/components/bbu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/components/disk.pm b/src/storage/huawei/oceanstor/snmp/mode/components/disk.pm index 0da4b4dc4..d42a5b390 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/components/disk.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/components/enclosure.pm b/src/storage/huawei/oceanstor/snmp/mode/components/enclosure.pm index da92e0ebe..1d17c07ef 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/components/enclosure.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/components/expboard.pm b/src/storage/huawei/oceanstor/snmp/mode/components/expboard.pm index 087a113e1..99e514532 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/components/expboard.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/components/expboard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/components/fan.pm b/src/storage/huawei/oceanstor/snmp/mode/components/fan.pm index fca4ca6f3..41c9ce3f1 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/components/fan.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/components/psu.pm b/src/storage/huawei/oceanstor/snmp/mode/components/psu.pm index 7676fc2bf..5f9ea711f 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/components/psu.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/controllers.pm b/src/storage/huawei/oceanstor/snmp/mode/controllers.pm index 5bab27cda..8cf9b77eb 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/controllers.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/controllers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/hardware.pm b/src/storage/huawei/oceanstor/snmp/mode/hardware.pm index 32294a8fd..c59c2b9b9 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/hardware.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/listcontrollers.pm b/src/storage/huawei/oceanstor/snmp/mode/listcontrollers.pm index 36f3e02ee..c01c56a26 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/listcontrollers.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/listcontrollers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/listluns.pm b/src/storage/huawei/oceanstor/snmp/mode/listluns.pm index 87c3fee3d..7540b05ba 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/listluns.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/listluns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/liststoragepools.pm b/src/storage/huawei/oceanstor/snmp/mode/liststoragepools.pm index 6f5637804..e6a57c44d 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/liststoragepools.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/liststoragepools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/luns.pm b/src/storage/huawei/oceanstor/snmp/mode/luns.pm index fec8bd31d..cf5d7c714 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/luns.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/luns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/resources.pm b/src/storage/huawei/oceanstor/snmp/mode/resources.pm index 195058095..4cf79289c 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/resources.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/mode/storagepools.pm b/src/storage/huawei/oceanstor/snmp/mode/storagepools.pm index 944de7278..cbda9e8a5 100644 --- a/src/storage/huawei/oceanstor/snmp/mode/storagepools.pm +++ b/src/storage/huawei/oceanstor/snmp/mode/storagepools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/huawei/oceanstor/snmp/plugin.pm b/src/storage/huawei/oceanstor/snmp/plugin.pm index 16ee9b10e..5eeee4008 100644 --- a/src/storage/huawei/oceanstor/snmp/plugin.pm +++ b/src/storage/huawei/oceanstor/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/DS3000/cli/plugin.pm b/src/storage/ibm/DS3000/cli/plugin.pm index 20a9dcb59..32b6aa153 100644 --- a/src/storage/ibm/DS3000/cli/plugin.pm +++ b/src/storage/ibm/DS3000/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/DS4000/cli/plugin.pm b/src/storage/ibm/DS4000/cli/plugin.pm index 48338a3c8..c43e2dc50 100644 --- a/src/storage/ibm/DS4000/cli/plugin.pm +++ b/src/storage/ibm/DS4000/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/DS5000/cli/plugin.pm b/src/storage/ibm/DS5000/cli/plugin.pm index 72d69f6ca..6fa230720 100644 --- a/src/storage/ibm/DS5000/cli/plugin.pm +++ b/src/storage/ibm/DS5000/cli/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/arraysstatus.pm b/src/storage/ibm/fs900/snmp/mode/arraysstatus.pm index 5f47cef95..a00ea2f19 100644 --- a/src/storage/ibm/fs900/snmp/mode/arraysstatus.pm +++ b/src/storage/ibm/fs900/snmp/mode/arraysstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/arraysusage.pm b/src/storage/ibm/fs900/snmp/mode/arraysusage.pm index 9037c5884..c71ba1eb3 100644 --- a/src/storage/ibm/fs900/snmp/mode/arraysusage.pm +++ b/src/storage/ibm/fs900/snmp/mode/arraysusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/components/battery.pm b/src/storage/ibm/fs900/snmp/mode/components/battery.pm index 62eea7c67..5a88acbb6 100644 --- a/src/storage/ibm/fs900/snmp/mode/components/battery.pm +++ b/src/storage/ibm/fs900/snmp/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/components/fan.pm b/src/storage/ibm/fs900/snmp/mode/components/fan.pm index d9de1f116..4ccbcc19c 100644 --- a/src/storage/ibm/fs900/snmp/mode/components/fan.pm +++ b/src/storage/ibm/fs900/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/components/fibrechannel.pm b/src/storage/ibm/fs900/snmp/mode/components/fibrechannel.pm index 5356f2589..b2fbb261a 100644 --- a/src/storage/ibm/fs900/snmp/mode/components/fibrechannel.pm +++ b/src/storage/ibm/fs900/snmp/mode/components/fibrechannel.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/components/flashcard.pm b/src/storage/ibm/fs900/snmp/mode/components/flashcard.pm index 53a26dcf1..01d4dbf75 100644 --- a/src/storage/ibm/fs900/snmp/mode/components/flashcard.pm +++ b/src/storage/ibm/fs900/snmp/mode/components/flashcard.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/components/psu.pm b/src/storage/ibm/fs900/snmp/mode/components/psu.pm index 69fbb0b19..d1d99cdf6 100644 --- a/src/storage/ibm/fs900/snmp/mode/components/psu.pm +++ b/src/storage/ibm/fs900/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/fcusage.pm b/src/storage/ibm/fs900/snmp/mode/fcusage.pm index 2371f58e7..c3648dca6 100644 --- a/src/storage/ibm/fs900/snmp/mode/fcusage.pm +++ b/src/storage/ibm/fs900/snmp/mode/fcusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/mode/hardware.pm b/src/storage/ibm/fs900/snmp/mode/hardware.pm index 4e33c405e..39a046c2f 100644 --- a/src/storage/ibm/fs900/snmp/mode/hardware.pm +++ b/src/storage/ibm/fs900/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/fs900/snmp/plugin.pm b/src/storage/ibm/fs900/snmp/plugin.pm index 506d77ae2..c551c1dd9 100644 --- a/src/storage/ibm/fs900/snmp/plugin.pm +++ b/src/storage/ibm/fs900/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/custom/api.pm b/src/storage/ibm/storwize/ssh/custom/api.pm index 2e389c51b..becd29f26 100644 --- a/src/storage/ibm/storwize/ssh/custom/api.pm +++ b/src/storage/ibm/storwize/ssh/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/array.pm b/src/storage/ibm/storwize/ssh/mode/components/array.pm index 63e7d285f..539548691 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/array.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/array.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/drive.pm b/src/storage/ibm/storwize/ssh/mode/components/drive.pm index 237c487b4..8c57d1ad0 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/drive.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/drive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/enclosure.pm b/src/storage/ibm/storwize/ssh/mode/components/enclosure.pm index d910f373b..11d32da53 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/enclosure.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/enclosure.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/enclosurebattery.pm b/src/storage/ibm/storwize/ssh/mode/components/enclosurebattery.pm index 9b1ec3c30..19d3c9cb5 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/enclosurebattery.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/enclosurebattery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/enclosurecanister.pm b/src/storage/ibm/storwize/ssh/mode/components/enclosurecanister.pm index f7f96de0a..005e0b1ba 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/enclosurecanister.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/enclosurecanister.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/enclosurepsu.pm b/src/storage/ibm/storwize/ssh/mode/components/enclosurepsu.pm index 807a6b0a4..67244a7e1 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/enclosurepsu.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/enclosurepsu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/host.pm b/src/storage/ibm/storwize/ssh/mode/components/host.pm index 1d286e7b8..0f49341dd 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/host.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/host.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/mdisk.pm b/src/storage/ibm/storwize/ssh/mode/components/mdisk.pm index 292b68931..6020dfe21 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/mdisk.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/mdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/node.pm b/src/storage/ibm/storwize/ssh/mode/components/node.pm index bef90b392..94c11e3c5 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/node.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/node.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/portfc.pm b/src/storage/ibm/storwize/ssh/mode/components/portfc.pm index 4ea13afc2..a83d22996 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/portfc.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/portfc.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/portsas.pm b/src/storage/ibm/storwize/ssh/mode/components/portsas.pm index 27785038e..e840a1bac 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/portsas.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/portsas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/quorum.pm b/src/storage/ibm/storwize/ssh/mode/components/quorum.pm index 5561c191d..465bdf642 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/quorum.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/quorum.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/systemstats.pm b/src/storage/ibm/storwize/ssh/mode/components/systemstats.pm index a6c234996..e5ccaf63e 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/systemstats.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/systemstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/components/vdisk.pm b/src/storage/ibm/storwize/ssh/mode/components/vdisk.pm index 383e24b7b..5d938340e 100644 --- a/src/storage/ibm/storwize/ssh/mode/components/vdisk.pm +++ b/src/storage/ibm/storwize/ssh/mode/components/vdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/eventlog.pm b/src/storage/ibm/storwize/ssh/mode/eventlog.pm index 660bf6dc6..8fd80040b 100644 --- a/src/storage/ibm/storwize/ssh/mode/eventlog.pm +++ b/src/storage/ibm/storwize/ssh/mode/eventlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/hardware.pm b/src/storage/ibm/storwize/ssh/mode/hardware.pm index 40e072fff..9cd830835 100644 --- a/src/storage/ibm/storwize/ssh/mode/hardware.pm +++ b/src/storage/ibm/storwize/ssh/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/poolusage.pm b/src/storage/ibm/storwize/ssh/mode/poolusage.pm index 35fffb446..e7e6a5cf4 100644 --- a/src/storage/ibm/storwize/ssh/mode/poolusage.pm +++ b/src/storage/ibm/storwize/ssh/mode/poolusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/mode/replication.pm b/src/storage/ibm/storwize/ssh/mode/replication.pm index 5e9764800..40be9641d 100644 --- a/src/storage/ibm/storwize/ssh/mode/replication.pm +++ b/src/storage/ibm/storwize/ssh/mode/replication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/storwize/ssh/plugin.pm b/src/storage/ibm/storwize/ssh/plugin.pm index 3654f6d77..c280e15ed 100644 --- a/src/storage/ibm/storwize/ssh/plugin.pm +++ b/src/storage/ibm/storwize/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts2900/snmp/mode/hardware.pm b/src/storage/ibm/ts2900/snmp/mode/hardware.pm index 762012d87..79f837c57 100644 --- a/src/storage/ibm/ts2900/snmp/mode/hardware.pm +++ b/src/storage/ibm/ts2900/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts2900/snmp/plugin.pm b/src/storage/ibm/ts2900/snmp/plugin.pm index e4241ad19..8c76fa0c7 100644 --- a/src/storage/ibm/ts2900/snmp/plugin.pm +++ b/src/storage/ibm/ts2900/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts3100/snmp/mode/globalstatus.pm b/src/storage/ibm/ts3100/snmp/mode/globalstatus.pm index ec00ad34e..afbaaa20a 100644 --- a/src/storage/ibm/ts3100/snmp/mode/globalstatus.pm +++ b/src/storage/ibm/ts3100/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts3100/snmp/plugin.pm b/src/storage/ibm/ts3100/snmp/plugin.pm index 639c80ff8..aef75f7ff 100644 --- a/src/storage/ibm/ts3100/snmp/plugin.pm +++ b/src/storage/ibm/ts3100/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts3200/snmp/mode/globalstatus.pm b/src/storage/ibm/ts3200/snmp/mode/globalstatus.pm index 27fa9a43c..fcfe018d3 100644 --- a/src/storage/ibm/ts3200/snmp/mode/globalstatus.pm +++ b/src/storage/ibm/ts3200/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts3200/snmp/plugin.pm b/src/storage/ibm/ts3200/snmp/plugin.pm index f4f4e877c..f8e9d2033 100644 --- a/src/storage/ibm/ts3200/snmp/plugin.pm +++ b/src/storage/ibm/ts3200/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/ibm/ts3500/snmp/plugin.pm b/src/storage/ibm/ts3500/snmp/plugin.pm index 1b5ae7545..2895b590a 100644 --- a/src/storage/ibm/ts3500/snmp/plugin.pm +++ b/src/storage/ibm/ts3500/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/kaminario/restapi/custom/api.pm b/src/storage/kaminario/restapi/custom/api.pm index a30b32fc1..fb9f07983 100644 --- a/src/storage/kaminario/restapi/custom/api.pm +++ b/src/storage/kaminario/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/kaminario/restapi/mode/systemusage.pm b/src/storage/kaminario/restapi/mode/systemusage.pm index 0aaa08973..a08b5cc7c 100644 --- a/src/storage/kaminario/restapi/mode/systemusage.pm +++ b/src/storage/kaminario/restapi/mode/systemusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/kaminario/restapi/mode/volumeusage.pm b/src/storage/kaminario/restapi/mode/volumeusage.pm index 25075c93e..744c98a07 100644 --- a/src/storage/kaminario/restapi/mode/volumeusage.pm +++ b/src/storage/kaminario/restapi/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/kaminario/restapi/plugin.pm b/src/storage/kaminario/restapi/plugin.pm index d7b3ac748..b7724f4b3 100644 --- a/src/storage/kaminario/restapi/plugin.pm +++ b/src/storage/kaminario/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/components/disk.pm b/src/storage/lenovo/iomega/snmp/mode/components/disk.pm index 36348c8f1..38482a0c2 100644 --- a/src/storage/lenovo/iomega/snmp/mode/components/disk.pm +++ b/src/storage/lenovo/iomega/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/components/fan.pm b/src/storage/lenovo/iomega/snmp/mode/components/fan.pm index a0188a679..a638294df 100644 --- a/src/storage/lenovo/iomega/snmp/mode/components/fan.pm +++ b/src/storage/lenovo/iomega/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/components/raid.pm b/src/storage/lenovo/iomega/snmp/mode/components/raid.pm index 8a0710722..a34ddf6ea 100644 --- a/src/storage/lenovo/iomega/snmp/mode/components/raid.pm +++ b/src/storage/lenovo/iomega/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/components/temperature.pm b/src/storage/lenovo/iomega/snmp/mode/components/temperature.pm index 5f7d11e62..fb947bf1a 100644 --- a/src/storage/lenovo/iomega/snmp/mode/components/temperature.pm +++ b/src/storage/lenovo/iomega/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/components/voltage.pm b/src/storage/lenovo/iomega/snmp/mode/components/voltage.pm index 7e5e1d109..2f4d05555 100644 --- a/src/storage/lenovo/iomega/snmp/mode/components/voltage.pm +++ b/src/storage/lenovo/iomega/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/hardware.pm b/src/storage/lenovo/iomega/snmp/mode/hardware.pm index 55246f7ff..8db9ce36e 100644 --- a/src/storage/lenovo/iomega/snmp/mode/hardware.pm +++ b/src/storage/lenovo/iomega/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/mode/interfaces.pm b/src/storage/lenovo/iomega/snmp/mode/interfaces.pm index 653b21650..4df9ec0f3 100644 --- a/src/storage/lenovo/iomega/snmp/mode/interfaces.pm +++ b/src/storage/lenovo/iomega/snmp/mode/interfaces.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -174,7 +174,7 @@ Example: adding --display-transform-src='eth' --display-transform-dst='ens' wil =item B<--show-cache> -Display cache interface datas. +Display cache interface data. =back diff --git a/src/storage/lenovo/iomega/snmp/mode/memory.pm b/src/storage/lenovo/iomega/snmp/mode/memory.pm index eb3180994..4b2d7cf45 100644 --- a/src/storage/lenovo/iomega/snmp/mode/memory.pm +++ b/src/storage/lenovo/iomega/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/iomega/snmp/plugin.pm b/src/storage/lenovo/iomega/snmp/plugin.pm index a54a086c2..dce3cd3ac 100644 --- a/src/storage/lenovo/iomega/snmp/plugin.pm +++ b/src/storage/lenovo/iomega/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/lenovo/sseries/snmp/plugin.pm b/src/storage/lenovo/sseries/snmp/plugin.pm index fdf6f1210..d2032ceae 100644 --- a/src/storage/lenovo/sseries/snmp/plugin.pm +++ b/src/storage/lenovo/sseries/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/custom/api.pm b/src/storage/netapp/ontap/oncommandapi/custom/api.pm index 1d3bde368..86bb9aad3 100644 --- a/src/storage/netapp/ontap/oncommandapi/custom/api.pm +++ b/src/storage/netapp/ontap/oncommandapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/aggregateraidstatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/aggregateraidstatus.pm index d3022e9ea..27b8ae35d 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/aggregateraidstatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/aggregateraidstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/aggregatestatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/aggregatestatus.pm index 6822dce61..aab4a3690 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/aggregatestatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/aggregatestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/aggregateusage.pm b/src/storage/netapp/ontap/oncommandapi/mode/aggregateusage.pm index 0d46fb687..531c7f752 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/aggregateusage.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/aggregateusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/clusterio.pm b/src/storage/netapp/ontap/oncommandapi/mode/clusterio.pm index 79b56a2f6..9b245708f 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/clusterio.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/clusterio.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/clusterstatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/clusterstatus.pm index e4509d623..2944eda8d 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/clusterstatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/clusterstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/clusterusage.pm b/src/storage/netapp/ontap/oncommandapi/mode/clusterusage.pm index 196f4344c..f210ec381 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/clusterusage.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/clusterusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/diskfailed.pm b/src/storage/netapp/ontap/oncommandapi/mode/diskfailed.pm index 417aa326e..e970e623d 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/diskfailed.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/diskfailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/diskspare.pm b/src/storage/netapp/ontap/oncommandapi/mode/diskspare.pm index 4963c1ca0..34b8c9c42 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/diskspare.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/diskspare.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/fcportstatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/fcportstatus.pm index bc53ab8ed..48d79e17c 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/fcportstatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/fcportstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listaggregates.pm b/src/storage/netapp/ontap/oncommandapi/mode/listaggregates.pm index a03f312dc..421358198 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listaggregates.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listaggregates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listclusters.pm b/src/storage/netapp/ontap/oncommandapi/mode/listclusters.pm index 71ffd0704..dc8dd0a27 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listclusters.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listclusters.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listfcports.pm b/src/storage/netapp/ontap/oncommandapi/mode/listfcports.pm index ba5f0ec5b..1e963b1e4 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listfcports.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listfcports.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listluns.pm b/src/storage/netapp/ontap/oncommandapi/mode/listluns.pm index 25602f9e3..a92492f78 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listluns.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listluns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listnodes.pm b/src/storage/netapp/ontap/oncommandapi/mode/listnodes.pm index 236b3e004..54aaf4a5f 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listnodes.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listnodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listsnapmirrors.pm b/src/storage/netapp/ontap/oncommandapi/mode/listsnapmirrors.pm index 88c1a9aff..eafdac73d 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listsnapmirrors.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listsnapmirrors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listsvm.pm b/src/storage/netapp/ontap/oncommandapi/mode/listsvm.pm index c9ab1bc92..c0c207a96 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listsvm.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listsvm.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/listvolumes.pm b/src/storage/netapp/ontap/oncommandapi/mode/listvolumes.pm index a93ee1e75..50c23951f 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/listvolumes.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/lunalignment.pm b/src/storage/netapp/ontap/oncommandapi/mode/lunalignment.pm index 7f94dbab0..7d4fca283 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/lunalignment.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/lunalignment.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/lunonline.pm b/src/storage/netapp/ontap/oncommandapi/mode/lunonline.pm index e36df3663..31d29b32b 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/lunonline.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/lunonline.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/lunusage.pm b/src/storage/netapp/ontap/oncommandapi/mode/lunusage.pm index dc65a3f35..05ea73931 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/lunusage.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/lunusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/nodefailoverstatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/nodefailoverstatus.pm index 14d078398..f90de910b 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/nodefailoverstatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/nodefailoverstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/nodehardwarestatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/nodehardwarestatus.pm index 4e82bdf75..93e0ef55c 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/nodehardwarestatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/nodehardwarestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/qtreestatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/qtreestatus.pm index 74c8ad6be..9ab332b59 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/qtreestatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/qtreestatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorstatus.pm b/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorstatus.pm index 6585a24b6..f75cbdf07 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorstatus.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorusage.pm b/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorusage.pm index 18a2bfd89..b46f4dc7c 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorusage.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/snapmirrorusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/mode/volumes.pm b/src/storage/netapp/ontap/oncommandapi/mode/volumes.pm index ab2042ebf..6197f5429 100644 --- a/src/storage/netapp/ontap/oncommandapi/mode/volumes.pm +++ b/src/storage/netapp/ontap/oncommandapi/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/oncommandapi/plugin.pm b/src/storage/netapp/ontap/oncommandapi/plugin.pm index f0e71817a..dd7f48811 100644 --- a/src/storage/netapp/ontap/oncommandapi/plugin.pm +++ b/src/storage/netapp/ontap/oncommandapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/custom/api.pm b/src/storage/netapp/ontap/restapi/custom/api.pm index 861bfd712..621b49c38 100644 --- a/src/storage/netapp/ontap/restapi/custom/api.pm +++ b/src/storage/netapp/ontap/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/aggregates.pm b/src/storage/netapp/ontap/restapi/mode/aggregates.pm index ae58096b0..b8b8517cc 100644 --- a/src/storage/netapp/ontap/restapi/mode/aggregates.pm +++ b/src/storage/netapp/ontap/restapi/mode/aggregates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/cluster.pm b/src/storage/netapp/ontap/restapi/mode/cluster.pm index f88b143fb..02adca3d1 100644 --- a/src/storage/netapp/ontap/restapi/mode/cluster.pm +++ b/src/storage/netapp/ontap/restapi/mode/cluster.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/components/bay.pm b/src/storage/netapp/ontap/restapi/mode/components/bay.pm index 39b98c86c..c6a183932 100644 --- a/src/storage/netapp/ontap/restapi/mode/components/bay.pm +++ b/src/storage/netapp/ontap/restapi/mode/components/bay.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/components/disk.pm b/src/storage/netapp/ontap/restapi/mode/components/disk.pm index dcaa6481a..1e2dfb959 100644 --- a/src/storage/netapp/ontap/restapi/mode/components/disk.pm +++ b/src/storage/netapp/ontap/restapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/components/fru.pm b/src/storage/netapp/ontap/restapi/mode/components/fru.pm index 7bd68ece4..247320c1f 100644 --- a/src/storage/netapp/ontap/restapi/mode/components/fru.pm +++ b/src/storage/netapp/ontap/restapi/mode/components/fru.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/components/shelf.pm b/src/storage/netapp/ontap/restapi/mode/components/shelf.pm index a4a1e5c5a..ae477f729 100644 --- a/src/storage/netapp/ontap/restapi/mode/components/shelf.pm +++ b/src/storage/netapp/ontap/restapi/mode/components/shelf.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/hardware.pm b/src/storage/netapp/ontap/restapi/mode/hardware.pm index 7fe67822c..8ec064039 100644 --- a/src/storage/netapp/ontap/restapi/mode/hardware.pm +++ b/src/storage/netapp/ontap/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/listvolumes.pm b/src/storage/netapp/ontap/restapi/mode/listvolumes.pm index 94f1f8d5b..65ccc3ce3 100644 --- a/src/storage/netapp/ontap/restapi/mode/listvolumes.pm +++ b/src/storage/netapp/ontap/restapi/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/luns.pm b/src/storage/netapp/ontap/restapi/mode/luns.pm index 911d23c33..a347305b2 100644 --- a/src/storage/netapp/ontap/restapi/mode/luns.pm +++ b/src/storage/netapp/ontap/restapi/mode/luns.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/quotas.pm b/src/storage/netapp/ontap/restapi/mode/quotas.pm index d2c3e5758..c64f4737d 100644 --- a/src/storage/netapp/ontap/restapi/mode/quotas.pm +++ b/src/storage/netapp/ontap/restapi/mode/quotas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/snapmirrors.pm b/src/storage/netapp/ontap/restapi/mode/snapmirrors.pm index 4c323ecf8..ea62b31ae 100644 --- a/src/storage/netapp/ontap/restapi/mode/snapmirrors.pm +++ b/src/storage/netapp/ontap/restapi/mode/snapmirrors.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/mode/volumes.pm b/src/storage/netapp/ontap/restapi/mode/volumes.pm index 6aa9e3b5f..d3d4719c2 100644 --- a/src/storage/netapp/ontap/restapi/mode/volumes.pm +++ b/src/storage/netapp/ontap/restapi/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/restapi/plugin.pm b/src/storage/netapp/ontap/restapi/plugin.pm index f5ecac971..e324f3982 100644 --- a/src/storage/netapp/ontap/restapi/plugin.pm +++ b/src/storage/netapp/ontap/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/aggregates.pm b/src/storage/netapp/ontap/snmp/mode/aggregates.pm index a8741336b..cf2ced7ba 100644 --- a/src/storage/netapp/ontap/snmp/mode/aggregates.pm +++ b/src/storage/netapp/ontap/snmp/mode/aggregates.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/cacheage.pm b/src/storage/netapp/ontap/snmp/mode/cacheage.pm index b5dfddd34..04affd9df 100644 --- a/src/storage/netapp/ontap/snmp/mode/cacheage.pm +++ b/src/storage/netapp/ontap/snmp/mode/cacheage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/clusternodes.pm b/src/storage/netapp/ontap/snmp/mode/clusternodes.pm index bd04781e8..af08b0a4e 100644 --- a/src/storage/netapp/ontap/snmp/mode/clusternodes.pm +++ b/src/storage/netapp/ontap/snmp/mode/clusternodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/communication.pm b/src/storage/netapp/ontap/snmp/mode/components/communication.pm index b65558060..9be3bc2cb 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/communication.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/communication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/electronics.pm b/src/storage/netapp/ontap/snmp/mode/components/electronics.pm index 2de56e3c8..919617e35 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/electronics.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/electronics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/fan.pm b/src/storage/netapp/ontap/snmp/mode/components/fan.pm index 7bbe425b9..83b566d52 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/fan.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/psu.pm b/src/storage/netapp/ontap/snmp/mode/components/psu.pm index aec4ca7e2..53b7fd0a7 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/psu.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/raid.pm b/src/storage/netapp/ontap/snmp/mode/components/raid.pm index 3bc7a1263..04ea9bcb1 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/raid.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/temperature.pm b/src/storage/netapp/ontap/snmp/mode/components/temperature.pm index 3e12abb36..97acac6f7 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/temperature.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/components/voltage.pm b/src/storage/netapp/ontap/snmp/mode/components/voltage.pm index 1f8dedcc7..c88bd48ad 100644 --- a/src/storage/netapp/ontap/snmp/mode/components/voltage.pm +++ b/src/storage/netapp/ontap/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/cpstatistics.pm b/src/storage/netapp/ontap/snmp/mode/cpstatistics.pm index 10438866e..455134ac7 100644 --- a/src/storage/netapp/ontap/snmp/mode/cpstatistics.pm +++ b/src/storage/netapp/ontap/snmp/mode/cpstatistics.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/cpuload.pm b/src/storage/netapp/ontap/snmp/mode/cpuload.pm index 81d8c501a..4c5992287 100644 --- a/src/storage/netapp/ontap/snmp/mode/cpuload.pm +++ b/src/storage/netapp/ontap/snmp/mode/cpuload.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/diskfailed.pm b/src/storage/netapp/ontap/snmp/mode/diskfailed.pm index aa4011ade..82059cf7a 100644 --- a/src/storage/netapp/ontap/snmp/mode/diskfailed.pm +++ b/src/storage/netapp/ontap/snmp/mode/diskfailed.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/failover.pm b/src/storage/netapp/ontap/snmp/mode/failover.pm index 92f234dda..6232cfa99 100644 --- a/src/storage/netapp/ontap/snmp/mode/failover.pm +++ b/src/storage/netapp/ontap/snmp/mode/failover.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/fan.pm b/src/storage/netapp/ontap/snmp/mode/fan.pm index 07ec17418..b3143189c 100644 --- a/src/storage/netapp/ontap/snmp/mode/fan.pm +++ b/src/storage/netapp/ontap/snmp/mode/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/filesys.pm b/src/storage/netapp/ontap/snmp/mode/filesys.pm index 4c20e6856..3b548032c 100644 --- a/src/storage/netapp/ontap/snmp/mode/filesys.pm +++ b/src/storage/netapp/ontap/snmp/mode/filesys.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/globalstatus.pm b/src/storage/netapp/ontap/snmp/mode/globalstatus.pm index 579b443e7..1d7c0de00 100644 --- a/src/storage/netapp/ontap/snmp/mode/globalstatus.pm +++ b/src/storage/netapp/ontap/snmp/mode/globalstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/listclusternodes.pm b/src/storage/netapp/ontap/snmp/mode/listclusternodes.pm index 2878569c0..c956a448f 100644 --- a/src/storage/netapp/ontap/snmp/mode/listclusternodes.pm +++ b/src/storage/netapp/ontap/snmp/mode/listclusternodes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/listfilesys.pm b/src/storage/netapp/ontap/snmp/mode/listfilesys.pm index e09e9eb4b..11e6442c7 100644 --- a/src/storage/netapp/ontap/snmp/mode/listfilesys.pm +++ b/src/storage/netapp/ontap/snmp/mode/listfilesys.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/listplexes.pm b/src/storage/netapp/ontap/snmp/mode/listplexes.pm index b263eb77b..8551db8fe 100644 --- a/src/storage/netapp/ontap/snmp/mode/listplexes.pm +++ b/src/storage/netapp/ontap/snmp/mode/listplexes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/listsnapvault.pm b/src/storage/netapp/ontap/snmp/mode/listsnapvault.pm index 92a554304..5c70f252f 100644 --- a/src/storage/netapp/ontap/snmp/mode/listsnapvault.pm +++ b/src/storage/netapp/ontap/snmp/mode/listsnapvault.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/ndmpsessions.pm b/src/storage/netapp/ontap/snmp/mode/ndmpsessions.pm index e582625c3..20c7a2dfe 100644 --- a/src/storage/netapp/ontap/snmp/mode/ndmpsessions.pm +++ b/src/storage/netapp/ontap/snmp/mode/ndmpsessions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/nvram.pm b/src/storage/netapp/ontap/snmp/mode/nvram.pm index 3b6e03a87..3b9ee96dc 100644 --- a/src/storage/netapp/ontap/snmp/mode/nvram.pm +++ b/src/storage/netapp/ontap/snmp/mode/nvram.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/partnerstatus.pm b/src/storage/netapp/ontap/snmp/mode/partnerstatus.pm index c70ecc061..1d66fed1d 100644 --- a/src/storage/netapp/ontap/snmp/mode/partnerstatus.pm +++ b/src/storage/netapp/ontap/snmp/mode/partnerstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/plexes.pm b/src/storage/netapp/ontap/snmp/mode/plexes.pm index fd8bc7833..ee1990ea3 100644 --- a/src/storage/netapp/ontap/snmp/mode/plexes.pm +++ b/src/storage/netapp/ontap/snmp/mode/plexes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/psu.pm b/src/storage/netapp/ontap/snmp/mode/psu.pm index 183477cb0..06fb97210 100644 --- a/src/storage/netapp/ontap/snmp/mode/psu.pm +++ b/src/storage/netapp/ontap/snmp/mode/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/quotas.pm b/src/storage/netapp/ontap/snmp/mode/quotas.pm index 97ab6059b..ecf8867c4 100644 --- a/src/storage/netapp/ontap/snmp/mode/quotas.pm +++ b/src/storage/netapp/ontap/snmp/mode/quotas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/sharecalls.pm b/src/storage/netapp/ontap/snmp/mode/sharecalls.pm index d1b9bffbe..acb4d8196 100644 --- a/src/storage/netapp/ontap/snmp/mode/sharecalls.pm +++ b/src/storage/netapp/ontap/snmp/mode/sharecalls.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/shelf.pm b/src/storage/netapp/ontap/snmp/mode/shelf.pm index 553c95efe..e1cb97124 100644 --- a/src/storage/netapp/ontap/snmp/mode/shelf.pm +++ b/src/storage/netapp/ontap/snmp/mode/shelf.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/sis.pm b/src/storage/netapp/ontap/snmp/mode/sis.pm index b49a64cce..faf0f3ec4 100644 --- a/src/storage/netapp/ontap/snmp/mode/sis.pm +++ b/src/storage/netapp/ontap/snmp/mode/sis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/snapmirrorlag.pm b/src/storage/netapp/ontap/snmp/mode/snapmirrorlag.pm index ad36ad78f..846578678 100644 --- a/src/storage/netapp/ontap/snmp/mode/snapmirrorlag.pm +++ b/src/storage/netapp/ontap/snmp/mode/snapmirrorlag.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/snapshotage.pm b/src/storage/netapp/ontap/snmp/mode/snapshotage.pm index 4b00dc03e..6b1e75445 100644 --- a/src/storage/netapp/ontap/snmp/mode/snapshotage.pm +++ b/src/storage/netapp/ontap/snmp/mode/snapshotage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/snapvaultusage.pm b/src/storage/netapp/ontap/snmp/mode/snapvaultusage.pm index b72d86b01..3706d2810 100644 --- a/src/storage/netapp/ontap/snmp/mode/snapvaultusage.pm +++ b/src/storage/netapp/ontap/snmp/mode/snapvaultusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/temperature.pm b/src/storage/netapp/ontap/snmp/mode/temperature.pm index 010f8e063..a3a46eb03 100644 --- a/src/storage/netapp/ontap/snmp/mode/temperature.pm +++ b/src/storage/netapp/ontap/snmp/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/mode/volumeoptions.pm b/src/storage/netapp/ontap/snmp/mode/volumeoptions.pm index 626ebc33b..a39b8f63f 100644 --- a/src/storage/netapp/ontap/snmp/mode/volumeoptions.pm +++ b/src/storage/netapp/ontap/snmp/mode/volumeoptions.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/ontap/snmp/plugin.pm b/src/storage/netapp/ontap/snmp/plugin.pm index d00371c6a..2ba1d33b3 100644 --- a/src/storage/netapp/ontap/snmp/plugin.pm +++ b/src/storage/netapp/ontap/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/custom/api.pm b/src/storage/netapp/santricity/restapi/custom/api.pm index 6d2dd5505..d721b2988 100644 --- a/src/storage/netapp/santricity/restapi/custom/api.pm +++ b/src/storage/netapp/santricity/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/battery.pm b/src/storage/netapp/santricity/restapi/mode/components/battery.pm index bb6254bec..8a52d0a2d 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/battery.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/battery.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/board.pm b/src/storage/netapp/santricity/restapi/mode/components/board.pm index 23f08db3e..08d60d0a5 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/board.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/board.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/cbd.pm b/src/storage/netapp/santricity/restapi/mode/components/cbd.pm index c4a10ad04..bc926bfd1 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/cbd.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/cbd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/cmd.pm b/src/storage/netapp/santricity/restapi/mode/components/cmd.pm index 11ce5cbc1..d22727d64 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/cmd.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/cmd.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/ctrl.pm b/src/storage/netapp/santricity/restapi/mode/components/ctrl.pm index 312ffd1a8..3a69b9b07 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/ctrl.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/ctrl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/drive.pm b/src/storage/netapp/santricity/restapi/mode/components/drive.pm index 751514de1..b06f9c457 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/drive.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/drive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/fan.pm b/src/storage/netapp/santricity/restapi/mode/components/fan.pm index 8cd1af344..52a70a051 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/fan.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/psu.pm b/src/storage/netapp/santricity/restapi/mode/components/psu.pm index cd8d7bdca..e9a84400b 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/psu.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/storage.pm b/src/storage/netapp/santricity/restapi/mode/components/storage.pm index c77cb68a7..7944aaf8c 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/storage.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/storage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/components/thsensor.pm b/src/storage/netapp/santricity/restapi/mode/components/thsensor.pm index 3af5401f7..476f435db 100644 --- a/src/storage/netapp/santricity/restapi/mode/components/thsensor.pm +++ b/src/storage/netapp/santricity/restapi/mode/components/thsensor.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/hardware.pm b/src/storage/netapp/santricity/restapi/mode/hardware.pm index b8e7911a3..d3bdac3fd 100644 --- a/src/storage/netapp/santricity/restapi/mode/hardware.pm +++ b/src/storage/netapp/santricity/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/storagecontrollers.pm b/src/storage/netapp/santricity/restapi/mode/storagecontrollers.pm index 869fd61db..b3b7437fb 100644 --- a/src/storage/netapp/santricity/restapi/mode/storagecontrollers.pm +++ b/src/storage/netapp/santricity/restapi/mode/storagecontrollers.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/storagepools.pm b/src/storage/netapp/santricity/restapi/mode/storagepools.pm index dcb27db97..e1306cb57 100644 --- a/src/storage/netapp/santricity/restapi/mode/storagepools.pm +++ b/src/storage/netapp/santricity/restapi/mode/storagepools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/storagesystems.pm b/src/storage/netapp/santricity/restapi/mode/storagesystems.pm index 561b86930..d5f79f18a 100644 --- a/src/storage/netapp/santricity/restapi/mode/storagesystems.pm +++ b/src/storage/netapp/santricity/restapi/mode/storagesystems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/mode/storagevolumes.pm b/src/storage/netapp/santricity/restapi/mode/storagevolumes.pm index 2b034ce5a..2b229aa93 100644 --- a/src/storage/netapp/santricity/restapi/mode/storagevolumes.pm +++ b/src/storage/netapp/santricity/restapi/mode/storagevolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/netapp/santricity/restapi/plugin.pm b/src/storage/netapp/santricity/restapi/plugin.pm index bcf287ac3..ce03558cd 100644 --- a/src/storage/netapp/santricity/restapi/plugin.pm +++ b/src/storage/netapp/santricity/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/custom/api.pm b/src/storage/nimble/restapi/custom/api.pm index 63ee836f2..b429d13c6 100644 --- a/src/storage/nimble/restapi/custom/api.pm +++ b/src/storage/nimble/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/arrays.pm b/src/storage/nimble/restapi/mode/arrays.pm index ca475532b..e9e4d25a8 100644 --- a/src/storage/nimble/restapi/mode/arrays.pm +++ b/src/storage/nimble/restapi/mode/arrays.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/components/disk.pm b/src/storage/nimble/restapi/mode/components/disk.pm index 1304766bd..3dfc5061c 100644 --- a/src/storage/nimble/restapi/mode/components/disk.pm +++ b/src/storage/nimble/restapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/components/fan.pm b/src/storage/nimble/restapi/mode/components/fan.pm index 93da67984..bc436a54a 100644 --- a/src/storage/nimble/restapi/mode/components/fan.pm +++ b/src/storage/nimble/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/components/psu.pm b/src/storage/nimble/restapi/mode/components/psu.pm index 20a30b300..71205b7ee 100644 --- a/src/storage/nimble/restapi/mode/components/psu.pm +++ b/src/storage/nimble/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/components/temperature.pm b/src/storage/nimble/restapi/mode/components/temperature.pm index a40e577b9..3b46e7340 100644 --- a/src/storage/nimble/restapi/mode/components/temperature.pm +++ b/src/storage/nimble/restapi/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/hardware.pm b/src/storage/nimble/restapi/mode/hardware.pm index d065ee05e..f5b8473f1 100644 --- a/src/storage/nimble/restapi/mode/hardware.pm +++ b/src/storage/nimble/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/mode/volumes.pm b/src/storage/nimble/restapi/mode/volumes.pm index 90e07217e..8201b87dc 100644 --- a/src/storage/nimble/restapi/mode/volumes.pm +++ b/src/storage/nimble/restapi/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/restapi/plugin.pm b/src/storage/nimble/restapi/plugin.pm index 4b3f6940e..5cca227ae 100644 --- a/src/storage/nimble/restapi/plugin.pm +++ b/src/storage/nimble/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/snmp/mode/globalstats.pm b/src/storage/nimble/snmp/mode/globalstats.pm index 9282b41fe..e0a545ee0 100644 --- a/src/storage/nimble/snmp/mode/globalstats.pm +++ b/src/storage/nimble/snmp/mode/globalstats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/snmp/mode/volumeusage.pm b/src/storage/nimble/snmp/mode/volumeusage.pm index 5f8352784..347ab52b3 100644 --- a/src/storage/nimble/snmp/mode/volumeusage.pm +++ b/src/storage/nimble/snmp/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/nimble/snmp/plugin.pm b/src/storage/nimble/snmp/plugin.pm index f557a5e3f..a2170d49e 100644 --- a/src/storage/nimble/snmp/plugin.pm +++ b/src/storage/nimble/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/custom/api.pm b/src/storage/oracle/zs/restapi/custom/api.pm index 1b55f1d7a..24fcb9162 100644 --- a/src/storage/oracle/zs/restapi/custom/api.pm +++ b/src/storage/oracle/zs/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/chassis.pm b/src/storage/oracle/zs/restapi/mode/components/chassis.pm index 0b3ba0080..f91bb0974 100644 --- a/src/storage/oracle/zs/restapi/mode/components/chassis.pm +++ b/src/storage/oracle/zs/restapi/mode/components/chassis.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/cpu.pm b/src/storage/oracle/zs/restapi/mode/components/cpu.pm index 47a8d80c1..3bc7c7788 100644 --- a/src/storage/oracle/zs/restapi/mode/components/cpu.pm +++ b/src/storage/oracle/zs/restapi/mode/components/cpu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/disk.pm b/src/storage/oracle/zs/restapi/mode/components/disk.pm index e62c29ee6..4b591a554 100644 --- a/src/storage/oracle/zs/restapi/mode/components/disk.pm +++ b/src/storage/oracle/zs/restapi/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/fan.pm b/src/storage/oracle/zs/restapi/mode/components/fan.pm index 29a5a1e81..9196df0b7 100644 --- a/src/storage/oracle/zs/restapi/mode/components/fan.pm +++ b/src/storage/oracle/zs/restapi/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/memory.pm b/src/storage/oracle/zs/restapi/mode/components/memory.pm index 17ad67b71..512f32984 100644 --- a/src/storage/oracle/zs/restapi/mode/components/memory.pm +++ b/src/storage/oracle/zs/restapi/mode/components/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/psu.pm b/src/storage/oracle/zs/restapi/mode/components/psu.pm index 1eb0522cb..4c997cb06 100644 --- a/src/storage/oracle/zs/restapi/mode/components/psu.pm +++ b/src/storage/oracle/zs/restapi/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/components/slot.pm b/src/storage/oracle/zs/restapi/mode/components/slot.pm index 062817e94..80b3d0c92 100644 --- a/src/storage/oracle/zs/restapi/mode/components/slot.pm +++ b/src/storage/oracle/zs/restapi/mode/components/slot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/hardware.pm b/src/storage/oracle/zs/restapi/mode/hardware.pm index 1f6453294..4525c651f 100644 --- a/src/storage/oracle/zs/restapi/mode/hardware.pm +++ b/src/storage/oracle/zs/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/mode/pools.pm b/src/storage/oracle/zs/restapi/mode/pools.pm index 33d451dde..4c9902787 100644 --- a/src/storage/oracle/zs/restapi/mode/pools.pm +++ b/src/storage/oracle/zs/restapi/mode/pools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/restapi/plugin.pm b/src/storage/oracle/zs/restapi/plugin.pm index 910e4b662..816c2ab4c 100644 --- a/src/storage/oracle/zs/restapi/plugin.pm +++ b/src/storage/oracle/zs/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/snmp/mode/components/module.pm b/src/storage/oracle/zs/snmp/mode/components/module.pm index 1a2a36b3f..bb1e48665 100644 --- a/src/storage/oracle/zs/snmp/mode/components/module.pm +++ b/src/storage/oracle/zs/snmp/mode/components/module.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/snmp/mode/hardware.pm b/src/storage/oracle/zs/snmp/mode/hardware.pm index a683bdb11..49727e33a 100644 --- a/src/storage/oracle/zs/snmp/mode/hardware.pm +++ b/src/storage/oracle/zs/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/snmp/mode/listshares.pm b/src/storage/oracle/zs/snmp/mode/listshares.pm index a4d22e69e..50d700f3f 100644 --- a/src/storage/oracle/zs/snmp/mode/listshares.pm +++ b/src/storage/oracle/zs/snmp/mode/listshares.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/snmp/mode/shareusage.pm b/src/storage/oracle/zs/snmp/mode/shareusage.pm index 669125bff..5267100be 100644 --- a/src/storage/oracle/zs/snmp/mode/shareusage.pm +++ b/src/storage/oracle/zs/snmp/mode/shareusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/oracle/zs/snmp/plugin.pm b/src/storage/oracle/zs/snmp/plugin.pm index 536b0277e..eae44056d 100644 --- a/src/storage/oracle/zs/snmp/plugin.pm +++ b/src/storage/oracle/zs/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/overland/neo/snmp/mode/components/drive.pm b/src/storage/overland/neo/snmp/mode/components/drive.pm index 7402bfb34..20ea6a831 100644 --- a/src/storage/overland/neo/snmp/mode/components/drive.pm +++ b/src/storage/overland/neo/snmp/mode/components/drive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/overland/neo/snmp/mode/components/library.pm b/src/storage/overland/neo/snmp/mode/components/library.pm index 5a787734c..2ccf2a1b4 100644 --- a/src/storage/overland/neo/snmp/mode/components/library.pm +++ b/src/storage/overland/neo/snmp/mode/components/library.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/overland/neo/snmp/mode/eventlog.pm b/src/storage/overland/neo/snmp/mode/eventlog.pm index af55ce3fb..f51b36847 100644 --- a/src/storage/overland/neo/snmp/mode/eventlog.pm +++ b/src/storage/overland/neo/snmp/mode/eventlog.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/overland/neo/snmp/mode/hardware.pm b/src/storage/overland/neo/snmp/mode/hardware.pm index 72ea165c4..9842d80df 100644 --- a/src/storage/overland/neo/snmp/mode/hardware.pm +++ b/src/storage/overland/neo/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/overland/neo/snmp/plugin.pm b/src/storage/overland/neo/snmp/plugin.pm index eb03a8264..2d1e6df2d 100644 --- a/src/storage/overland/neo/snmp/plugin.pm +++ b/src/storage/overland/neo/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/panzura/snmp/mode/cpucloud.pm b/src/storage/panzura/snmp/mode/cpucloud.pm index 40e194bba..83b1053b3 100644 --- a/src/storage/panzura/snmp/mode/cpucloud.pm +++ b/src/storage/panzura/snmp/mode/cpucloud.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -80,7 +80,7 @@ __END__ =head1 MODE -Check cpu usage of cloud controller (panzura-systemext). +Check CPU usage of cloud controller (panzura-systemext). =over 8 diff --git a/src/storage/panzura/snmp/mode/diskusagelocal.pm b/src/storage/panzura/snmp/mode/diskusagelocal.pm index f95a1d810..4a9b6d470 100644 --- a/src/storage/panzura/snmp/mode/diskusagelocal.pm +++ b/src/storage/panzura/snmp/mode/diskusagelocal.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/panzura/snmp/mode/memory.pm b/src/storage/panzura/snmp/mode/memory.pm index 1561610be..5550a4378 100644 --- a/src/storage/panzura/snmp/mode/memory.pm +++ b/src/storage/panzura/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/panzura/snmp/mode/ratios.pm b/src/storage/panzura/snmp/mode/ratios.pm index 201172703..886dd7458 100644 --- a/src/storage/panzura/snmp/mode/ratios.pm +++ b/src/storage/panzura/snmp/mode/ratios.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/panzura/snmp/plugin.pm b/src/storage/panzura/snmp/plugin.pm index bc01b0b1a..a65cc898c 100644 --- a/src/storage/panzura/snmp/plugin.pm +++ b/src/storage/panzura/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/custom/api.pm b/src/storage/purestorage/flasharray/legacy/restapi/custom/api.pm index 49aa5866e..a3a558ac6 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/custom/api.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/alarms.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/alarms.pm index f0a3dfbb2..346074927 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/alarms.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/alarms.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/arrays.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/arrays.pm index 251392d75..d9807bf0e 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/arrays.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/arrays.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/hardware.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/hardware.pm index 666c75798..24be0128b 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/hardware.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/listpgroups.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/listpgroups.pm index 05ce1dd77..398b7789a 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/listpgroups.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/listpgroups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/listvolumes.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/listvolumes.pm index fc3e6fea7..3a3d1d4d1 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/listvolumes.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/pgroupreplication.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/pgroupreplication.pm index aed9e0963..10b15fb53 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/pgroupreplication.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/pgroupreplication.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/mode/volumeusage.pm b/src/storage/purestorage/flasharray/legacy/restapi/mode/volumeusage.pm index b522d01db..0dac893f2 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/mode/volumeusage.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/mode/volumeusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/legacy/restapi/plugin.pm b/src/storage/purestorage/flasharray/legacy/restapi/plugin.pm index 666414e8a..2855de417 100644 --- a/src/storage/purestorage/flasharray/legacy/restapi/plugin.pm +++ b/src/storage/purestorage/flasharray/legacy/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/v2/restapi/custom/api.pm b/src/storage/purestorage/flasharray/v2/restapi/custom/api.pm index 1d8e31cf2..e4a9ad63f 100644 --- a/src/storage/purestorage/flasharray/v2/restapi/custom/api.pm +++ b/src/storage/purestorage/flasharray/v2/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/v2/restapi/mode/alerts.pm b/src/storage/purestorage/flasharray/v2/restapi/mode/alerts.pm index a1321719f..c3a423a5a 100644 --- a/src/storage/purestorage/flasharray/v2/restapi/mode/alerts.pm +++ b/src/storage/purestorage/flasharray/v2/restapi/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/v2/restapi/mode/arrays.pm b/src/storage/purestorage/flasharray/v2/restapi/mode/arrays.pm index 40e2bf697..e53952497 100644 --- a/src/storage/purestorage/flasharray/v2/restapi/mode/arrays.pm +++ b/src/storage/purestorage/flasharray/v2/restapi/mode/arrays.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/v2/restapi/mode/volumes.pm b/src/storage/purestorage/flasharray/v2/restapi/mode/volumes.pm index befdcf6b7..7c4be1f9b 100644 --- a/src/storage/purestorage/flasharray/v2/restapi/mode/volumes.pm +++ b/src/storage/purestorage/flasharray/v2/restapi/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flasharray/v2/restapi/plugin.pm b/src/storage/purestorage/flasharray/v2/restapi/plugin.pm index 4d51c6fae..d3c2003ab 100644 --- a/src/storage/purestorage/flasharray/v2/restapi/plugin.pm +++ b/src/storage/purestorage/flasharray/v2/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flashblade/v2/restapi/custom/api.pm b/src/storage/purestorage/flashblade/v2/restapi/custom/api.pm index 984ca955e..1c8fa8998 100644 --- a/src/storage/purestorage/flashblade/v2/restapi/custom/api.pm +++ b/src/storage/purestorage/flashblade/v2/restapi/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flashblade/v2/restapi/mode/alerts.pm b/src/storage/purestorage/flashblade/v2/restapi/mode/alerts.pm index eb82c55aa..868565d77 100644 --- a/src/storage/purestorage/flashblade/v2/restapi/mode/alerts.pm +++ b/src/storage/purestorage/flashblade/v2/restapi/mode/alerts.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flashblade/v2/restapi/mode/arrays.pm b/src/storage/purestorage/flashblade/v2/restapi/mode/arrays.pm index 16022ad29..cc199fff9 100644 --- a/src/storage/purestorage/flashblade/v2/restapi/mode/arrays.pm +++ b/src/storage/purestorage/flashblade/v2/restapi/mode/arrays.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flashblade/v2/restapi/mode/filesystems.pm b/src/storage/purestorage/flashblade/v2/restapi/mode/filesystems.pm index 495731c6b..980ff0418 100644 --- a/src/storage/purestorage/flashblade/v2/restapi/mode/filesystems.pm +++ b/src/storage/purestorage/flashblade/v2/restapi/mode/filesystems.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/flashblade/v2/restapi/plugin.pm b/src/storage/purestorage/flashblade/v2/restapi/plugin.pm index c1f481e3e..bcb112292 100644 --- a/src/storage/purestorage/flashblade/v2/restapi/plugin.pm +++ b/src/storage/purestorage/flashblade/v2/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/snmp/mode/stats.pm b/src/storage/purestorage/snmp/mode/stats.pm index eafbe8e89..9bfeb24a0 100644 --- a/src/storage/purestorage/snmp/mode/stats.pm +++ b/src/storage/purestorage/snmp/mode/stats.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/purestorage/snmp/plugin.pm b/src/storage/purestorage/snmp/plugin.pm index dffb820f6..58185d598 100644 --- a/src/storage/purestorage/snmp/plugin.pm +++ b/src/storage/purestorage/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/components/disk.pm b/src/storage/qnap/snmp/mode/components/disk.pm index 09ebe7565..abf8fe5a9 100644 --- a/src/storage/qnap/snmp/mode/components/disk.pm +++ b/src/storage/qnap/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/components/fan.pm b/src/storage/qnap/snmp/mode/components/fan.pm index bc35d93d0..a08f7b4ae 100644 --- a/src/storage/qnap/snmp/mode/components/fan.pm +++ b/src/storage/qnap/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/components/mdisk.pm b/src/storage/qnap/snmp/mode/components/mdisk.pm index 0fffde0ba..c9a7c3715 100644 --- a/src/storage/qnap/snmp/mode/components/mdisk.pm +++ b/src/storage/qnap/snmp/mode/components/mdisk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/components/psu.pm b/src/storage/qnap/snmp/mode/components/psu.pm index 0c07d8449..b1a945d8d 100644 --- a/src/storage/qnap/snmp/mode/components/psu.pm +++ b/src/storage/qnap/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/components/raid.pm b/src/storage/qnap/snmp/mode/components/raid.pm index 889159dbf..2ee528319 100644 --- a/src/storage/qnap/snmp/mode/components/raid.pm +++ b/src/storage/qnap/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/components/temperature.pm b/src/storage/qnap/snmp/mode/components/temperature.pm index 22272ecfb..0880174be 100644 --- a/src/storage/qnap/snmp/mode/components/temperature.pm +++ b/src/storage/qnap/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/hardware.pm b/src/storage/qnap/snmp/mode/hardware.pm index c392d8b41..d55bf0627 100644 --- a/src/storage/qnap/snmp/mode/hardware.pm +++ b/src/storage/qnap/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/memory.pm b/src/storage/qnap/snmp/mode/memory.pm index 0dafa9f56..861ba2f8d 100644 --- a/src/storage/qnap/snmp/mode/memory.pm +++ b/src/storage/qnap/snmp/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/pools.pm b/src/storage/qnap/snmp/mode/pools.pm index 2b0bcfd35..e10d2d6c9 100644 --- a/src/storage/qnap/snmp/mode/pools.pm +++ b/src/storage/qnap/snmp/mode/pools.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/upgrade.pm b/src/storage/qnap/snmp/mode/upgrade.pm index 569f8c4f5..a96e107a5 100644 --- a/src/storage/qnap/snmp/mode/upgrade.pm +++ b/src/storage/qnap/snmp/mode/upgrade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/mode/volumes.pm b/src/storage/qnap/snmp/mode/volumes.pm index 8753c55a1..0636846c8 100644 --- a/src/storage/qnap/snmp/mode/volumes.pm +++ b/src/storage/qnap/snmp/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qnap/snmp/plugin.pm b/src/storage/qnap/snmp/plugin.pm index 2cb55688f..bc2c0ad98 100644 --- a/src/storage/qnap/snmp/plugin.pm +++ b/src/storage/qnap/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/components/disk.pm b/src/storage/qsan/nas/snmp/mode/components/disk.pm index ae340aaf2..82d179936 100644 --- a/src/storage/qsan/nas/snmp/mode/components/disk.pm +++ b/src/storage/qsan/nas/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/components/fan.pm b/src/storage/qsan/nas/snmp/mode/components/fan.pm index b42b978ad..6102bd135 100644 --- a/src/storage/qsan/nas/snmp/mode/components/fan.pm +++ b/src/storage/qsan/nas/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/components/psu.pm b/src/storage/qsan/nas/snmp/mode/components/psu.pm index 0794321a8..ad53c5607 100644 --- a/src/storage/qsan/nas/snmp/mode/components/psu.pm +++ b/src/storage/qsan/nas/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/components/resources.pm b/src/storage/qsan/nas/snmp/mode/components/resources.pm index f58dc1269..7b3cf275b 100644 --- a/src/storage/qsan/nas/snmp/mode/components/resources.pm +++ b/src/storage/qsan/nas/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/components/temperature.pm b/src/storage/qsan/nas/snmp/mode/components/temperature.pm index df7208e0e..1abf002b1 100644 --- a/src/storage/qsan/nas/snmp/mode/components/temperature.pm +++ b/src/storage/qsan/nas/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/components/voltage.pm b/src/storage/qsan/nas/snmp/mode/components/voltage.pm index acab49df4..55b252d18 100644 --- a/src/storage/qsan/nas/snmp/mode/components/voltage.pm +++ b/src/storage/qsan/nas/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/mode/hardware.pm b/src/storage/qsan/nas/snmp/mode/hardware.pm index 74543fd86..d97de668c 100644 --- a/src/storage/qsan/nas/snmp/mode/hardware.pm +++ b/src/storage/qsan/nas/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/qsan/nas/snmp/plugin.pm b/src/storage/qsan/nas/snmp/plugin.pm index 164afc74b..2e1281aab 100644 --- a/src/storage/qsan/nas/snmp/plugin.pm +++ b/src/storage/qsan/nas/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/custom/api.pm b/src/storage/quantum/dxi/ssh/custom/api.pm index f98f0b6a4..214dc2a82 100644 --- a/src/storage/quantum/dxi/ssh/custom/api.pm +++ b/src/storage/quantum/dxi/ssh/custom/api.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/compaction.pm b/src/storage/quantum/dxi/ssh/mode/compaction.pm index 7db3334d9..2a60506cb 100644 --- a/src/storage/quantum/dxi/ssh/mode/compaction.pm +++ b/src/storage/quantum/dxi/ssh/mode/compaction.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/dedupnas.pm b/src/storage/quantum/dxi/ssh/mode/dedupnas.pm index a251372d2..7589eed8d 100644 --- a/src/storage/quantum/dxi/ssh/mode/dedupnas.pm +++ b/src/storage/quantum/dxi/ssh/mode/dedupnas.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/dedupvtl.pm b/src/storage/quantum/dxi/ssh/mode/dedupvtl.pm index 837050356..bca059d8d 100644 --- a/src/storage/quantum/dxi/ssh/mode/dedupvtl.pm +++ b/src/storage/quantum/dxi/ssh/mode/dedupvtl.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/diskusage.pm b/src/storage/quantum/dxi/ssh/mode/diskusage.pm index 3014cfe3f..3d31e08ff 100644 --- a/src/storage/quantum/dxi/ssh/mode/diskusage.pm +++ b/src/storage/quantum/dxi/ssh/mode/diskusage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/health.pm b/src/storage/quantum/dxi/ssh/mode/health.pm index 03111554f..493b6c414 100644 --- a/src/storage/quantum/dxi/ssh/mode/health.pm +++ b/src/storage/quantum/dxi/ssh/mode/health.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/hostbusadapterstatus.pm b/src/storage/quantum/dxi/ssh/mode/hostbusadapterstatus.pm index bd9888197..b86e10182 100644 --- a/src/storage/quantum/dxi/ssh/mode/hostbusadapterstatus.pm +++ b/src/storage/quantum/dxi/ssh/mode/hostbusadapterstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/memory.pm b/src/storage/quantum/dxi/ssh/mode/memory.pm index e4b6061bf..fc0cd1255 100644 --- a/src/storage/quantum/dxi/ssh/mode/memory.pm +++ b/src/storage/quantum/dxi/ssh/mode/memory.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/network.pm b/src/storage/quantum/dxi/ssh/mode/network.pm index da78e515d..42072a2d4 100644 --- a/src/storage/quantum/dxi/ssh/mode/network.pm +++ b/src/storage/quantum/dxi/ssh/mode/network.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/reclamation.pm b/src/storage/quantum/dxi/ssh/mode/reclamation.pm index 59cfe66e4..dea1fc09f 100644 --- a/src/storage/quantum/dxi/ssh/mode/reclamation.pm +++ b/src/storage/quantum/dxi/ssh/mode/reclamation.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/reduction.pm b/src/storage/quantum/dxi/ssh/mode/reduction.pm index 642fbe3c7..687c26edc 100644 --- a/src/storage/quantum/dxi/ssh/mode/reduction.pm +++ b/src/storage/quantum/dxi/ssh/mode/reduction.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/storagearraystatus.pm b/src/storage/quantum/dxi/ssh/mode/storagearraystatus.pm index 7d6fe7dca..d6e5ca4cc 100644 --- a/src/storage/quantum/dxi/ssh/mode/storagearraystatus.pm +++ b/src/storage/quantum/dxi/ssh/mode/storagearraystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/systemstatus.pm b/src/storage/quantum/dxi/ssh/mode/systemstatus.pm index ce0cc01e5..c0189bb6f 100644 --- a/src/storage/quantum/dxi/ssh/mode/systemstatus.pm +++ b/src/storage/quantum/dxi/ssh/mode/systemstatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/mode/throughput.pm b/src/storage/quantum/dxi/ssh/mode/throughput.pm index b6d5a1068..251b4c665 100644 --- a/src/storage/quantum/dxi/ssh/mode/throughput.pm +++ b/src/storage/quantum/dxi/ssh/mode/throughput.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/dxi/ssh/plugin.pm b/src/storage/quantum/dxi/ssh/plugin.pm index f79e08b7e..2cfad67e5 100644 --- a/src/storage/quantum/dxi/ssh/plugin.pm +++ b/src/storage/quantum/dxi/ssh/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/global.pm b/src/storage/quantum/scalar/snmp/mode/components/global.pm index 432f901bd..8af95bacd 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/global.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/global.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/humidity.pm b/src/storage/quantum/scalar/snmp/mode/components/humidity.pm index 7de30e803..e38661eae 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/humidity.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/humidity.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/physicaldrive.pm b/src/storage/quantum/scalar/snmp/mode/components/physicaldrive.pm index 73f33cd0f..8cf79ff27 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/physicaldrive.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/physicaldrive.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/psu.pm b/src/storage/quantum/scalar/snmp/mode/components/psu.pm index b5995caa8..5a5f9bd8c 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/psu.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/resources.pm b/src/storage/quantum/scalar/snmp/mode/components/resources.pm index 9a933a244..e597c3d2e 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/resources.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/subsystem.pm b/src/storage/quantum/scalar/snmp/mode/components/subsystem.pm index 5b58b8a29..3e337fb88 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/subsystem.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/subsystem.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/temperature.pm b/src/storage/quantum/scalar/snmp/mode/components/temperature.pm index 9bb6c9433..dd455e5d4 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/temperature.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/components/voltage.pm b/src/storage/quantum/scalar/snmp/mode/components/voltage.pm index d2d61d118..536689fda 100644 --- a/src/storage/quantum/scalar/snmp/mode/components/voltage.pm +++ b/src/storage/quantum/scalar/snmp/mode/components/voltage.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/mode/hardware.pm b/src/storage/quantum/scalar/snmp/mode/hardware.pm index c8752a20f..d6870e84c 100644 --- a/src/storage/quantum/scalar/snmp/mode/hardware.pm +++ b/src/storage/quantum/scalar/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/quantum/scalar/snmp/plugin.pm b/src/storage/quantum/scalar/snmp/plugin.pm index 40a292d55..b04d19410 100644 --- a/src/storage/quantum/scalar/snmp/plugin.pm +++ b/src/storage/quantum/scalar/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/cap.pm b/src/storage/storagetek/sl/snmp/mode/components/cap.pm index 8ae52f574..0fe5dff95 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/cap.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/cap.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/controller.pm b/src/storage/storagetek/sl/snmp/mode/components/controller.pm index d17b078d5..5bafea42a 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/controller.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/controller.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/elevator.pm b/src/storage/storagetek/sl/snmp/mode/components/elevator.pm index d6a8635e3..036061560 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/elevator.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/elevator.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/fan.pm b/src/storage/storagetek/sl/snmp/mode/components/fan.pm index 526d85681..a5e61c465 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/fan.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/interface.pm b/src/storage/storagetek/sl/snmp/mode/components/interface.pm index c95f936a9..004d76403 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/interface.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/interface.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/psu.pm b/src/storage/storagetek/sl/snmp/mode/components/psu.pm index 4655c2c83..399fc3698 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/psu.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/resources.pm b/src/storage/storagetek/sl/snmp/mode/components/resources.pm index 5a9846eb0..1ddd8b81f 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/resources.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/resources.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/robot.pm b/src/storage/storagetek/sl/snmp/mode/components/robot.pm index 9ded2073f..00b9b6208 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/robot.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/robot.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/temperature.pm b/src/storage/storagetek/sl/snmp/mode/components/temperature.pm index 02d55c1ca..54a10adb5 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/temperature.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/components/turntable.pm b/src/storage/storagetek/sl/snmp/mode/components/turntable.pm index c06f48d8a..f0f369ca6 100644 --- a/src/storage/storagetek/sl/snmp/mode/components/turntable.pm +++ b/src/storage/storagetek/sl/snmp/mode/components/turntable.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/mode/hardware.pm b/src/storage/storagetek/sl/snmp/mode/hardware.pm index 10aeb0b7a..b3ce00ea2 100644 --- a/src/storage/storagetek/sl/snmp/mode/hardware.pm +++ b/src/storage/storagetek/sl/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/storagetek/sl/snmp/plugin.pm b/src/storage/storagetek/sl/snmp/plugin.pm index aba638050..79a52e934 100644 --- a/src/storage/storagetek/sl/snmp/plugin.pm +++ b/src/storage/storagetek/sl/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/components/disk.pm b/src/storage/synology/snmp/mode/components/disk.pm index f06e3df9f..6b3df723e 100644 --- a/src/storage/synology/snmp/mode/components/disk.pm +++ b/src/storage/synology/snmp/mode/components/disk.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/components/fan.pm b/src/storage/synology/snmp/mode/components/fan.pm index 1e1d90e91..fc4b579be 100644 --- a/src/storage/synology/snmp/mode/components/fan.pm +++ b/src/storage/synology/snmp/mode/components/fan.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/components/psu.pm b/src/storage/synology/snmp/mode/components/psu.pm index 41fbbeb7d..d2c01d7a1 100644 --- a/src/storage/synology/snmp/mode/components/psu.pm +++ b/src/storage/synology/snmp/mode/components/psu.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/components/raid.pm b/src/storage/synology/snmp/mode/components/raid.pm index a22d60b09..57c7a2a46 100644 --- a/src/storage/synology/snmp/mode/components/raid.pm +++ b/src/storage/synology/snmp/mode/components/raid.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/components/system.pm b/src/storage/synology/snmp/mode/components/system.pm index dcd384fd7..305479e4a 100644 --- a/src/storage/synology/snmp/mode/components/system.pm +++ b/src/storage/synology/snmp/mode/components/system.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/ha.pm b/src/storage/synology/snmp/mode/ha.pm index f85af4ec3..9daca74fc 100644 --- a/src/storage/synology/snmp/mode/ha.pm +++ b/src/storage/synology/snmp/mode/ha.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/hardware.pm b/src/storage/synology/snmp/mode/hardware.pm index 369fd47eb..e30b77b74 100644 --- a/src/storage/synology/snmp/mode/hardware.pm +++ b/src/storage/synology/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/temperature.pm b/src/storage/synology/snmp/mode/temperature.pm index a181422f1..5929bed3e 100644 --- a/src/storage/synology/snmp/mode/temperature.pm +++ b/src/storage/synology/snmp/mode/temperature.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/upgrade.pm b/src/storage/synology/snmp/mode/upgrade.pm index b53b11541..9a0c9473a 100644 --- a/src/storage/synology/snmp/mode/upgrade.pm +++ b/src/storage/synology/snmp/mode/upgrade.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/mode/ups.pm b/src/storage/synology/snmp/mode/ups.pm index bb85c54f5..b231a3e12 100644 --- a/src/storage/synology/snmp/mode/ups.pm +++ b/src/storage/synology/snmp/mode/ups.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/synology/snmp/plugin.pm b/src/storage/synology/snmp/plugin.pm index 6ef4bebef..1ed1870be 100644 --- a/src/storage/synology/snmp/plugin.pm +++ b/src/storage/synology/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/violin/3000/snmp/plugin.pm b/src/storage/violin/3000/snmp/plugin.pm index 65e113e9c..b0a282261 100644 --- a/src/storage/violin/3000/snmp/plugin.pm +++ b/src/storage/violin/3000/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -44,6 +44,6 @@ __END__ =head1 PLUGIN DESCRIPTION Check Violin 3000 series in SNMP. -Please use plugin SNMP Linux for system checks ('cpu', 'memory', 'traffic',...). +Please use the SNMP Linux plugin for system checks (CPU, memory, traffic, ...). =cut diff --git a/src/storage/wd/nas/snmp/mode/hardware.pm b/src/storage/wd/nas/snmp/mode/hardware.pm index 07508a7a0..3bc890751 100644 --- a/src/storage/wd/nas/snmp/mode/hardware.pm +++ b/src/storage/wd/nas/snmp/mode/hardware.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/wd/nas/snmp/mode/listvolumes.pm b/src/storage/wd/nas/snmp/mode/listvolumes.pm index bafff378a..8b4b070cd 100644 --- a/src/storage/wd/nas/snmp/mode/listvolumes.pm +++ b/src/storage/wd/nas/snmp/mode/listvolumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/wd/nas/snmp/mode/volumes.pm b/src/storage/wd/nas/snmp/mode/volumes.pm index 9b35b409f..6e1844e22 100644 --- a/src/storage/wd/nas/snmp/mode/volumes.pm +++ b/src/storage/wd/nas/snmp/mode/volumes.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/src/storage/wd/nas/snmp/plugin.pm b/src/storage/wd/nas/snmp/plugin.pm index 8d5f1ae41..3e938556c 100644 --- a/src/storage/wd/nas/snmp/plugin.pm +++ b/src/storage/wd/nas/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2023 Centreon (http://www.centreon.com/) +# Copyright 2024 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for diff --git a/tests/functional/linux/os-linux-local.robot b/tests/functional/linux/os-linux-local.robot new file mode 100644 index 000000000..0a1446fa9 --- /dev/null +++ b/tests/functional/linux/os-linux-local.robot @@ -0,0 +1,377 @@ +*** Settings *** +Documentation OS Linux Local plugin + +Library OperatingSystem +Library String + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin + +# Test list-systemdservices mode with filter-name option set to a fake value +&{linux_local_listsystemd_test1} +... filtername=toto +... filterdescription= +... result=List systemd services: + +# Test list-systemdservices mode with filter-name option set to a service name value +&{linux_local_listsystemd_test2} +... filtername=NetworkManager.service +... filterdescription= +... result=List systemd services: \n\'NetworkManager.service\' [desc = NetworkManager.service] [load = not-found] [active = inactive] [sub = dead] + +# Test list-systemdservices mode with filter-description option set to a fake value +&{linux_local_listsystemd_test3} +... filtername= +... filterdescription=toto +... result=List systemd services: + +# Test list-systemdservices mode with filter-description option set to a service description value +&{linux_local_listsystemd_test4} +... filtername= +... filterdescription='User Manager for UID 1001' +... result=List systemd services: \n\'user@1001.service\' [desc = User Manager for UID 1001] [load = loaded] [active = active] [sub = running] + +@{linux_local_listsystemd_tests} +... &{linux_local_listsystemd_test1} +... &{linux_local_listsystemd_test2} +... &{linux_local_listsystemd_test3} +... &{linux_local_listsystemd_test4} + +# Test simple usage of the systemd-sc-status mode +&{linux_local_systemd_test_1} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 120, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with filter-name option set to a fake value +&{linux_local_systemd_test_2} +... filtername=toto +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=UNKNOWN: No service found. + +# Test systemd-sc-status mode with filter-name option set to a service name value +&{linux_local_systemd_test_3} +... filtername=NetworkManager.service +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=OK: Total Running: 0, Total Failed: 0, Total Dead: 1, Total Exited: 0 - Service 'NetworkManager.service' status : not-found/inactive/dead [boot: -] | 'total_running'=0;;;0;1 'total_failed'=0;;;0;1 'total_dead'=1;;;0;1 'total_exited'=0;;;0;1 + +# Test systemd-sc-status mode with exclude-name option set to a fake value +&{linux_local_systemd_test_4} +... filtername= +... excludename=toto +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 120, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with exclude-name option set to a service name value +&{linux_local_systemd_test_5} +... filtername= +... excludename=NetworkManager.service +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 119, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;413 'total_failed'=0;;;0;413 'total_dead'=119;;;0;413 'total_exited'=40;;;0;413 + +# Test systemd-sc-status mode with warning-status option set to '\%{sub} =~ /exited/ && \%{display} =~ /network/' +&{linux_local_systemd_test_6} +... filtername= +... excludename= +... warningstatus='\%{sub} =~ /exited/ && \%{display} =~ /network/' +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=WARNING: Service 'systemd-networkd-wait-online.service' status : loaded/active/exited [boot: enabled] - Service 'walinuxagent-network-setup.service' status : loaded/active/exited [boot: enabled] | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with critical-status option set to '\%{sub} =~ /exited/ && \%{display} =~ /network/' +&{linux_local_systemd_test_7} +... filtername= +... excludename= +... warningstatus= +... criticalstatus='\%{sub} =~ /exited/ && \%{display} =~ /network/' +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=CRITICAL: Service 'systemd-networkd-wait-online.service' status : loaded/active/exited [boot: enabled] - Service 'walinuxagent-network-setup.service' status : loaded/active/exited [boot: enabled] | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with warning-total-running option set to 20 +&{linux_local_systemd_test_8} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning=20 +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=WARNING: Total Running: 40 | 'total_running'=40;0:20;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with critical-total-running option set to 20 +&{linux_local_systemd_test_9} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning=20 +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=CRITICAL: Total Running: 40 | 'total_running'=40;;0:20;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with warning-total-dead option set to 20 +&{linux_local_systemd_test_10} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead=20 +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=WARNING: Total Dead: 120 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;0:20;;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with critical-total-dead option set to 20 +&{linux_local_systemd_test_11} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead=20 +... warningtotalexited= +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=CRITICAL: Total Dead: 120 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;0:20;0;414 'total_exited'=40;;;0;414 + +# Test systemd-sc-status mode with warning-total-exited option set to 20 +&{linux_local_systemd_test_12} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited=20 +... criticaltotalexited= +... warningtotalfailed= +... criticaltotalfailed= +... result=WARNING: Total Exited: 40 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;0:20;;0;414 + +# Test systemd-sc-status mode with critical-total-exited option set to 20 +&{linux_local_systemd_test_13} +... filtername= +... excludename= +... warningstatus= +... criticalstatus= +... warningtotalrunning= +... criticaltotalrunning= +... warningtotaldead= +... criticaltotaldead= +... warningtotalexited= +... criticaltotalexited=20 +... warningtotalfailed= +... criticaltotalfailed= +... result=CRITICAL: Total Exited: 40 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;0:20;0;414 + +# Test systemd-sc-status mode with warning-total-failed option : NO DATA FOR THIS TEST + +# Test systemd-sc-status mode with critical-total-failed option : NO DATA FOR THIS TEST + +@{linux_local_systemd_tests} +... &{linux_local_systemd_test_1} +... &{linux_local_systemd_test_2} +... &{linux_local_systemd_test_3} +... &{linux_local_systemd_test_4} +... &{linux_local_systemd_test_5} +... &{linux_local_systemd_test_6} +... &{linux_local_systemd_test_7} +... &{linux_local_systemd_test_8} +... &{linux_local_systemd_test_9} +... &{linux_local_systemd_test_10} +... &{linux_local_systemd_test_11} +... &{linux_local_systemd_test_12} +... &{linux_local_systemd_test_13} + + +*** Test Cases *** +Linux Local Systemd-sc-status + [Documentation] Linux Local Systemd services status + [Tags] os linux local + FOR ${linux_local_systemd_test} IN @{linux_local_systemd_tests} + ${command} Catenate + ... ${CMD} + ... --mode=systemd-sc-status + ${length} Get Length ${linux_local_systemd_test.filtername} + IF ${length} > 0 + ${command} Catenate ${command} --filter-name=${linux_local_systemd_test.filtername} + END + ${length} Get Length ${linux_local_systemd_test.excludename} + IF ${length} > 0 + ${command} Catenate ${command} --exclude-name=${linux_local_systemd_test.excludename} + END + ${length} Get Length ${linux_local_systemd_test.warningstatus} + IF ${length} > 0 + ${command} Catenate ${command} --warning-status=${linux_local_systemd_test.warningstatus} + END + ${length} Get Length ${linux_local_systemd_test.criticalstatus} + IF ${length} > 0 + ${command} Catenate ${command} --critical-status=${linux_local_systemd_test.criticalstatus} + END + ${length} Get Length ${linux_local_systemd_test.warningtotalrunning} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-total-running=${linux_local_systemd_test.warningtotalrunning} + END + ${length} Get Length ${linux_local_systemd_test.criticaltotalrunning} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-total-running=${linux_local_systemd_test.criticaltotalrunning} + END + ${length} Get Length ${linux_local_systemd_test.warningtotaldead} + IF ${length} > 0 + ${command} Catenate ${command} --warning-total-dead=${linux_local_systemd_test.warningtotaldead} + END + ${length} Get Length ${linux_local_systemd_test.criticaltotaldead} + IF ${length} > 0 + ${command} Catenate ${command} --critical-total-dead=${linux_local_systemd_test.criticaltotaldead} + END + ${length} Get Length ${linux_local_systemd_test.warningtotalexited} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-total-exited=${linux_local_systemd_test.warningtotalexited} + END + ${length} Get Length ${linux_local_systemd_test.criticaltotalexited} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-total-exited=${linux_local_systemd_test.criticaltotalexited} + END + ${length} Get Length ${linux_local_systemd_test.warningtotalfailed} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-total-failed=${linux_local_systemd_test.warningtotalfailed} + END + ${length} Get Length ${linux_local_systemd_test.criticaltotalfailed} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-total-failed=${linux_local_systemd_test.criticaltotalfailed} + END + + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${linux_local_systemd_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${linux_local_systemd_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END + +Linux Local List-systemd-services + [Documentation] Linux Local List Systemd services + [Tags] os linux local + FOR ${linux_local_listsystemd_test} IN @{linux_local_listsystemd_tests} + ${command} Catenate + ... ${CMD} + ... --mode=list-systemdservices + ${length} Get Length ${linux_local_listsystemd_test.filtername} + IF ${length} > 0 + ${command} Catenate ${command} --filter-name=${linux_local_listsystemd_test.filtername} + END + ${length} Get Length ${linux_local_listsystemd_test.filterdescription} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --filter-description=${linux_local_listsystemd_test.filterdescription} + END + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${linux_local_listsystemd_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${linux_local_listsystemd_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END diff --git a/tests/functional/snmp/hardware-ups-sputnik-snmp.robot b/tests/functional/snmp/hardware-ups-sputnik-snmp.robot new file mode 100644 index 000000000..59567b59e --- /dev/null +++ b/tests/functional/snmp/hardware-ups-sputnik-snmp.robot @@ -0,0 +1,63 @@ +*** Settings *** +Documentation Hardware UPS Sputnik SNMP plugin + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::inmatics::sputnik::snmp::plugin + +*** Test Cases *** +Sputnik UPS - Environment ${tc}/9 + [Tags] hardware UPS snmp + ${command} Catenate + ... ${CMD} + ... --mode=environment + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=hardware-ups/hardware-ups-sputnik + + # Append options to command + ${opt} Append Option --warning-temperature ${w_temperature} + ${command} Catenate ${command} ${opt} + ${opt} Append Option --critical-temperature ${c_temperature} + ${command} Catenate ${command} ${opt} + ${opt} Append Option --warning-humidity ${w_humidity} + ${command} Catenate ${command} ${opt} + ${opt} Append Option --critical-humidity ${c_humidity} + ${command} Catenate ${command} ${opt} + ${opt} Append Option --filter-id ${filter_id} + ${command} Catenate ${command} ${opt} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + + Examples: tc filter_id w_temperature c_temperature w_humidity c_humidity expected_result -- + ... 1 1 30 50 50 70 OK: 'Sensor 1': temperature 20.06 C, humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;0:30;0:50;; 'Sensor 1#environment.humidity.percentage'=33%;0:50;0:70;0;100 + ... 2 1 20 50 50 70 WARNING: 'Sensor 1': temperature 20.06 C | 'Sensor 1#environment.temperature.celsius'=20.06C;0:20;0:50;; 'Sensor 1#environment.humidity.percentage'=33%;0:50;0:70;0;100 + ... 3 1 10 20 50 70 CRITICAL: 'Sensor 1': temperature 20.06 C | 'Sensor 1#environment.temperature.celsius'=20.06C;0:10;0:20;; 'Sensor 1#environment.humidity.percentage'=33%;0:50;0:70;0;100 + ... 4 1 30 50 20 70 WARNING: 'Sensor 1': humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;0:30;0:50;; 'Sensor 1#environment.humidity.percentage'=33%;0:20;0:70;0;100 + ... 5 1 30 50 20 30 CRITICAL: 'Sensor 1': humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;0:30;0:50;; 'Sensor 1#environment.humidity.percentage'=33%;0:20;0:30;0;100 + ... 6 1 10 50 20 70 WARNING: 'Sensor 1': temperature 20.06 C, humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;0:10;0:50;; 'Sensor 1#environment.humidity.percentage'=33%;0:20;0:70;0;100 + ... 7 1 10 20 20 30 CRITICAL: 'Sensor 1': temperature 20.06 C, humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;0:10;0:20;; 'Sensor 1#environment.humidity.percentage'=33%;0:20;0:30;0;100 + ... 8 2 30 50 50 70 UNKNOWN: No sensors found. + ... 9 1 _empty_ _empty_ _empty_ _empty_ OK: 'Sensor 1': temperature 20.06 C, humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;;;; 'Sensor 1#environment.humidity.percentage'=33%;;;0;100 + +*** Keywords *** +Append Option + [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' + [Arguments] ${option} ${value} + ${value} Set Variable If '${value}' == '_empty_' '' ${value} + [return] ${option}=${value} + diff --git a/tests/functional/snmp/network-aruba-instant-ap-usage.robot b/tests/functional/snmp/network-aruba-instant-ap-usage.robot new file mode 100644 index 000000000..8f6606813 --- /dev/null +++ b/tests/functional/snmp/network-aruba-instant-ap-usage.robot @@ -0,0 +1,79 @@ +*** Settings *** +Documentation Network Aruba Instant SNMP plugin - AP Usage + +Library OperatingSystem +Library String + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=network::aruba::instant::snmp::plugin --mode=ap-usage --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024 + +&{ap_usage_test_1} +... documentation=Test AP usage without filters +... snmpcommunity=network-aruba-instant/ap-usage +... filtercounters= +... filtername= +... warningclients= +... criticalclients= +... result=OK: total access points: 5 - All access points are ok | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100 + +&{ap_usage_test_2} +... documentation=Test AP usage with filter on clients +... snmpcommunity=network-aruba-instant/ap-usage +... filtercounters=clients +... filtername= +... warningclients= +... criticalclients= +... result=OK: All access points are ok | 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 4#clients.current.count'=11;;;0; 'AP Sotano#clients.current.count'=4;;;0; + +&{ap_usage_test_3} +... documentation=Test AP usage with filter on clients and filter on name +... snmpcommunity=network-aruba-instant/ap-usage +... filtercounters=clients +... filtername=Piso 4 +... warningclients= +... criticalclients= +... result=OK: Access Point 'AP Piso 4' Current Clients: 11 | 'AP Piso 4#clients.current.count'=11;;;0; + +&{ap_usage_test_4} +... documentation=Test AP usage without filters with warning when less than 20 clients +... snmpcommunity=network-aruba-instant/ap-usage +... filtercounters= +... filtername= +... warningclients=20: +... criticalclients= +... result=WARNING: Access Point 'AP Piso 1' Current Clients: 4 - Access Point 'AP Piso 2' Current Clients: 17 - Access Point 'AP Piso 3' Current Clients: 14 - Access Point 'AP Piso 4' Current Clients: 11 - Access Point 'AP Sotano' Current Clients: 4 | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;20:;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;20:;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;20:;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;20:;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;20:;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100 + +@{ap_usage_tests} +... &{ap_usage_test_1} +... &{ap_usage_test_2} +... &{ap_usage_test_3} +... &{ap_usage_test_4} + + +*** Test Cases *** +Network Aruba Instant SNMP plugin + [Documentation] AP Usage + [Tags] network aruba snmp + FOR ${ap_usage_tc} IN @{ap_usage_tests} + ${command} Catenate + ... ${CMD} + ... --filter-counters='${ap_usage_tc.filtercounters}' + ... --filter-name='${ap_usage_tc.filtername}' + ... --warning-clients='${ap_usage_tc.warningclients}' + ... --critical-clients='${ap_usage_tc.criticalclients}' + ... --snmp-community=${ap_usage_tc.snmpcommunity} + + Log To Console ${ap_usage_tc.documentation} + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${ap_usage_tc.result} + ... Wrong output result for compliance of ${ap_usage_tc.result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + END + diff --git a/tests/functional/snmp/network-fortinet-fortigate-snmp.robot b/tests/functional/snmp/network-fortinet-fortigate-snmp.robot new file mode 100644 index 000000000..ea0f6c10d --- /dev/null +++ b/tests/functional/snmp/network-fortinet-fortigate-snmp.robot @@ -0,0 +1,408 @@ +*** Settings *** +Documentation Network Fortinet Fortigate SNMP plugin + +Library OperatingSystem +Library String + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin + +# Test simple usage of the linkmonitor mode +&{fortinet_fortigate_linkmonitor_test1} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with filter-id option set to 3 +&{fortinet_fortigate_linkmonitor_test2} +... filterid=3 +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with filter-name option set to MonitorWAN1 +&{fortinet_fortigate_linkmonitor_test3} +... filterid= +... filtername='MonitorWAN1' +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=OK: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive, latency: 39.739ms, jitter: 0.096ms, packet loss: 0.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; + +# Test linkmonitor mode with filter-vdom option set to 'root' +&{fortinet_fortigate_linkmonitor_test4} +... filterid= +... filtername= +... filtervdom='root' +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with custom-perf-data-instances option set to '%(name) %(id)' +&{fortinet_fortigate_linkmonitor_test5} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances='%(name) %(id)' +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~1#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~1#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~1#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~2#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~2#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~2#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~3#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with unknown-status option set to '%{state} eq "alive"' +&{fortinet_fortigate_linkmonitor_test6} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus='\%{state} eq "alive"' +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead UNKNOWN: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-status option set to '%{state} eq "alive"' +&{fortinet_fortigate_linkmonitor_test7} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus='\%{state} eq "alive"' +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with critical-status option set to '%{state} eq "alive"' +&{fortinet_fortigate_linkmonitor_test8} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus='\%{state} eq "alive"' +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-latency option set to 40 +&{fortinet_fortigate_linkmonitor_test9} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency=40 +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;0:40;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;0:40;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;0:40;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with critical-latency option set to 40 +&{fortinet_fortigate_linkmonitor_test10} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency=40 +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;0:40;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;0:40;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;0:40;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-jitter option set to 1 +&{fortinet_fortigate_linkmonitor_test11} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter=1 +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;0:1;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;0:1;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;0:1;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with critical-jitter option set to 1 +&{fortinet_fortigate_linkmonitor_test12} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter=1 +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;0:1;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;0:1;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;0:1;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-packetloss option set to 0.5 +&{fortinet_fortigate_linkmonitor_test13} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss=0.5 +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;0:0.5;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;0:0.5;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;0:0.5;;0; + +# Test linkmonitor mode with critical-packetloss option set to 0.5 +&{fortinet_fortigate_linkmonitor_test14} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss=0.5 +... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;0:0.5;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;0:0.5;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;0:0.5;0; + +@{fortinet_fortigate_linkmonitor_tests} +... &{fortinet_fortigate_linkmonitor_test1} +... &{fortinet_fortigate_linkmonitor_test2} +... &{fortinet_fortigate_linkmonitor_test3} +... &{fortinet_fortigate_linkmonitor_test4} +... &{fortinet_fortigate_linkmonitor_test5} +... &{fortinet_fortigate_linkmonitor_test6} +... &{fortinet_fortigate_linkmonitor_test7} +... &{fortinet_fortigate_linkmonitor_test8} +... &{fortinet_fortigate_linkmonitor_test9} +... &{fortinet_fortigate_linkmonitor_test10} +... &{fortinet_fortigate_linkmonitor_test11} +... &{fortinet_fortigate_linkmonitor_test12} +... &{fortinet_fortigate_linkmonitor_test13} +... &{fortinet_fortigate_linkmonitor_test14} + +# Test simple usage of the list-linkmonitors mode +&{fortinet_fortigate_listlinkmonitors_test1} +... filterstate= +... filtername= +... filtervdom= +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead] + +# Test list-linkmonitors mode with filter-name option set to MonitorWAN1 +&{fortinet_fortigate_listlinkmonitors_test2} +... filterstate= +... filtername='MonitorWAN1' +... filtervdom= +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive] + +# Test list-linkmonitors mode with filter-state option set to alive +&{fortinet_fortigate_listlinkmonitors_test3} +... filterstate='alive' +... filtername= +... filtervdom= +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive] + +# Test list-linkmonitors mode with filter-vdom option set to root +&{fortinet_fortigate_listlinkmonitors_test4} +... filterstate= +... filtername= +... filtervdom='root' +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead] + +@{fortinet_fortigate_listlinkmonitors_tests} +... &{fortinet_fortigate_listlinkmonitors_test1} +... &{fortinet_fortigate_listlinkmonitors_test2} +... &{fortinet_fortigate_listlinkmonitors_test3} +... &{fortinet_fortigate_listlinkmonitors_test4} + +*** Test Cases *** +Network Fortinet Fortigate SNMP link monitor + [Documentation] Network Fortinet Fortigate SNMP link-monitor + [Tags] network Fortinet Fortigate snmp + FOR ${fortinet_fortigate_linkmonitor_test} IN @{fortinet_fortigate_linkmonitor_tests} + ${command} Catenate + ... ${CMD} + ... --mode=link-monitor + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network-fortinet-fortigate-linkmonitor + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filterid} + IF ${length} > 0 + ${command} Catenate ${command} --filter-id=${fortinet_fortigate_linkmonitor_test.filterid} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtername} + IF ${length} > 0 + ${command} Catenate ${command} --filter-name=${fortinet_fortigate_linkmonitor_test.filtername} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtervdom} + IF ${length} > 0 + ${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_linkmonitor_test.filtervdom} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.customperfdatainstances} + IF ${length} > 0 + ${command} Catenate ${command} --custom-perfdata-instances=${fortinet_fortigate_linkmonitor_test.customperfdatainstances} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.unknownstatus} + IF ${length} > 0 + ${command} Catenate ${command} --unknown-status=${fortinet_fortigate_linkmonitor_test.unknownstatus} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningstatus} + IF ${length} > 0 + ${command} Catenate ${command} --warning-status=${fortinet_fortigate_linkmonitor_test.warningstatus} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalstatus} + IF ${length} > 0 + ${command} Catenate ${command} --critical-status=${fortinet_fortigate_linkmonitor_test.criticalstatus} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warninglatency} + IF ${length} > 0 + ${command} Catenate ${command} --warning-latency=${fortinet_fortigate_linkmonitor_test.warninglatency} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticallatency} + IF ${length} > 0 + ${command} Catenate ${command} --critical-latency=${fortinet_fortigate_linkmonitor_test.criticallatency} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningjitter} + IF ${length} > 0 + ${command} Catenate ${command} --warning-jitter=${fortinet_fortigate_linkmonitor_test.warningjitter} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticaljitter} + IF ${length} > 0 + ${command} Catenate ${command} --critical-jitter=${fortinet_fortigate_linkmonitor_test.criticaljitter} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningpacketloss} + IF ${length} > 0 + ${command} Catenate ${command} --warning-packet-loss=${fortinet_fortigate_linkmonitor_test.warningpacketloss} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalpacketloss} + IF ${length} > 0 + ${command} Catenate ${command} --critical-packet-loss=${fortinet_fortigate_linkmonitor_test.criticalpacketloss} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${fortinet_fortigate_linkmonitor_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_linkmonitor_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END + +Network Fortinet Fortigate SNMP list link monitor + [Documentation] Network Fortinet Fortigate SNMP list-linkmonitors + [Tags] network Fortinet Fortigate snmp + FOR ${fortinet_fortigate_listlinkmonitors_test} IN @{fortinet_fortigate_listlinkmonitors_tests} + ${command} Catenate + ... ${CMD} + ... --mode=list-link-monitors + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network-fortinet-fortigate-linkmonitor + ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filterstate} + IF ${length} > 0 + ${command} Catenate ${command} --filter-state=${fortinet_fortigate_listlinkmonitors_test.filterstate} + END + ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtername} + IF ${length} > 0 + ${command} Catenate ${command} --filter-name=${fortinet_fortigate_listlinkmonitors_test.filtername} + END + ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtervdom} + IF ${length} > 0 + ${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_listlinkmonitors_test.filtervdom} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${fortinet_fortigate_listlinkmonitors_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_listlinkmonitors_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END diff --git a/tests/functional/snmp/storage-synology-snmp.robot b/tests/functional/snmp/storage-synology-snmp.robot index 6e5ac80b7..c1faa5f06 100644 --- a/tests/functional/snmp/storage-synology-snmp.robot +++ b/tests/functional/snmp/storage-synology-snmp.robot @@ -34,12 +34,33 @@ ${CMD} perl ${CENTREON_PLUGINS} --plugin=storage::synology: ... &{check_components_test3} ... &{check_components_test4} +&{uptime_t1} +... description=Uptime check expected to be OK +... snmpcommunity=synology_component_disk_ok +... warning= +... critical= +... expected_output=OK: System uptime is: 46m 5s | 'uptime'=2765.00s;;;0; +&{uptime_t2} +... description=Uptime check expected to be warning +... snmpcommunity=synology_component_disk_ok +... warning=10 +... critical= +... expected_output=WARNING: System uptime is: 46m 5s | 'uptime'=2765.00s;0:10;;0; +&{uptime_t3} +... description=Uptime check expected to be critical +... snmpcommunity=synology_component_disk_ok +... warning= +... critical=10 +... expected_output=CRITICAL: System uptime is: 46m 5s | 'uptime'=2765.00s;;0:10;0; + +@{uptime_tests} +... &{uptime_t1} +... &{uptime_t2} +... &{uptime_t3} *** Test Cases *** -Synology SNMP: Checking disk components - [Documentation] Monitor the different states of disk health +Components [Tags] storage synology snmp - Log To Console Synology SNMP: Checking disk components FOR ${check_components_test} IN @{check_components_tests} ${command} Catenate ... ${CMD} @@ -48,10 +69,30 @@ Synology SNMP: Checking disk components ... --snmp-version=2 ... --snmp-port=2024 ... --snmp-community=${check_components_test.snmpcommunity} + ${output} Run ${command} - Log To Console ${check_components_test.description} Should Be Equal As Strings ... ${check_components_test.expected_output} ... ${output} - ... Wrong output for components mode: ${check_components_test}.{\n}Command output:{\n}${output} + ... ${check_components_test.description} failed. Wrong output for components mode: ${check_components_test}.{\n}Command output:{\n}${output} + END + +Uptime + [Tags] storage synology snmp + FOR ${test_item} IN @{uptime_tests} + ${command} Catenate + ... ${CMD} + ... --mode=uptime + ... --hostname=127.0.0.1 + ... --snmp-version=2 + ... --snmp-port=2024 + ... --snmp-community=${test_item.snmpcommunity} + ... --warning-uptime=${test_item.warning} + ... --critical-uptime=${test_item.critical} + + ${output} Run ${command} + Should Be Equal As Strings + ... ${test_item.expected_output} + ... ${output} + ... ${test_item.description} failed. Wrong output for components mode: ${test_item}.{\n}Command output:{\n}${output} END diff --git a/tests/resources/snmp/hardware-ups/hardware-ups-sputnik.snmpwalk b/tests/resources/snmp/hardware-ups/hardware-ups-sputnik.snmpwalk new file mode 100644 index 000000000..3ae444b01 --- /dev/null +++ b/tests/resources/snmp/hardware-ups/hardware-ups-sputnik.snmpwalk @@ -0,0 +1,61 @@ +.1.3.6.1.4.1.54661.1.1.1.1.1.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.2.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.5.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.6.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.7.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.8.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.9.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.10.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.11.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.12.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.13.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.14.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.15.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.16.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.17.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.18.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.19.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.20.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.21.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.22.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.23.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.24.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.2.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.5.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.6.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.7.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.8.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.9.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.10.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.11.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.12.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.13.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.14.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.15.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.16.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.17.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.18.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.19.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.20.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.21.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.22.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.23.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.24.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.1.2.0 = INTEGER: 3 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.2.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.2.1.0 = INTEGER: 1 +.1.3.6.1.4.1.54661.1.1.1.2.2.1.2.1 = INTEGER: 2006 +.1.3.6.1.4.1.54661.1.1.1.2.2.1.3.1 = INTEGER: 33 +.1.3.6.1.4.1.54661.1.1.1.2.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.2.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.2.5.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.3.1.0 = INTEGER: 0 diff --git a/tests/resources/snmp/network-aruba-instant/ap-usage.snmpwalk b/tests/resources/snmp/network-aruba-instant/ap-usage.snmpwalk new file mode 100644 index 000000000..b06640159 --- /dev/null +++ b/tests/resources/snmp/network-aruba-instant/ap-usage.snmpwalk @@ -0,0 +1,100 @@ +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.112.58.14.202.173.210 = STRING: AP Piso 1 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.112.58.14.202.175.120 = STRING: AP Piso 2 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.112.58.14.203.129.170 = STRING: AP Sotano +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.112.58.14.203.129.172 = STRING: AP Piso 4 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.2.112.58.14.203.130.124 = STRING: AP Piso 3 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.112.58.14.202.173.210 = STRING: 192.168.0.242 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.112.58.14.202.175.120 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.112.58.14.203.129.170 = STRING: 192.168.0.237 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.112.58.14.203.129.172 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.3.112.58.14.203.130.124 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.112.58.14.202.173.210 = STRING: CXXXXXV51G +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.112.58.14.202.175.120 = STRING: CXXXXXV588 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.112.58.14.203.129.170 = STRING: CXXXXXV1Y6 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.112.58.14.203.129.172 = STRING: CXXXXXV1Y7 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.4.112.58.14.203.130.124 = STRING: CXXXXXV21L +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.112.58.14.202.173.210 = STRING: .1.3.6.1.4.1.14823.1.2.59 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.112.58.14.202.175.120 = STRING: .1.3.6.1.4.1.14823.1.2.59 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.112.58.14.203.129.170 = STRING: .1.3.6.1.4.1.14823.1.2.59 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.112.58.14.203.129.172 = STRING: .1.3.6.1.4.1.14823.1.2.59 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.5.112.58.14.203.130.124 = STRING: .1.3.6.1.4.1.14823.1.2.59 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.112.58.14.202.173.210 = 225 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.112.58.14.202.175.120 = 225 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.112.58.14.203.129.170 = 225 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.112.58.14.203.129.172 = 225 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.6.112.58.14.203.130.124 = 225 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.202.173.210 = 3 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.202.175.120 = 18 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.203.129.170 = 4 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.203.129.172 = 11 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.7.112.58.14.203.130.124 = 18 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.112.58.14.202.173.210 = 311316480 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.112.58.14.202.175.120 = 307572736 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.112.58.14.203.129.170 = 309555200 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.112.58.14.203.129.172 = 305328128 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.8.112.58.14.203.130.124 = 307843072 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.112.58.14.202.173.210 = 1570716300 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.112.58.14.202.175.120 = 1595908000 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.112.58.14.203.129.170 = 1597074100 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.112.58.14.203.129.172 = 1596571900 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.9.112.58.14.203.130.124 = 1596534300 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.112.58.14.202.173.210 = 527028224 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.112.58.14.202.175.120 = 527028224 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.112.58.14.203.129.170 = 527028224 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.112.58.14.203.129.172 = 527028224 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.10.112.58.14.203.130.124 = 527028224 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.202.173.210 = 1 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.202.175.120 = 1 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.203.129.170 = 1 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.203.129.172 = 1 +.1.3.6.1.4.1.14823.2.3.3.1.2.1.1.11.112.58.14.203.130.124 = 1 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.0.145.158.234.114.37 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.4.229.152.224.53.169 = STRING: 192.168.0.242 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.16.81.7.176.5.174 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.30.63.236.117.207.223 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.40.36.255.214.15.147 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.46.15.242.8.164.80 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.50.22.145.81.97.83 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.52.46.183.70.11.124 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.52.46.183.221.30.84 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.60.33.156.223.106.221 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.70.155.69.122.199.46 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.78.8.226.31.141.40 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.78.143.165.222.161.99 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.82.172.165.68.121.186 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.84.141.90.181.16.123 = STRING: 192.168.0.242 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.86.66.20.39.209.29 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.96.165.226.9.33.133 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.96.227.43.121.175.174 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.96.227.43.124.21.200 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.102.89.253.243.33.77 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.116.151.121.3.223.205 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.128.56.251.132.10.48 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.130.90.58.66.254.161 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.130.149.171.102.123.164 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.134.68.105.106.252.193 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.140.122.61.222.227.173 = STRING: 192.168.0.237 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.140.141.40.46.226.198 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.140.141.40.67.165.48 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.140.200.75.74.178.97 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.146.41.79.160.128.182 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.152.141.70.158.56.11 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.152.141.70.158.58.249 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.164.48.122.232.152.104 = STRING: 192.168.0.242 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.164.52.217.15.238.32 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.166.202.58.48.78.95 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.168.100.241.110.171.34 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.202.181.74.221.105.239 = STRING: 192.168.0.242 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.204.217.172.175.157.118 = STRING: 192.168.0.237 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.210.110.215.242.4.25 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.214.9.12.120.46.26 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.218.135.18.246.213.114 = STRING: 192.168.0.237 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.218.152.170.55.73.204 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.220.169.4.146.112.229 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.224.204.248.59.20.91 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.228.179.24.50.2.98 = STRING: 192.168.0.245 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.236.240.14.86.117.226 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.242.143.242.6.82.50 = STRING: 192.168.0.239 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.242.215.0.49.149.20 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.244.179.1.147.100.228 = STRING: 192.168.0.238 +.1.3.6.1.4.1.14823.2.3.3.1.2.4.1.4.248.89.113.128.32.190 = STRING: 192.168.0.237 diff --git a/tests/resources/snmp/network-fortinet-fortigate-linkmonitor.snmpwalk b/tests/resources/snmp/network-fortinet-fortigate-linkmonitor.snmpwalk new file mode 100644 index 000000000..8bdd06911 --- /dev/null +++ b/tests/resources/snmp/network-fortinet-fortigate-linkmonitor.snmpwalk @@ -0,0 +1,18 @@ +.1.3.6.1.4.1.12356.101.4.8.2.1.2.1 = STRING: "MonitorWAN1" +.1.3.6.1.4.1.12356.101.4.8.2.1.2.2 = STRING: "MonitorWAN2" +.1.3.6.1.4.1.12356.101.4.8.2.1.2.3 = STRING: "MonitorWAN3" +.1.3.6.1.4.1.12356.101.4.8.2.1.3.1 = STRING: "0" +.1.3.6.1.4.1.12356.101.4.8.2.1.3.2 = STRING: "0" +.1.3.6.1.4.1.12356.101.4.8.2.1.3.3 = STRING: "1" +.1.3.6.1.4.1.12356.101.4.8.2.1.4.1 = STRING: "39.739" +.1.3.6.1.4.1.12356.101.4.8.2.1.4.2 = STRING: "46.446" +.1.3.6.1.4.1.12356.101.4.8.2.1.4.3 = STRING: "0.000" +.1.3.6.1.4.1.12356.101.4.8.2.1.5.1 = STRING: "0.096" +.1.3.6.1.4.1.12356.101.4.8.2.1.5.2 = STRING: "1.868" +.1.3.6.1.4.1.12356.101.4.8.2.1.5.3 = STRING: "0.000" +.1.3.6.1.4.1.12356.101.4.8.2.1.8.1 = STRING: "0%" +.1.3.6.1.4.1.12356.101.4.8.2.1.8.2 = STRING: "1%" +.1.3.6.1.4.1.12356.101.4.8.2.1.8.3 = STRING: "100%" +.1.3.6.1.4.1.12356.101.4.8.2.1.9.1 = STRING: "root" +.1.3.6.1.4.1.12356.101.4.8.2.1.9.2 = STRING: "root" +.1.3.6.1.4.1.12356.101.4.8.2.1.9.3 = STRING: "root" \ No newline at end of file diff --git a/tests/resources/snmp/synology_component_disk_critical.snmpwalk b/tests/resources/snmp/synology_component_disk_critical.snmpwalk index cc7e081a5..b57c024df 100644 --- a/tests/resources/snmp/synology_component_disk_critical.snmpwalk +++ b/tests/resources/snmp/synology_component_disk_critical.snmpwalk @@ -1,3 +1,4 @@ +.1.3.6.1.2.1.25.1.1.0 = 276532 .1.3.6.1.4.1.6574.1.1.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.3.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.4.1.0 = INTEGER: 1 diff --git a/tests/resources/snmp/synology_component_disk_failing.snmpwalk b/tests/resources/snmp/synology_component_disk_failing.snmpwalk index 54df78857..7efd3f94a 100644 --- a/tests/resources/snmp/synology_component_disk_failing.snmpwalk +++ b/tests/resources/snmp/synology_component_disk_failing.snmpwalk @@ -1,3 +1,4 @@ +.1.3.6.1.2.1.25.1.1.0 = 276532 .1.3.6.1.4.1.6574.1.1.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.3.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.4.1.0 = INTEGER: 1 diff --git a/tests/resources/snmp/synology_component_disk_ok.snmpwalk b/tests/resources/snmp/synology_component_disk_ok.snmpwalk index 92a3c9ebb..f8bfcabe6 100644 --- a/tests/resources/snmp/synology_component_disk_ok.snmpwalk +++ b/tests/resources/snmp/synology_component_disk_ok.snmpwalk @@ -1,3 +1,4 @@ +.1.3.6.1.2.1.25.1.1.0 = 276532 .1.3.6.1.4.1.6574.1.1.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.3.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.4.1.0 = INTEGER: 1 diff --git a/tests/resources/snmp/synology_component_disk_warning.snmpwalk b/tests/resources/snmp/synology_component_disk_warning.snmpwalk index 4a1ccdbdf..b925f9b92 100644 --- a/tests/resources/snmp/synology_component_disk_warning.snmpwalk +++ b/tests/resources/snmp/synology_component_disk_warning.snmpwalk @@ -1,3 +1,4 @@ +.1.3.6.1.2.1.25.1.1.0 = 276532 .1.3.6.1.4.1.6574.1.1.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.3.0 = INTEGER: 1 .1.3.6.1.4.1.6574.1.4.1.0 = INTEGER: 1