1s autopkgtest: DBG: testbed init 1s autopkgtest [10:59:11]: starting date and time: 2025-02-19 10:59:11+0000 1s autopkgtest [10:59:12]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 1s autopkgtest [10:59:12]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.hhfgazt4/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:apache2 --apt-upgrade cacti --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-16.secgroup --name adt-plucky-s390x-cacti-20250219-105911-juju-7f2275-prod-proposed-migration-environment-15-092d9933-a717-4e75-b786-58382708bb44 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ysJYGH 112s autopkgtest: DBG: sending command to testbed: print-execute-command 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.d3dki18o/runcmd 112s autopkgtest: DBG: sending command to testbed: capabilities 112s autopkgtest: DBG: got reply from testbed: ok revert-full-system reboot suggested-normal-user=ubuntu isolation-machine revert root-on-testbed 112s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert', 'root-on-testbed', 'has_internet'] 112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ysJYGH/wrapper.sh 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/wrapper.sh'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [11:01:04]: testbed dpkg architecture: s390x 113s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [11:01:05]: testbed apt version: 2.9.30 114s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed has eatmydata 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [11:01:05]: @@@@@@@@@@@@@@@@@@@@ test bed setup 114s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [11:01:06]: testbed release detected to be: None 115s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT source: Types: deb deb-src 115s URIs: http://ftpmaster.internal/ubuntu/ 115s Suites: plucky-proposed 115s Components: main restricted universe multiverse 115s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 115s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 116s Package: * 116s Pin: release plucky-proposed 116s Pin-Priority: 500 116s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [11:01:07]: updating testbed package index (apt update) 116s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 117s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 117s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 117s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 117s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 117s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 117s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 117s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 117s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 117s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 117s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 118s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 118s Fetched 1700 kB in 2s (1042 kB/s) 118s Reading package lists... 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 119s Package: * 119s Pin: release plucky-proposed 119s Pin-Priority: 100 119s 119s Package: src:apache2:any 119s Pin: release plucky-proposed 119s Pin-Priority: 995 119s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:apache2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.ysJYGH/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 119s + lsb_release --codename --short 119s + RELEASE=plucky 119s + cat 119s + [ plucky != trusty ] 119s Reading package lists... 119s Building dependency tree...+ DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 120s 120s Reading state information... 120s Calculating upgrade... 120s The following packages were automatically installed and are no longer required: 120s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 120s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 120s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 120s linux-tools-6.11.0-8-generic 120s Use 'sudo apt autoremove' to remove them. 120s The following packages will be upgraded: 120s iproute2 liblsof0 libp11-kit0 lsof 120s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s Need to get 1791 kB of archives. 120s After this operation, 17.4 kB of additional disk space will be used. 120s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 121s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 121s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 121s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 121s Preconfiguring packages ... 121s Fetched 1791 kB in 1s (1383 kB/s) 122s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 122s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 122s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 122s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 122s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 122s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 122s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 122s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 122s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 122s Setting up liblsof0 (4.99.4+dfsg-1) ... 122s Setting up iproute2 (6.13.0-1ubuntu1) ... 122s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 122s Setting up lsof (4.99.4+dfsg-1) ... 122s Processing triggers for man-db (2.13.0-1) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 123s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 123s + /usr/lib/apt/apt-helper analyze-pattern ?true 123s + uname -r 123s + sed s/\./\\./g 123s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 123s + apt list ?obsolete 123s + tail -n+2+ 123s cut -d/ -f1 123s + grep -v ^linux-.*6\.12\.0-15-generic.* 123s + true 123s + obsolete_pkgs= 123s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s The following packages will be REMOVED: 123s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 123s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 123s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 123s linux-tools-6.11.0-8-generic* 123s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 123s After this operation, 167 MB disk space will be freed. 123s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 123s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 123s Removing libpython3.12t64:s390x (3.12.9-1) ... 123s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 123s Removing libnsl2:s390x (1.3.0-3build3) ... 123s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 123s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 124s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 124s Processing triggers for libc-bin (2.40-4ubuntu1) ... 124s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 124s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 124s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s + grep -q trusty /etc/lsb-release 125s + [ ! -d /usr/share/doc/unattended-upgrades ] 125s + [ ! -d /usr/share/doc/lxd ] 125s + [ ! -d /usr/share/doc/lxd-client ] 125s + [ ! -d /usr/share/doc/snapd ] 125s + type iptables 125s + cat 125s + chmod 755 /etc/rc.local 125s + . /etc/rc.local 125s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 125s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 125s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 125s + uname -m 125s + [ s390x = ppc64le ] 125s + [ -d /run/systemd/system ] 125s + systemd-detect-virt --quiet --vm 125s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 125s + cat 125s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 125s + echo COMPRESS=lz4 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [11:01:16]: upgrading testbed (apt dist-upgrade and autopurge) 125s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 126s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 126s Entering ResolveByKeep 126s 126s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 127s Starting pkgProblemResolver with broken count: 0 127s Starting 2 pkgProblemResolver with broken count: 0 127s Done 127s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.ysJYGH/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 1 127s autopkgtest [11:01:18]: rebooting testbed after setup commands that affected boot 127s autopkgtest: DBG: sending command to testbed: reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest [11:01:38]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 147s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ysJYGH/testbed-packages"], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/testbed-packages /tmp/autopkgtest-work.hhfgazt4/out/testbed-packages 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: Binaries: initialising 149s autopkgtest [11:01:40]: @@@@@@@@@@@@@@@@@@@@ apt-source cacti 149s autopkgtest: DBG: blame += cacti 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 149s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'cacti'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cacti$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cacti=1.2.28+ds1-3ubuntu1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: install_deps: deps_new=[] 150s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.ysJYGH/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source cacti=1.2.28+ds1-3ubuntu1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x cacti_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1'] 150s + cd / 150s + mktemp -d /tmp/autopkgtest.ysJYGH/build.XXX 150s + builddir=/tmp/autopkgtest.ysJYGH/build.Eyz 150s + cd /tmp/autopkgtest.ysJYGH/build.Eyz 150s + apt-get source -d -q --only-source cacti=1.2.28+ds1-3ubuntu1 156s + OUT=Reading package lists... 156s NOTICE: 'cacti' packaging is maintained in the 'Git' version control system at: 156s https://salsa.debian.org/debian/cacti.git 156s Please use: 156s git clone https://salsa.debian.org/debian/cacti.git 156s to retrieve the latest (possibly unreleased) updates to the package. 156s Need to get 35.4 MB of source archives. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (dsc) [2607 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (tar) [24.4 MB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (tar) [10.9 MB] 156s Get:4 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (diff) [58.3 kB] 156s Fetched 35.4 MB in 5s (6834 kB/s) 156s Download complete and in download only mode 156s + [ -n ] 156s + grep ^Get: 156s + echo Reading package lists... 156s NOTICE: 'cacti' packaging is maintained in the 'Git' version control system at: 156s https://salsa.debian.org/debian/cacti.git 156s Please use: 156s git clone https://salsa.debian.org/debian/cacti.git 156s to retrieve the latest (possibly unreleased) updates to the package. 156s Need to get 35.4 MB of source archives. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (dsc) [2607 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (tar) [24.4 MB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (tar) [10.9 MB] 156s Get:4 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (diff) [58.3 kB] 156s Fetched 35.4 MB in 5s (6834 kB/s) 156s Download complete and in download only mode 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (dsc) [2607 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (tar) [24.4 MB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (tar) [10.9 MB] 156s Get:4 http://ftpmaster.internal/ubuntu plucky/universe cacti 1.2.28+ds1-3ubuntu1 (diff) [58.3 kB] 156s + dpkg-source -x cacti_1.2.28+ds1-3ubuntu1.dsc src 156s gpgv: Signature made Mon Jan 27 13:58:35 2025 UTC 156s gpgv: using RSA key 439884E6862A429C290DF63B033C4CA276024834 156s gpgv: issuer "athos.ribeiro@canonical.com" 156s gpgv: Can't check signature: No public key 156s dpkg-source: warning: cannot verify inline signature for ./cacti_1.2.28+ds1-3ubuntu1.dsc: no acceptable signature found 156s + chmod -R a+rX . 156s + cd src/. 156s + pwd 156s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest [11:01:47]: testing package cacti version 1.2.28+ds1-3ubuntu1 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/build.Eyz/src/debian/ /tmp/autopkgtest-work.hhfgazt4/out/pkg/debian/ 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: processing dependency mariadb-server 157s autopkgtest: DBG: processing dependency @ 157s autopkgtest: DBG: synthesised dependency cacti 157s autopkgtest: DBG: processing dependency wget 157s autopkgtest: DBG: processing dependency apache2 157s autopkgtest: DBG: Test defined: name check-all-pages-with-mariadb path None command "debian/tests/check_all_pages" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features ['test-name=check-all-pages-with-mariadb'] depends ['mariadb-server', 'cacti', 'wget', 'apache2'] 157s autopkgtest: DBG: processing dependency mysql-server 157s autopkgtest: DBG: processing dependency @ 157s autopkgtest: DBG: synthesised dependency cacti 157s autopkgtest: DBG: processing dependency wget 157s autopkgtest: DBG: processing dependency apache2 157s autopkgtest: DBG: Test defined: name check-all-pages-with-mysql path None command "debian/tests/check_all_pages" restrictions ['allow-stderr', 'isolation-container', 'needs-root', 'skip-not-installable'] features ['test-name=check-all-pages-with-mysql'] depends ['mysql-server', 'cacti', 'wget', 'apache2'] 157s autopkgtest: DBG: processing dependency mariadb-server 157s autopkgtest: DBG: processing dependency @ 157s autopkgtest: DBG: synthesised dependency cacti 157s autopkgtest: DBG: Test defined: name check-cli-version path None command "tests/tools/check_cli_version.sh" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features ['test-name=check-cli-version'] depends ['mariadb-server', 'cacti'] 157s autopkgtest [11:01:48]: build not needed 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/build.Eyz/src/ /tmp/autopkgtest-work.hhfgazt4/out/tests-tree/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency mariadb-server 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency cacti 160s autopkgtest: DBG: processing dependency wget 160s autopkgtest: DBG: processing dependency apache2 160s autopkgtest: DBG: Test defined: name check-all-pages-with-mariadb path None command "debian/tests/check_all_pages" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features ['test-name=check-all-pages-with-mariadb'] depends ['mariadb-server', 'cacti', 'wget', 'apache2'] 160s autopkgtest: DBG: processing dependency mysql-server 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency cacti 160s autopkgtest: DBG: processing dependency wget 160s autopkgtest: DBG: processing dependency apache2 160s autopkgtest: DBG: Test defined: name check-all-pages-with-mysql path None command "debian/tests/check_all_pages" restrictions ['allow-stderr', 'isolation-container', 'needs-root', 'skip-not-installable'] features ['test-name=check-all-pages-with-mysql'] depends ['mysql-server', 'cacti', 'wget', 'apache2'] 160s autopkgtest: DBG: processing dependency mariadb-server 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency cacti 160s autopkgtest: DBG: Test defined: name check-cli-version path None command "tests/tools/check_cli_version.sh" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features ['test-name=check-cli-version'] depends ['mariadb-server', 'cacti'] 160s autopkgtest [11:01:51]: test check-all-pages-with-mariadb: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['mariadb-server', 'cacti', 'wget', 'apache2'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['mariadb-server', 'cacti', 'wget', 'apache2'] 160s autopkgtest: DBG: install-deps: satisfying mariadb-server, cacti, wget, apache2 160s autopkgtest: DBG: can use apt-get on testbed: True 160s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'mariadb-server, cacti, wget, apache2'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 160s Building dependency tree... 160s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s The following NEW packages will be installed: 161s apache2 apache2-bin apache2-data apache2-utils cacti dbconfig-common 161s dbconfig-mysql fontconfig fontconfig-config fonts-dejavu-core 161s fonts-dejavu-extra fonts-dejavu-mono fonts-fork-awesome galera-4 161s javascript-common libaom3 libapache2-mod-php libapache2-mod-php8.3 161s libapr1t64 libaprutil1-dbd-sqlite3 libaprutil1-ldap libaprutil1t64 161s libargon2-1 libcairo2 libconfig-inifiles-perl libdatrie1 libdbi-perl 161s libdbi1t64 libde265-0 libdeflate0 libfontconfig1 libfreetype6 libgd3 161s libgomp1 libgraphite2-3 libharfbuzz0b libheif-plugin-aomdec 161s libheif-plugin-libde265 libheif1 libimagequant0 libjbig0 libjpeg-turbo8 161s libjpeg8 libjs-chart.js libjs-d3-format libjs-jquery 161s libjs-jquery-colorpicker libjs-jquery-cookie libjs-jquery-hotkeys 161s libjs-jquery-jstree libjs-jquery-metadata libjs-jquery-tablesorter 161s libjs-jquery-timepicker libjs-jquery-ui libjs-jquery-ui-theme-smoothness 161s libjs-jquery-ui-theme-south-street libjs-jquery-ui-theme-ui-darkness 161s libjs-jquery-ui-touch-punch liblua5.4-0 libmariadb3 libpango-1.0-0 161s libpangocairo-1.0-0 libpangoft2-1.0-0 libphp-phpmailer libpixman-1-0 161s libraqm0 librrd8t64 libsharpyuv0 libsnmp-base libsnmp40t64 libsodium23 161s libthai-data libthai0 libtiff6 liburing2 libwebp7 libxcb-render0 libxcb-shm0 161s libxpm4 libxrender1 libxslt1.1 mariadb-client mariadb-client-core 161s mariadb-common mariadb-server mariadb-server-core mysql-common 161s node-commander node-d3 node-d3-array node-d3-axis node-d3-brush 161s node-d3-chord node-d3-collection node-d3-color node-d3-contour 161s node-d3-dispatch node-d3-drag node-d3-dsv node-d3-ease node-d3-fetch 161s node-d3-force node-d3-format node-d3-geo node-d3-hierarchy 161s node-d3-interpolate node-d3-path node-d3-polygon node-d3-quadtree 161s node-d3-queue node-d3-random node-d3-scale node-d3-scale-chromatic 161s node-d3-selection node-d3-shape node-d3-time node-d3-time-format 161s node-d3-timer node-d3-transition node-d3-voronoi node-d3-zoom node-dompurify 161s node-iconv-lite node-rw node-safe-buffer node-ua-parser-js php-common php-gd 161s php-gmp php-ldap php-mbstring php-mysql php-phpmyadmin-motranslator 161s php-phpseclib php-psr-cache php-psr-container php-psr-log php-snmp 161s php-symfony-cache php-symfony-cache-contracts 161s php-symfony-deprecation-contracts php-symfony-expression-language 161s php-symfony-service-contracts php-symfony-var-exporter php-twig php-xml 161s php8.3-cli php8.3-common php8.3-gd php8.3-gmp php8.3-ldap php8.3-mbstring 161s php8.3-mysql php8.3-opcache php8.3-readline php8.3-snmp php8.3-xml rrdtool 161s snmp socat 161s 0 upgraded, 160 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 64.9 MB of archives. 161s After this operation, 341 MB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapr1t64 s390x 1.7.5-1 [114 kB] 161s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1t64 s390x 1.6.3-3ubuntu2 [98.4 kB] 161s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-dbd-sqlite3 s390x 1.6.3-3ubuntu2 [11.7 kB] 161s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-ldap s390x 1.6.3-3ubuntu2 [9064 B] 161s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 161s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-bin s390x 2.4.63-1ubuntu1 [1414 kB] 162s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-data all 2.4.63-1ubuntu1 [163 kB] 162s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-utils s390x 2.4.63-1ubuntu1 [102 kB] 162s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2 s390x 2.4.63-1ubuntu1 [90.4 kB] 162s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x galera-4 s390x 26.4.21-1 [753 kB] 162s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 162s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-common all 1:11.4.4-3 [28.6 kB] 162s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 162s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-inifiles-perl all 3.000003-3 [38.4 kB] 162s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x libmariadb3 s390x 1:11.4.4-3 [203 kB] 162s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client-core s390x 1:11.4.4-3 [1056 kB] 162s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client s390x 1:11.4.4-3 [2410 kB] 162s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 162s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server-core s390x 1:11.4.4-3 [8555 kB] 163s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x socat s390x 1.8.0.2-1 [385 kB] 163s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server s390x 1:11.4.4-3 [3311 kB] 163s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-common all 2.0.24 [596 kB] 163s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-mysql all 2.0.24 [938 B] 163s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 163s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 164s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 164s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 164s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 164s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 164s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-extra all 2.37-8 [1947 kB] 164s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-fork-awesome all 1.2.0+ds1-1 [603 kB] 164s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 164s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 164s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x php-common all 2:93ubuntu2 [13.9 kB] 164s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-common s390x 8.3.11-0ubuntu4 [745 kB] 164s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-opcache s390x 8.3.11-0ubuntu4 [78.0 kB] 164s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-readline s390x 8.3.11-0ubuntu4 [13.9 kB] 164s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libargon2-1 s390x 0~20190702+dfsg-4build1 [54.1 kB] 164s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 164s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-cli s390x 8.3.11-0ubuntu4 [1940 kB] 164s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libapache2-mod-php8.3 s390x 8.3.11-0ubuntu4 [1871 kB] 164s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libapache2-mod-php all 2:8.3+93ubuntu2 [4224 B] 164s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 164s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 164s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 164s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 164s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 164s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 164s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi1t64 s390x 0.9.0-6.1build1 [27.0 kB] 164s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 164s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 164s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 164s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 164s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 164s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 164s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 164s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 164s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 164s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 164s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 164s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 165s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 165s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 165s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 165s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 165s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 165s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 165s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-chart.js all 3.9.1+~cs3.1.2-3 [199 kB] 165s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 165s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 165s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-colorpicker all 1.2.20-4 [194 kB] 165s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-cookie all 12-4 [6484 B] 165s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-jstree all 3.3.16+dfsg1-1 [105 kB] 165s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-metadata all 12-4 [6582 B] 165s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-tablesorter all 1:2.31.3+dfsg1-4 [192 kB] 165s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-timepicker all 1.6.3-6 [50.2 kB] 165s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-smoothness all 1.12.1+dfsg-1.1 [23.7 kB] 165s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-south-street all 1.12.1+dfsg-1.1 [29.4 kB] 165s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-ui-darkness all 1.12.1+dfsg-1.1 [27.6 kB] 165s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 165s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 165s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 165s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 165s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 165s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libphp-phpmailer all 6.9.1-1 [87.9 kB] 165s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x librrd8t64 s390x 1.7.2-4.2ubuntu1 [181 kB] 165s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp-base all 5.9.4+dfsg-1.1ubuntu6 [206 kB] 165s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp40t64 s390x 5.9.4+dfsg-1.1ubuntu6 [1055 kB] 165s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 165s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-array all 3.2.0+~cs5.0.6-2 [45.1 kB] 165s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-axis all 1.0.12+~1.0.16-1 [14.1 kB] 165s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-dispatch all 1.0.6+~1.0.9-1 [9774 B] 165s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-selection all 1.4.1+~1.4.3-1 [42.8 kB] 165s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-drag all 1.2.5+~1.2.5-1 [19.1 kB] 165s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-color all 1.4.1+~1.4.2-1 [19.9 kB] 165s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-interpolate all 1.4.0+~1.4.2-1 [24.0 kB] 165s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-ease all 1.0.7+~1.0.11-1 [12.5 kB] 165s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-timer all 1.0.10+~1.0.10-1 [10.6 kB] 165s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-transition all 1.3.2+~1.3.2-1 [28.7 kB] 165s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-brush all 1.1.6+~1.1.5-1 [181 kB] 165s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-path all 1.0.9+~1.0.9-1 [10.5 kB] 165s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-chord all 1.0.6+~1.0.11-1 [14.2 kB] 165s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-collection all 1.0.7+~1.0.10-1 [17.2 kB] 165s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-contour all 1.3.2+~1.3.3-1 [17.7 kB] 165s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.8 kB] 165s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x node-iconv-lite all 0.6.3-3 [158 kB] 166s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-queue all 3.0.7-13 [10.2 kB] 166s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x node-rw all 1.3.3-5 [7570 B] 166s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x node-commander all 9.4.1-1 [50.6 kB] 166s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-dsv all 1.2.0+~1.2.3-1 [17.7 kB] 166s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-fetch all 1.2.0+~1.2.2-1 [10.1 kB] 166s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-quadtree all 1.0.7+~1.0.9-1 [16.6 kB] 166s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-force all 2.1.1+~2.1.4-1 [30.9 kB] 166s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-d3-format all 1:1.4.5+~1.4.2-2 [18.2 kB] 166s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-format all 1:1.4.5+~1.4.2-2 [11.1 kB] 166s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-geo all 1.12.1+~1.12.4-1 [67.3 kB] 166s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-hierarchy all 1.1.9+~1.1.8-1 [35.1 kB] 166s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-polygon all 1.0.6+~1.0.8-1 [8744 B] 166s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-random all 1.1.2+~1.1.3-1 [9140 B] 166s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-time all 1.1.0+~1.1.1-1 [19.2 kB] 166s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-time-format all 2.3.0+~2.3.1-1 [23.8 kB] 166s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-scale all 2.2.2+~2.2.6-1 [43.4 kB] 166s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-scale-chromatic all 1.5.0+~1.5.1-1 [23.5 kB] 166s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-shape all 1.3.7+~1.3.8-1 [56.0 kB] 166s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-voronoi all 1.1.4+~1.1.9-1 [20.5 kB] 166s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-zoom all 1.8.3+~1.8.4-1 [27.2 kB] 166s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3 all 5.16.0+~cs5.28.10-2 [197 kB] 166s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x node-dompurify all 3.1.7+dfsg+~3.0.5-1 [73.3 kB] 166s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ua-parser-js all 0.8.1+ds+~0.7.36-3 [30.1 kB] 166s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-gd s390x 8.3.11-0ubuntu4 [30.6 kB] 166s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x php-gd all 2:8.3+93ubuntu2 [1830 B] 166s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-gmp s390x 8.3.11-0ubuntu4 [22.9 kB] 166s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x php-gmp all 2:8.3+93ubuntu2 [1834 B] 166s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-ldap s390x 8.3.11-0ubuntu4 [34.1 kB] 166s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x php-ldap all 2:8.3+93ubuntu2 [1836 B] 166s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mbstring s390x 8.3.11-0ubuntu4 [523 kB] 166s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x php-mbstring all 2:8.3+93ubuntu2 [1848 B] 166s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mysql s390x 8.3.11-0ubuntu4 [133 kB] 166s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x php-mysql all 2:8.3+93ubuntu2 [1838 B] 166s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-deprecation-contracts all 3.5.2-5 [6146 B] 166s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-cache all 3.0.0-4 [5834 B] 166s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-log all 3.0.2-2 [6682 B] 166s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-cache-contracts all 3.5.2-5 [8636 B] 166s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-container all 2.0.2-1 [3878 B] 166s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-service-contracts all 3.5.2-5 [7650 B] 166s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-var-exporter all 6.4.10+dfsg-1ubuntu1 [35.3 kB] 166s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-cache all 6.4.10+dfsg-1ubuntu1 [69.8 kB] 166s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-expression-language all 6.4.10+dfsg-1ubuntu1 [23.3 kB] 166s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phpmyadmin-motranslator all 5.3.1-1 [15.1 kB] 166s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phpseclib all 2.0.48-2 [205 kB] 166s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-snmp s390x 8.3.11-0ubuntu4 [23.7 kB] 166s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x php-snmp all 2:8.3+93ubuntu2 [1840 B] 166s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x php-twig all 3.8.0-3 [86.8 kB] 166s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-xml s390x 8.3.11-0ubuntu4 [129 kB] 166s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x php-xml all 2:8.3+93ubuntu2 [1856 B] 166s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x snmp s390x 5.9.4+dfsg-1.1ubuntu6 [186 kB] 166s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-hotkeys all 0.2.0-1 [13.3 kB] 166s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-touch-punch all 0.0~git20141218.2.4bc0091+dfsg1-4.1 [4744 B] 166s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x rrdtool s390x 1.7.2-4.2ubuntu1 [362 kB] 166s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x cacti all 1.2.28+ds1-3ubuntu1 [23.3 MB] 169s Preconfiguring packages ... 170s Fetched 64.9 MB in 8s (8072 kB/s) 170s Selecting previously unselected package libapr1t64:s390x. 170s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 170s Preparing to unpack .../00-libapr1t64_1.7.5-1_s390x.deb ... 170s Unpacking libapr1t64:s390x (1.7.5-1) ... 170s Selecting previously unselected package libaprutil1t64:s390x. 170s Preparing to unpack .../01-libaprutil1t64_1.6.3-3ubuntu2_s390x.deb ... 170s Unpacking libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 170s Selecting previously unselected package libaprutil1-dbd-sqlite3:s390x. 170s Preparing to unpack .../02-libaprutil1-dbd-sqlite3_1.6.3-3ubuntu2_s390x.deb ... 170s Unpacking libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 170s Selecting previously unselected package libaprutil1-ldap:s390x. 170s Preparing to unpack .../03-libaprutil1-ldap_1.6.3-3ubuntu2_s390x.deb ... 170s Unpacking libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 170s Selecting previously unselected package liblua5.4-0:s390x. 170s Preparing to unpack .../04-liblua5.4-0_5.4.7-1_s390x.deb ... 170s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 170s Selecting previously unselected package apache2-bin. 170s Preparing to unpack .../05-apache2-bin_2.4.63-1ubuntu1_s390x.deb ... 170s Unpacking apache2-bin (2.4.63-1ubuntu1) ... 170s Selecting previously unselected package apache2-data. 170s Preparing to unpack .../06-apache2-data_2.4.63-1ubuntu1_all.deb ... 170s Unpacking apache2-data (2.4.63-1ubuntu1) ... 170s Selecting previously unselected package apache2-utils. 170s Preparing to unpack .../07-apache2-utils_2.4.63-1ubuntu1_s390x.deb ... 170s Unpacking apache2-utils (2.4.63-1ubuntu1) ... 170s Selecting previously unselected package apache2. 170s Preparing to unpack .../08-apache2_2.4.63-1ubuntu1_s390x.deb ... 170s Unpacking apache2 (2.4.63-1ubuntu1) ... 170s Selecting previously unselected package galera-4. 170s Preparing to unpack .../09-galera-4_26.4.21-1_s390x.deb ... 170s Unpacking galera-4 (26.4.21-1) ... 170s Selecting previously unselected package mysql-common. 170s Preparing to unpack .../10-mysql-common_5.8+1.1.1_all.deb ... 170s Unpacking mysql-common (5.8+1.1.1) ... 170s Selecting previously unselected package mariadb-common. 170s Preparing to unpack .../11-mariadb-common_1%3a11.4.4-3_all.deb ... 170s Unpacking mariadb-common (1:11.4.4-3) ... 170s Selecting previously unselected package libdbi-perl:s390x. 170s Preparing to unpack .../12-libdbi-perl_1.647-1_s390x.deb ... 170s Unpacking libdbi-perl:s390x (1.647-1) ... 170s Selecting previously unselected package libconfig-inifiles-perl. 170s Preparing to unpack .../13-libconfig-inifiles-perl_3.000003-3_all.deb ... 170s Unpacking libconfig-inifiles-perl (3.000003-3) ... 170s Selecting previously unselected package libmariadb3:s390x. 170s Preparing to unpack .../14-libmariadb3_1%3a11.4.4-3_s390x.deb ... 170s Unpacking libmariadb3:s390x (1:11.4.4-3) ... 170s Selecting previously unselected package mariadb-client-core. 170s Preparing to unpack .../15-mariadb-client-core_1%3a11.4.4-3_s390x.deb ... 170s Unpacking mariadb-client-core (1:11.4.4-3) ... 170s Selecting previously unselected package mariadb-client. 170s Preparing to unpack .../16-mariadb-client_1%3a11.4.4-3_s390x.deb ... 170s Unpacking mariadb-client (1:11.4.4-3) ... 170s Selecting previously unselected package liburing2:s390x. 170s Preparing to unpack .../17-liburing2_2.9-1_s390x.deb ... 170s Unpacking liburing2:s390x (2.9-1) ... 170s Selecting previously unselected package mariadb-server-core. 170s Preparing to unpack .../18-mariadb-server-core_1%3a11.4.4-3_s390x.deb ... 170s Unpacking mariadb-server-core (1:11.4.4-3) ... 170s Selecting previously unselected package socat. 171s Preparing to unpack .../19-socat_1.8.0.2-1_s390x.deb ... 171s Unpacking socat (1.8.0.2-1) ... 171s Setting up mysql-common (5.8+1.1.1) ... 171s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 171s Setting up mariadb-common (1:11.4.4-3) ... 171s update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 171s Selecting previously unselected package mariadb-server. 171s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 57089 files and directories currently installed.) 171s Preparing to unpack .../000-mariadb-server_1%3a11.4.4-3_s390x.deb ... 171s Unpacking mariadb-server (1:11.4.4-3) ... 171s Selecting previously unselected package dbconfig-common. 171s Preparing to unpack .../001-dbconfig-common_2.0.24_all.deb ... 171s Unpacking dbconfig-common (2.0.24) ... 171s Selecting previously unselected package dbconfig-mysql. 171s Preparing to unpack .../002-dbconfig-mysql_2.0.24_all.deb ... 171s Unpacking dbconfig-mysql (2.0.24) ... 171s Selecting previously unselected package libfreetype6:s390x. 171s Preparing to unpack .../003-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 171s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 171s Selecting previously unselected package fonts-dejavu-mono. 171s Preparing to unpack .../004-fonts-dejavu-mono_2.37-8_all.deb ... 171s Unpacking fonts-dejavu-mono (2.37-8) ... 171s Selecting previously unselected package fonts-dejavu-core. 171s Preparing to unpack .../005-fonts-dejavu-core_2.37-8_all.deb ... 171s Unpacking fonts-dejavu-core (2.37-8) ... 171s Selecting previously unselected package fontconfig-config. 171s Preparing to unpack .../006-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 171s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 171s Selecting previously unselected package libfontconfig1:s390x. 171s Preparing to unpack .../007-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 171s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 171s Selecting previously unselected package fontconfig. 171s Preparing to unpack .../008-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 171s Unpacking fontconfig (2.15.0-2ubuntu1) ... 171s Selecting previously unselected package fonts-dejavu-extra. 171s Preparing to unpack .../009-fonts-dejavu-extra_2.37-8_all.deb ... 171s Unpacking fonts-dejavu-extra (2.37-8) ... 171s Selecting previously unselected package fonts-fork-awesome. 171s Preparing to unpack .../010-fonts-fork-awesome_1.2.0+ds1-1_all.deb ... 171s Unpacking fonts-fork-awesome (1.2.0+ds1-1) ... 171s Selecting previously unselected package javascript-common. 171s Preparing to unpack .../011-javascript-common_11+nmu1_all.deb ... 171s Unpacking javascript-common (11+nmu1) ... 171s Selecting previously unselected package libaom3:s390x. 171s Preparing to unpack .../012-libaom3_3.12.0-1_s390x.deb ... 171s Unpacking libaom3:s390x (3.12.0-1) ... 171s Selecting previously unselected package php-common. 171s Preparing to unpack .../013-php-common_2%3a93ubuntu2_all.deb ... 171s Unpacking php-common (2:93ubuntu2) ... 171s Selecting previously unselected package php8.3-common. 171s Preparing to unpack .../014-php8.3-common_8.3.11-0ubuntu4_s390x.deb ... 171s Unpacking php8.3-common (8.3.11-0ubuntu4) ... 171s Selecting previously unselected package php8.3-opcache. 171s Preparing to unpack .../015-php8.3-opcache_8.3.11-0ubuntu4_s390x.deb ... 171s Unpacking php8.3-opcache (8.3.11-0ubuntu4) ... 171s Selecting previously unselected package php8.3-readline. 171s Preparing to unpack .../016-php8.3-readline_8.3.11-0ubuntu4_s390x.deb ... 171s Unpacking php8.3-readline (8.3.11-0ubuntu4) ... 171s Selecting previously unselected package libargon2-1:s390x. 171s Preparing to unpack .../017-libargon2-1_0~20190702+dfsg-4build1_s390x.deb ... 171s Unpacking libargon2-1:s390x (0~20190702+dfsg-4build1) ... 171s Selecting previously unselected package libsodium23:s390x. 171s Preparing to unpack .../018-libsodium23_1.0.18-1build3_s390x.deb ... 171s Unpacking libsodium23:s390x (1.0.18-1build3) ... 171s Selecting previously unselected package php8.3-cli. 171s Preparing to unpack .../019-php8.3-cli_8.3.11-0ubuntu4_s390x.deb ... 171s Unpacking php8.3-cli (8.3.11-0ubuntu4) ... 172s Selecting previously unselected package libapache2-mod-php8.3. 172s Preparing to unpack .../020-libapache2-mod-php8.3_8.3.11-0ubuntu4_s390x.deb ... 172s Unpacking libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 172s Selecting previously unselected package libapache2-mod-php. 172s Preparing to unpack .../021-libapache2-mod-php_2%3a8.3+93ubuntu2_all.deb ... 172s Unpacking libapache2-mod-php (2:8.3+93ubuntu2) ... 172s Selecting previously unselected package libpixman-1-0:s390x. 172s Preparing to unpack .../022-libpixman-1-0_0.44.0-3_s390x.deb ... 172s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 172s Selecting previously unselected package libxcb-render0:s390x. 172s Preparing to unpack .../023-libxcb-render0_1.17.0-2_s390x.deb ... 172s Unpacking libxcb-render0:s390x (1.17.0-2) ... 172s Selecting previously unselected package libxcb-shm0:s390x. 172s Preparing to unpack .../024-libxcb-shm0_1.17.0-2_s390x.deb ... 172s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 172s Selecting previously unselected package libxrender1:s390x. 172s Preparing to unpack .../025-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 172s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 172s Selecting previously unselected package libcairo2:s390x. 172s Preparing to unpack .../026-libcairo2_1.18.2-2_s390x.deb ... 172s Unpacking libcairo2:s390x (1.18.2-2) ... 172s Selecting previously unselected package libdatrie1:s390x. 172s Preparing to unpack .../027-libdatrie1_0.2.13-3build1_s390x.deb ... 172s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 172s Selecting previously unselected package libdbi1t64:s390x. 172s Preparing to unpack .../028-libdbi1t64_0.9.0-6.1build1_s390x.deb ... 172s Unpacking libdbi1t64:s390x (0.9.0-6.1build1) ... 172s Selecting previously unselected package libde265-0:s390x. 172s Preparing to unpack .../029-libde265-0_1.0.15-1build4_s390x.deb ... 172s Unpacking libde265-0:s390x (1.0.15-1build4) ... 172s Selecting previously unselected package libdeflate0:s390x. 172s Preparing to unpack .../030-libdeflate0_1.23-1_s390x.deb ... 172s Unpacking libdeflate0:s390x (1.23-1) ... 172s Selecting previously unselected package libsharpyuv0:s390x. 172s Preparing to unpack .../031-libsharpyuv0_1.5.0-0.1_s390x.deb ... 172s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 172s Selecting previously unselected package libheif-plugin-aomdec:s390x. 172s Preparing to unpack .../032-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 172s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 172s Selecting previously unselected package libheif-plugin-libde265:s390x. 172s Preparing to unpack .../033-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 172s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 172s Selecting previously unselected package libheif1:s390x. 172s Preparing to unpack .../034-libheif1_1.19.5-1build1_s390x.deb ... 172s Unpacking libheif1:s390x (1.19.5-1build1) ... 172s Selecting previously unselected package libgomp1:s390x. 172s Preparing to unpack .../035-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 172s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 172s Selecting previously unselected package libimagequant0:s390x. 172s Preparing to unpack .../036-libimagequant0_2.18.0-1build1_s390x.deb ... 172s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 172s Selecting previously unselected package libjpeg-turbo8:s390x. 172s Preparing to unpack .../037-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 172s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 172s Selecting previously unselected package libjpeg8:s390x. 172s Preparing to unpack .../038-libjpeg8_8c-2ubuntu11_s390x.deb ... 172s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 172s Selecting previously unselected package libgraphite2-3:s390x. 172s Preparing to unpack .../039-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 172s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 172s Selecting previously unselected package libharfbuzz0b:s390x. 172s Preparing to unpack .../040-libharfbuzz0b_10.2.0-1_s390x.deb ... 172s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 172s Selecting previously unselected package libraqm0:s390x. 172s Preparing to unpack .../041-libraqm0_0.10.2-1_s390x.deb ... 172s Unpacking libraqm0:s390x (0.10.2-1) ... 172s Selecting previously unselected package libjbig0:s390x. 172s Preparing to unpack .../042-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 172s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 172s Selecting previously unselected package libwebp7:s390x. 172s Preparing to unpack .../043-libwebp7_1.5.0-0.1_s390x.deb ... 172s Unpacking libwebp7:s390x (1.5.0-0.1) ... 172s Selecting previously unselected package libtiff6:s390x. 172s Preparing to unpack .../044-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 172s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 172s Selecting previously unselected package libxpm4:s390x. 172s Preparing to unpack .../045-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 172s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 172s Selecting previously unselected package libgd3:s390x. 172s Preparing to unpack .../046-libgd3_2.3.3-12ubuntu3_s390x.deb ... 172s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 172s Selecting previously unselected package libjs-chart.js. 172s Preparing to unpack .../047-libjs-chart.js_3.9.1+~cs3.1.2-3_all.deb ... 172s Unpacking libjs-chart.js (3.9.1+~cs3.1.2-3) ... 172s Selecting previously unselected package libjs-jquery. 172s Preparing to unpack .../048-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 172s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 172s Selecting previously unselected package libjs-jquery-ui. 172s Preparing to unpack .../049-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 172s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 172s Selecting previously unselected package libjs-jquery-colorpicker. 172s Preparing to unpack .../050-libjs-jquery-colorpicker_1.2.20-4_all.deb ... 172s Unpacking libjs-jquery-colorpicker (1.2.20-4) ... 172s Selecting previously unselected package libjs-jquery-cookie. 172s Preparing to unpack .../051-libjs-jquery-cookie_12-4_all.deb ... 172s Unpacking libjs-jquery-cookie (12-4) ... 172s Selecting previously unselected package libjs-jquery-jstree. 172s Preparing to unpack .../052-libjs-jquery-jstree_3.3.16+dfsg1-1_all.deb ... 172s Unpacking libjs-jquery-jstree (3.3.16+dfsg1-1) ... 172s Selecting previously unselected package libjs-jquery-metadata. 172s Preparing to unpack .../053-libjs-jquery-metadata_12-4_all.deb ... 172s Unpacking libjs-jquery-metadata (12-4) ... 172s Selecting previously unselected package libjs-jquery-tablesorter. 172s Preparing to unpack .../054-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-4_all.deb ... 172s Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 172s Selecting previously unselected package libjs-jquery-timepicker. 172s Preparing to unpack .../055-libjs-jquery-timepicker_1.6.3-6_all.deb ... 172s Unpacking libjs-jquery-timepicker (1.6.3-6) ... 172s Selecting previously unselected package libjs-jquery-ui-theme-smoothness. 172s Preparing to unpack .../056-libjs-jquery-ui-theme-smoothness_1.12.1+dfsg-1.1_all.deb ... 172s Unpacking libjs-jquery-ui-theme-smoothness (1.12.1+dfsg-1.1) ... 172s Selecting previously unselected package libjs-jquery-ui-theme-south-street. 172s Preparing to unpack .../057-libjs-jquery-ui-theme-south-street_1.12.1+dfsg-1.1_all.deb ... 172s Unpacking libjs-jquery-ui-theme-south-street (1.12.1+dfsg-1.1) ... 172s Selecting previously unselected package libjs-jquery-ui-theme-ui-darkness. 172s Preparing to unpack .../058-libjs-jquery-ui-theme-ui-darkness_1.12.1+dfsg-1.1_all.deb ... 172s Unpacking libjs-jquery-ui-theme-ui-darkness (1.12.1+dfsg-1.1) ... 172s Selecting previously unselected package libthai-data. 172s Preparing to unpack .../059-libthai-data_0.1.29-2build1_all.deb ... 172s Unpacking libthai-data (0.1.29-2build1) ... 172s Selecting previously unselected package libthai0:s390x. 172s Preparing to unpack .../060-libthai0_0.1.29-2build1_s390x.deb ... 172s Unpacking libthai0:s390x (0.1.29-2build1) ... 172s Selecting previously unselected package libpango-1.0-0:s390x. 172s Preparing to unpack .../061-libpango-1.0-0_1.56.1-1_s390x.deb ... 172s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 172s Selecting previously unselected package libpangoft2-1.0-0:s390x. 172s Preparing to unpack .../062-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 172s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 172s Selecting previously unselected package libpangocairo-1.0-0:s390x. 172s Preparing to unpack .../063-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 172s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 172s Selecting previously unselected package libphp-phpmailer. 172s Preparing to unpack .../064-libphp-phpmailer_6.9.1-1_all.deb ... 172s Unpacking libphp-phpmailer (6.9.1-1) ... 172s Selecting previously unselected package librrd8t64:s390x. 172s Preparing to unpack .../065-librrd8t64_1.7.2-4.2ubuntu1_s390x.deb ... 172s Unpacking librrd8t64:s390x (1.7.2-4.2ubuntu1) ... 172s Selecting previously unselected package libsnmp-base. 172s Preparing to unpack .../066-libsnmp-base_5.9.4+dfsg-1.1ubuntu6_all.deb ... 172s Unpacking libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 172s Selecting previously unselected package libsnmp40t64:s390x. 172s Preparing to unpack .../067-libsnmp40t64_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 172s Unpacking libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 172s Selecting previously unselected package libxslt1.1:s390x. 172s Preparing to unpack .../068-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 172s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 172s Selecting previously unselected package node-d3-array. 172s Preparing to unpack .../069-node-d3-array_3.2.0+~cs5.0.6-2_all.deb ... 172s Unpacking node-d3-array (3.2.0+~cs5.0.6-2) ... 172s Selecting previously unselected package node-d3-axis. 172s Preparing to unpack .../070-node-d3-axis_1.0.12+~1.0.16-1_all.deb ... 172s Unpacking node-d3-axis (1.0.12+~1.0.16-1) ... 172s Selecting previously unselected package node-d3-dispatch. 172s Preparing to unpack .../071-node-d3-dispatch_1.0.6+~1.0.9-1_all.deb ... 172s Unpacking node-d3-dispatch (1.0.6+~1.0.9-1) ... 172s Selecting previously unselected package node-d3-selection. 172s Preparing to unpack .../072-node-d3-selection_1.4.1+~1.4.3-1_all.deb ... 172s Unpacking node-d3-selection (1.4.1+~1.4.3-1) ... 172s Selecting previously unselected package node-d3-drag. 172s Preparing to unpack .../073-node-d3-drag_1.2.5+~1.2.5-1_all.deb ... 172s Unpacking node-d3-drag (1.2.5+~1.2.5-1) ... 172s Selecting previously unselected package node-d3-color. 172s Preparing to unpack .../074-node-d3-color_1.4.1+~1.4.2-1_all.deb ... 172s Unpacking node-d3-color (1.4.1+~1.4.2-1) ... 172s Selecting previously unselected package node-d3-interpolate. 172s Preparing to unpack .../075-node-d3-interpolate_1.4.0+~1.4.2-1_all.deb ... 172s Unpacking node-d3-interpolate (1.4.0+~1.4.2-1) ... 172s Selecting previously unselected package node-d3-ease. 172s Preparing to unpack .../076-node-d3-ease_1.0.7+~1.0.11-1_all.deb ... 172s Unpacking node-d3-ease (1.0.7+~1.0.11-1) ... 172s Selecting previously unselected package node-d3-timer. 172s Preparing to unpack .../077-node-d3-timer_1.0.10+~1.0.10-1_all.deb ... 172s Unpacking node-d3-timer (1.0.10+~1.0.10-1) ... 172s Selecting previously unselected package node-d3-transition. 172s Preparing to unpack .../078-node-d3-transition_1.3.2+~1.3.2-1_all.deb ... 172s Unpacking node-d3-transition (1.3.2+~1.3.2-1) ... 172s Selecting previously unselected package node-d3-brush. 172s Preparing to unpack .../079-node-d3-brush_1.1.6+~1.1.5-1_all.deb ... 172s Unpacking node-d3-brush (1.1.6+~1.1.5-1) ... 172s Selecting previously unselected package node-d3-path. 172s Preparing to unpack .../080-node-d3-path_1.0.9+~1.0.9-1_all.deb ... 172s Unpacking node-d3-path (1.0.9+~1.0.9-1) ... 172s Selecting previously unselected package node-d3-chord. 172s Preparing to unpack .../081-node-d3-chord_1.0.6+~1.0.11-1_all.deb ... 172s Unpacking node-d3-chord (1.0.6+~1.0.11-1) ... 172s Selecting previously unselected package node-d3-collection. 172s Preparing to unpack .../082-node-d3-collection_1.0.7+~1.0.10-1_all.deb ... 172s Unpacking node-d3-collection (1.0.7+~1.0.10-1) ... 172s Selecting previously unselected package node-d3-contour. 172s Preparing to unpack .../083-node-d3-contour_1.3.2+~1.3.3-1_all.deb ... 172s Unpacking node-d3-contour (1.3.2+~1.3.3-1) ... 172s Selecting previously unselected package node-safe-buffer. 172s Preparing to unpack .../084-node-safe-buffer_5.2.1+~cs2.1.2-3_all.deb ... 172s Unpacking node-safe-buffer (5.2.1+~cs2.1.2-3) ... 172s Selecting previously unselected package node-iconv-lite. 172s Preparing to unpack .../085-node-iconv-lite_0.6.3-3_all.deb ... 172s Unpacking node-iconv-lite (0.6.3-3) ... 172s Selecting previously unselected package node-d3-queue. 172s Preparing to unpack .../086-node-d3-queue_3.0.7-13_all.deb ... 172s Unpacking node-d3-queue (3.0.7-13) ... 172s Selecting previously unselected package node-rw. 172s Preparing to unpack .../087-node-rw_1.3.3-5_all.deb ... 172s Unpacking node-rw (1.3.3-5) ... 172s Selecting previously unselected package node-commander. 172s Preparing to unpack .../088-node-commander_9.4.1-1_all.deb ... 172s Unpacking node-commander (9.4.1-1) ... 172s Selecting previously unselected package node-d3-dsv. 172s Preparing to unpack .../089-node-d3-dsv_1.2.0+~1.2.3-1_all.deb ... 172s Unpacking node-d3-dsv (1.2.0+~1.2.3-1) ... 172s Selecting previously unselected package node-d3-fetch. 172s Preparing to unpack .../090-node-d3-fetch_1.2.0+~1.2.2-1_all.deb ... 172s Unpacking node-d3-fetch (1.2.0+~1.2.2-1) ... 173s Selecting previously unselected package node-d3-quadtree. 173s Preparing to unpack .../091-node-d3-quadtree_1.0.7+~1.0.9-1_all.deb ... 173s Unpacking node-d3-quadtree (1.0.7+~1.0.9-1) ... 173s Selecting previously unselected package node-d3-force. 173s Preparing to unpack .../092-node-d3-force_2.1.1+~2.1.4-1_all.deb ... 173s Unpacking node-d3-force (2.1.1+~2.1.4-1) ... 173s Selecting previously unselected package libjs-d3-format. 173s Preparing to unpack .../093-libjs-d3-format_1%3a1.4.5+~1.4.2-2_all.deb ... 173s Unpacking libjs-d3-format (1:1.4.5+~1.4.2-2) ... 173s Selecting previously unselected package node-d3-format. 173s Preparing to unpack .../094-node-d3-format_1%3a1.4.5+~1.4.2-2_all.deb ... 173s Unpacking node-d3-format (1:1.4.5+~1.4.2-2) ... 173s Selecting previously unselected package node-d3-geo. 173s Preparing to unpack .../095-node-d3-geo_1.12.1+~1.12.4-1_all.deb ... 173s Unpacking node-d3-geo (1.12.1+~1.12.4-1) ... 173s Selecting previously unselected package node-d3-hierarchy. 173s Preparing to unpack .../096-node-d3-hierarchy_1.1.9+~1.1.8-1_all.deb ... 173s Unpacking node-d3-hierarchy (1.1.9+~1.1.8-1) ... 173s Selecting previously unselected package node-d3-polygon. 173s Preparing to unpack .../097-node-d3-polygon_1.0.6+~1.0.8-1_all.deb ... 173s Unpacking node-d3-polygon (1.0.6+~1.0.8-1) ... 173s Selecting previously unselected package node-d3-random. 173s Preparing to unpack .../098-node-d3-random_1.1.2+~1.1.3-1_all.deb ... 173s Unpacking node-d3-random (1.1.2+~1.1.3-1) ... 173s Selecting previously unselected package node-d3-time. 173s Preparing to unpack .../099-node-d3-time_1.1.0+~1.1.1-1_all.deb ... 173s Unpacking node-d3-time (1.1.0+~1.1.1-1) ... 173s Selecting previously unselected package node-d3-time-format. 173s Preparing to unpack .../100-node-d3-time-format_2.3.0+~2.3.1-1_all.deb ... 173s Unpacking node-d3-time-format (2.3.0+~2.3.1-1) ... 173s Selecting previously unselected package node-d3-scale. 173s Preparing to unpack .../101-node-d3-scale_2.2.2+~2.2.6-1_all.deb ... 173s Unpacking node-d3-scale (2.2.2+~2.2.6-1) ... 173s Selecting previously unselected package node-d3-scale-chromatic. 173s Preparing to unpack .../102-node-d3-scale-chromatic_1.5.0+~1.5.1-1_all.deb ... 173s Unpacking node-d3-scale-chromatic (1.5.0+~1.5.1-1) ... 173s Selecting previously unselected package node-d3-shape. 173s Preparing to unpack .../103-node-d3-shape_1.3.7+~1.3.8-1_all.deb ... 173s Unpacking node-d3-shape (1.3.7+~1.3.8-1) ... 173s Selecting previously unselected package node-d3-voronoi. 173s Preparing to unpack .../104-node-d3-voronoi_1.1.4+~1.1.9-1_all.deb ... 173s Unpacking node-d3-voronoi (1.1.4+~1.1.9-1) ... 173s Selecting previously unselected package node-d3-zoom. 173s Preparing to unpack .../105-node-d3-zoom_1.8.3+~1.8.4-1_all.deb ... 173s Unpacking node-d3-zoom (1.8.3+~1.8.4-1) ... 173s Selecting previously unselected package node-d3. 173s Preparing to unpack .../106-node-d3_5.16.0+~cs5.28.10-2_all.deb ... 173s Unpacking node-d3 (5.16.0+~cs5.28.10-2) ... 173s Selecting previously unselected package node-dompurify. 173s Preparing to unpack .../107-node-dompurify_3.1.7+dfsg+~3.0.5-1_all.deb ... 173s Unpacking node-dompurify (3.1.7+dfsg+~3.0.5-1) ... 173s Selecting previously unselected package node-ua-parser-js. 173s Preparing to unpack .../108-node-ua-parser-js_0.8.1+ds+~0.7.36-3_all.deb ... 173s Unpacking node-ua-parser-js (0.8.1+ds+~0.7.36-3) ... 173s Selecting previously unselected package php8.3-gd. 173s Preparing to unpack .../109-php8.3-gd_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-gd (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-gd. 173s Preparing to unpack .../110-php-gd_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-gd (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package php8.3-gmp. 173s Preparing to unpack .../111-php8.3-gmp_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-gmp (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-gmp. 173s Preparing to unpack .../112-php-gmp_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-gmp (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package php8.3-ldap. 173s Preparing to unpack .../113-php8.3-ldap_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-ldap (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-ldap. 173s Preparing to unpack .../114-php-ldap_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-ldap (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package php8.3-mbstring. 173s Preparing to unpack .../115-php8.3-mbstring_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-mbstring (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-mbstring. 173s Preparing to unpack .../116-php-mbstring_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-mbstring (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package php8.3-mysql. 173s Preparing to unpack .../117-php8.3-mysql_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-mysql (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-mysql. 173s Preparing to unpack .../118-php-mysql_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-mysql (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package php-symfony-deprecation-contracts. 173s Preparing to unpack .../119-php-symfony-deprecation-contracts_3.5.2-5_all.deb ... 173s Unpacking php-symfony-deprecation-contracts (3.5.2-5) ... 173s Selecting previously unselected package php-psr-cache. 173s Preparing to unpack .../120-php-psr-cache_3.0.0-4_all.deb ... 173s Unpacking php-psr-cache (3.0.0-4) ... 173s Selecting previously unselected package php-psr-log. 173s Preparing to unpack .../121-php-psr-log_3.0.2-2_all.deb ... 173s Unpacking php-psr-log (3.0.2-2) ... 173s Selecting previously unselected package php-symfony-cache-contracts. 173s Preparing to unpack .../122-php-symfony-cache-contracts_3.5.2-5_all.deb ... 173s Unpacking php-symfony-cache-contracts (3.5.2-5) ... 173s Selecting previously unselected package php-psr-container. 173s Preparing to unpack .../123-php-psr-container_2.0.2-1_all.deb ... 173s Unpacking php-psr-container (2.0.2-1) ... 173s Selecting previously unselected package php-symfony-service-contracts. 173s Preparing to unpack .../124-php-symfony-service-contracts_3.5.2-5_all.deb ... 173s Unpacking php-symfony-service-contracts (3.5.2-5) ... 173s Selecting previously unselected package php-symfony-var-exporter. 173s Preparing to unpack .../125-php-symfony-var-exporter_6.4.10+dfsg-1ubuntu1_all.deb ... 173s Unpacking php-symfony-var-exporter (6.4.10+dfsg-1ubuntu1) ... 173s Selecting previously unselected package php-symfony-cache. 173s Preparing to unpack .../126-php-symfony-cache_6.4.10+dfsg-1ubuntu1_all.deb ... 173s Unpacking php-symfony-cache (6.4.10+dfsg-1ubuntu1) ... 173s Selecting previously unselected package php-symfony-expression-language. 173s Preparing to unpack .../127-php-symfony-expression-language_6.4.10+dfsg-1ubuntu1_all.deb ... 173s Unpacking php-symfony-expression-language (6.4.10+dfsg-1ubuntu1) ... 173s Selecting previously unselected package php-phpmyadmin-motranslator. 173s Preparing to unpack .../128-php-phpmyadmin-motranslator_5.3.1-1_all.deb ... 173s Unpacking php-phpmyadmin-motranslator (5.3.1-1) ... 173s Selecting previously unselected package php-phpseclib. 173s Preparing to unpack .../129-php-phpseclib_2.0.48-2_all.deb ... 173s Unpacking php-phpseclib (2.0.48-2) ... 173s Selecting previously unselected package php8.3-snmp. 173s Preparing to unpack .../130-php8.3-snmp_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-snmp (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-snmp. 173s Preparing to unpack .../131-php-snmp_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-snmp (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package php-twig. 173s Preparing to unpack .../132-php-twig_3.8.0-3_all.deb ... 173s Unpacking php-twig (3.8.0-3) ... 173s Selecting previously unselected package php8.3-xml. 173s Preparing to unpack .../133-php8.3-xml_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-xml (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php-xml. 173s Preparing to unpack .../134-php-xml_2%3a8.3+93ubuntu2_all.deb ... 173s Unpacking php-xml (2:8.3+93ubuntu2) ... 173s Selecting previously unselected package snmp. 173s Preparing to unpack .../135-snmp_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 173s Unpacking snmp (5.9.4+dfsg-1.1ubuntu6) ... 173s Selecting previously unselected package libjs-jquery-hotkeys. 173s Preparing to unpack .../136-libjs-jquery-hotkeys_0.2.0-1_all.deb ... 173s Unpacking libjs-jquery-hotkeys (0.2.0-1) ... 173s Selecting previously unselected package libjs-jquery-ui-touch-punch. 173s Preparing to unpack .../137-libjs-jquery-ui-touch-punch_0.0~git20141218.2.4bc0091+dfsg1-4.1_all.deb ... 173s Unpacking libjs-jquery-ui-touch-punch (0.0~git20141218.2.4bc0091+dfsg1-4.1) ... 173s Selecting previously unselected package rrdtool. 173s Preparing to unpack .../138-rrdtool_1.7.2-4.2ubuntu1_s390x.deb ... 173s Unpacking rrdtool (1.7.2-4.2ubuntu1) ... 173s Selecting previously unselected package cacti. 173s Preparing to unpack .../139-cacti_1.2.28+ds1-3ubuntu1_all.deb ... 173s Unpacking cacti (1.2.28+ds1-3ubuntu1) ... 173s Setting up libconfig-inifiles-perl (3.000003-3) ... 173s Setting up javascript-common (11+nmu1) ... 173s Package apache2 is not configured yet. Will defer actions by package javascript-common. 173s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 173s Setting up node-ua-parser-js (0.8.1+ds+~0.7.36-3) ... 173s Setting up libpixman-1-0:s390x (0.44.0-3) ... 173s Setting up galera-4 (26.4.21-1) ... 173s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 173s Setting up php-common (2:93ubuntu2) ... 174s Created symlink '/etc/systemd/system/timers.target.wants/phpsessionclean.timer' → '/usr/lib/systemd/system/phpsessionclean.timer'. 174s Setting up node-d3-timer (1.0.10+~1.0.10-1) ... 174s Setting up libaom3:s390x (3.12.0-1) ... 174s Setting up node-d3-color (1.4.1+~1.4.2-1) ... 174s Setting up node-d3-interpolate (1.4.0+~1.4.2-1) ... 174s Setting up node-d3-queue (3.0.7-13) ... 174s Setting up libsodium23:s390x (1.0.18-1build3) ... 174s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 174s Setting up libjs-chart.js (3.9.1+~cs3.1.2-3) ... 174s Setting up node-d3-hierarchy (1.1.9+~1.1.8-1) ... 174s Setting up node-d3-ease (1.0.7+~1.0.11-1) ... 174s Setting up node-dompurify (3.1.7+dfsg+~3.0.5-1) ... 174s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 174s Setting up libphp-phpmailer (6.9.1-1) ... 174s Setting up libdatrie1:s390x (0.2.13-3build1) ... 174s Setting up libxcb-render0:s390x (1.17.0-2) ... 174s Setting up fonts-fork-awesome (1.2.0+ds1-1) ... 174s Setting up node-d3-scale-chromatic (1.5.0+~1.5.1-1) ... 174s Setting up libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 174s Setting up libargon2-1:s390x (0~20190702+dfsg-4build1) ... 174s Setting up libdbi1t64:s390x (0.9.0-6.1build1) ... 174s Setting up php-psr-container (2.0.2-1) ... 174s Setting up libjs-jquery-ui-theme-south-street (1.12.1+dfsg-1.1) ... 174s Setting up libdeflate0:s390x (1.23-1) ... 174s Setting up node-d3-selection (1.4.1+~1.4.3-1) ... 174s Setting up libxcb-shm0:s390x (1.17.0-2) ... 174s Setting up dbconfig-common (2.0.24) ... 174s Creating config file /etc/dbconfig-common/config with new version 174s Setting up php8.3-common (8.3.11-0ubuntu4) ... 174s Creating config file /etc/php/8.3/mods-available/calendar.ini with new version 174s Creating config file /etc/php/8.3/mods-available/ctype.ini with new version 175s Creating config file /etc/php/8.3/mods-available/exif.ini with new version 175s Creating config file /etc/php/8.3/mods-available/fileinfo.ini with new version 175s Creating config file /etc/php/8.3/mods-available/ffi.ini with new version 175s Creating config file /etc/php/8.3/mods-available/ftp.ini with new version 175s Creating config file /etc/php/8.3/mods-available/gettext.ini with new version 176s Creating config file /etc/php/8.3/mods-available/iconv.ini with new version 176s Creating config file /etc/php/8.3/mods-available/pdo.ini with new version 176s Creating config file /etc/php/8.3/mods-available/phar.ini with new version 176s Creating config file /etc/php/8.3/mods-available/posix.ini with new version 176s Creating config file /etc/php/8.3/mods-available/shmop.ini with new version 177s Creating config file /etc/php/8.3/mods-available/sockets.ini with new version 177s Creating config file /etc/php/8.3/mods-available/sysvmsg.ini with new version 177s Creating config file /etc/php/8.3/mods-available/sysvsem.ini with new version 177s Creating config file /etc/php/8.3/mods-available/sysvshm.ini with new version 177s Creating config file /etc/php/8.3/mods-available/tokenizer.ini with new version 177s Setting up node-d3-axis (1.0.12+~1.0.16-1) ... 177s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 177s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 177s Setting up node-d3-path (1.0.9+~1.0.9-1) ... 177s Setting up php8.3-mysql (8.3.11-0ubuntu4) ... 177s Creating config file /etc/php/8.3/mods-available/mysqlnd.ini with new version 178s Creating config file /etc/php/8.3/mods-available/mysqli.ini with new version 178s Creating config file /etc/php/8.3/mods-available/pdo_mysql.ini with new version 178s Setting up php-phpseclib (2.0.48-2) ... 178s Setting up php8.3-mbstring (8.3.11-0ubuntu4) ... 178s Creating config file /etc/php/8.3/mods-available/mbstring.ini with new version 178s Setting up node-safe-buffer (5.2.1+~cs2.1.2-3) ... 178s Setting up node-rw (1.3.3-5) ... 178s Setting up node-d3-polygon (1.0.6+~1.0.8-1) ... 178s Setting up php8.3-readline (8.3.11-0ubuntu4) ... 178s Creating config file /etc/php/8.3/mods-available/readline.ini with new version 178s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 178s Setting up node-d3-quadtree (1.0.7+~1.0.9-1) ... 178s Setting up php8.3-gmp (8.3.11-0ubuntu4) ... 178s Creating config file /etc/php/8.3/mods-available/gmp.ini with new version 178s Setting up socat (1.8.0.2-1) ... 178s Setting up libimagequant0:s390x (2.18.0-1build1) ... 178s Setting up php-psr-cache (3.0.0-4) ... 178s Setting up fonts-dejavu-mono (2.37-8) ... 178s Setting up node-d3-collection (1.0.7+~1.0.10-1) ... 178s Setting up libmariadb3:s390x (1:11.4.4-3) ... 178s Setting up fonts-dejavu-core (2.37-8) ... 178s Setting up libjs-jquery-ui-theme-smoothness (1.12.1+dfsg-1.1) ... 178s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 178s Setting up php-twig (3.8.0-3) ... 178s Setting up php-gmp (2:8.3+93ubuntu2) ... 178s Setting up node-d3-voronoi (1.1.4+~1.1.9-1) ... 178s Setting up node-d3-dispatch (1.0.6+~1.0.9-1) ... 178s Setting up libwebp7:s390x (1.5.0-0.1) ... 178s Setting up node-d3-time (1.1.0+~1.1.1-1) ... 179s Setting up php-psr-log (3.0.2-2) ... 179s Setting up node-commander (9.4.1-1) ... 179s Setting up php8.3-ldap (8.3.11-0ubuntu4) ... 179s Creating config file /etc/php/8.3/mods-available/ldap.ini with new version 179s Setting up fonts-dejavu-extra (2.37-8) ... 179s Setting up node-d3-array (3.2.0+~cs5.0.6-2) ... 179s Setting up libjs-d3-format (1:1.4.5+~1.4.2-2) ... 179s Setting up libapr1t64:s390x (1.7.5-1) ... 179s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 179s Setting up libjs-jquery-ui-theme-ui-darkness (1.12.1+dfsg-1.1) ... 179s Setting up liblua5.4-0:s390x (5.4.7-1) ... 179s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 179s Setting up libthai-data (0.1.29-2build1) ... 179s Setting up php8.3-xml (8.3.11-0ubuntu4) ... 179s Creating config file /etc/php/8.3/mods-available/dom.ini with new version 179s Creating config file /etc/php/8.3/mods-available/simplexml.ini with new version 179s Creating config file /etc/php/8.3/mods-available/xml.ini with new version 179s Creating config file /etc/php/8.3/mods-available/xmlreader.ini with new version 180s Creating config file /etc/php/8.3/mods-available/xmlwriter.ini with new version 180s Creating config file /etc/php/8.3/mods-available/xsl.ini with new version 180s Setting up apache2-data (2.4.63-1ubuntu1) ... 180s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 180s Setting up php8.3-opcache (8.3.11-0ubuntu4) ... 180s Creating config file /etc/php/8.3/mods-available/opcache.ini with new version 180s Setting up node-d3-geo (1.12.1+~1.12.4-1) ... 180s Setting up liburing2:s390x (2.9-1) ... 180s Setting up libjs-jquery-hotkeys (0.2.0-1) ... 180s Setting up libde265-0:s390x (1.0.15-1build4) ... 180s Setting up node-d3-transition (1.3.2+~1.3.2-1) ... 180s Setting up node-d3-random (1.1.2+~1.1.3-1) ... 180s Setting up libdbi-perl:s390x (1.647-1) ... 180s Setting up php-symfony-deprecation-contracts (3.5.2-5) ... 180s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 180s Setting up php-xml (2:8.3+93ubuntu2) ... 180s Setting up libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 180s Setting up libjs-jquery-cookie (12-4) ... 180s Setting up libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 180s Setting up php-mysql (2:8.3+93ubuntu2) ... 180s Setting up node-d3-format (1:1.4.5+~1.4.2-2) ... 180s Setting up php-symfony-cache-contracts (3.5.2-5) ... 180s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 180s Setting up node-d3-time-format (2.3.0+~2.3.1-1) ... 180s Setting up node-d3-chord (1.0.6+~1.0.11-1) ... 180s Setting up libjs-jquery-jstree (3.3.16+dfsg1-1) ... 180s Setting up php-symfony-service-contracts (3.5.2-5) ... 180s Setting up snmp (5.9.4+dfsg-1.1ubuntu6) ... 180s Setting up libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 180s Setting up php8.3-cli (8.3.11-0ubuntu4) ... 180s update-alternatives: using /usr/bin/php8.3 to provide /usr/bin/php (php) in auto mode 180s update-alternatives: using /usr/bin/phar8.3 to provide /usr/bin/phar (phar) in auto mode 180s update-alternatives: using /usr/bin/phar.phar8.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode 180s Creating config file /etc/php/8.3/cli/php.ini with new version 181s Setting up php-mbstring (2:8.3+93ubuntu2) ... 181s Setting up node-d3-shape (1.3.7+~1.3.8-1) ... 181s Setting up libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 181s Setting up mariadb-client-core (1:11.4.4-3) ... 181s Setting up libthai0:s390x (0.1.29-2build1) ... 181s Setting up node-d3-drag (1.2.5+~1.2.5-1) ... 181s Setting up node-iconv-lite (0.6.3-3) ... 181s Setting up php-ldap (2:8.3+93ubuntu2) ... 181s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 181s Setting up libjs-jquery-metadata (12-4) ... 181s Setting up libraqm0:s390x (0.10.2-1) ... 181s Setting up node-d3-scale (2.2.2+~2.2.6-1) ... 181s Setting up node-d3-force (2.1.1+~2.1.4-1) ... 181s Setting up node-d3-contour (1.3.2+~1.3.3-1) ... 181s Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 181s Setting up node-d3-brush (1.1.6+~1.1.5-1) ... 181s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 181s Setting up libjs-jquery-timepicker (1.6.3-6) ... 181s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 181s Setting up php-symfony-var-exporter (6.4.10+dfsg-1ubuntu1) ... 181s Setting up node-d3-dsv (1.2.0+~1.2.3-1) ... 181s Setting up mariadb-server-core (1:11.4.4-3) ... 181s Invalid file '/usr/sbin/mysqld' for capability operation 181s Setcap failed on /usr/sbin/mysqld, required with --memlock if insufficent RLIMIT_MEMLOCK 181s Setting up php8.3-snmp (8.3.11-0ubuntu4) ... 181s Creating config file /etc/php/8.3/mods-available/snmp.ini with new version 181s Setting up apache2-utils (2.4.63-1ubuntu1) ... 181s Setting up fontconfig (2.15.0-2ubuntu1) ... 183s Regenerating fonts cache... done. 183s Setting up mariadb-client (1:11.4.4-3) ... 183s Setting up libjs-jquery-colorpicker (1.2.20-4) ... 183s Setting up node-d3-zoom (1.8.3+~1.8.4-1) ... 183s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 183s Setting up dbconfig-mysql (2.0.24) ... 183s Setting up node-d3-fetch (1.2.0+~1.2.2-1) ... 183s Setting up node-d3 (5.16.0+~cs5.28.10-2) ... 183s Setting up apache2-bin (2.4.63-1ubuntu1) ... 183s Setting up libcairo2:s390x (1.18.2-2) ... 183s Setting up mariadb-server (1:11.4.4-3) ... 184s Created symlink '/etc/systemd/system/multi-user.target.wants/mariadb.service' → '/usr/lib/systemd/system/mariadb.service'. 186s Setting up libjs-jquery-ui-touch-punch (0.0~git20141218.2.4bc0091+dfsg1-4.1) ... 186s Setting up php-symfony-cache (6.4.10+dfsg-1ubuntu1) ... 186s Setting up php-symfony-expression-language (6.4.10+dfsg-1ubuntu1) ... 186s Setting up php-snmp (2:8.3+93ubuntu2) ... 186s Setting up libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 186s Package apache2 is not configured yet. Will defer actions by package libapache2-mod-php8.3. 186s Creating config file /etc/php/8.3/apache2/php.ini with new version 187s No module matches 187s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 187s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 187s Setting up apache2 (2.4.63-1ubuntu1) ... 187s Enabling module mpm_event. 187s Enabling module authz_core. 187s Enabling module authz_host. 187s Enabling module authn_core. 187s Enabling module auth_basic. 187s Enabling module access_compat. 187s Enabling module authn_file. 187s Enabling module authz_user. 187s Enabling module alias. 187s Enabling module dir. 187s Enabling module autoindex. 187s Enabling module env. 187s Enabling module mime. 187s Enabling module negotiation. 187s Enabling module setenvif. 187s Enabling module filter. 187s Enabling module deflate. 187s Enabling module status. 187s Enabling module reqtimeout. 187s Enabling conf charset. 187s Enabling conf localized-error-pages. 187s Enabling conf other-vhosts-access-log. 187s Enabling conf security. 187s Enabling conf serve-cgi-bin. 187s Enabling site 000-default. 187s info: Executing deferred 'a2enconf javascript-common' for package javascript-common 188s Enabling conf javascript-common. 188s info: Switch to mpm prefork for package libapache2-mod-php8.3 188s Module mpm_event disabled. 188s Enabling module mpm_prefork. 188s info: Executing deferred 'a2enmod php8.3' for package libapache2-mod-php8.3 188s Enabling module php8.3. 188s Created symlink '/etc/systemd/system/multi-user.target.wants/apache2.service' → '/usr/lib/systemd/system/apache2.service'. 188s Created symlink '/etc/systemd/system/multi-user.target.wants/apache-htcacheclean.service' → '/usr/lib/systemd/system/apache-htcacheclean.service'. 189s Setting up php-phpmyadmin-motranslator (5.3.1-1) ... 189s Setting up libapache2-mod-php (2:8.3+93ubuntu2) ... 189s Setting up librrd8t64:s390x (1.7.2-4.2ubuntu1) ... 189s Setting up rrdtool (1.7.2-4.2ubuntu1) ... 189s Setting up libheif1:s390x (1.19.5-1build1) ... 189s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 189s Setting up php8.3-gd (8.3.11-0ubuntu4) ... 189s Creating config file /etc/php/8.3/mods-available/gd.ini with new version 189s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 189s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 189s Setting up cacti (1.2.28+ds1-3ubuntu1) ... 190s Determining localhost credentials from /etc/mysql/debian.cnf: succeeded. 190s dbconfig-common: writing config to /etc/dbconfig-common/cacti.conf 190s Creating config file /etc/dbconfig-common/cacti.conf with new version 190s Creating config file /etc/cacti/debian.php with new version 190s checking privileges on database cacti for cacti@localhost: user creation needed. 190s granting access to database cacti for cacti@localhost: success. 190s verifying access for cacti@localhost: success. 190s creating database cacti: success. 190s verifying database cacti exists: success. 190s populating database via administrative sql... done. 191s populating database via sql... done. 191s dbconfig-common: flushing administrative password 191s Creating config file /etc/apache2/conf-available/cacti.conf with new version 191s Creating config file /etc/lighttpd/conf-available/20-cacti.conf with new version 207s Loading default cacti templates (may take some time)............................. done. 207s apache2_invoke: Enable configuration cacti 207s Setting up php-gd (2:8.3+93ubuntu2) ... 207s Processing triggers for libc-bin (2.40-4ubuntu1) ... 207s Processing triggers for ufw (0.36.2-9) ... 207s Processing triggers for man-db (2.13.0-1) ... 208s Processing triggers for php8.3-cli (8.3.11-0ubuntu4) ... 208s Processing triggers for libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 208s autopkgtest: DBG: testbed command exited with code 0 208s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cacti'], kind short, sout pipe, serr pipe, env [] 209s autopkgtest: DBG: testbed command exited with code 0 209s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-packages.all"], kind short, sout raw, serr pipe, env [] 209s autopkgtest: DBG: testbed command exited with code 0 209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-packages.all /tmp/autopkgtest-work.hhfgazt4/out/check-all-pages-with-mariadb-packages.all 209s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ysJYGH/build.Eyz/src'], kind short, sout raw, serr raw, env [] 209s autopkgtest: DBG: testbed command exited with code 0 209s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ysJYGH/build.Eyz/src already exists 209s autopkgtest [11:02:40]: test check-all-pages-with-mariadb: debian/tests/check_all_pages 209s autopkgtest [11:02:40]: test check-all-pages-with-mariadb: [----------------------- 209s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.ysJYGH/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-artifacts --chdir=/tmp/autopkgtest.ysJYGH/build.Eyz/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stderr --stdout=/tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stdout --tmp=/tmp/autopkgtest.ysJYGH/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 -- bash -ec debian/tests/check_all_pages'], kind test, sout raw, serr raw, env [] 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-artifacts 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: changing to directory: /tmp/autopkgtest.ysJYGH/build.Eyz/src 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: LANG=C.UTF-8 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LANGUAGE 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_ADDRESS 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_ALL 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_COLLATE 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_CTYPE 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_IDENTIFICATION 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MEASUREMENT 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MESSAGES 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MONETARY 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_NAME 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_NUMERIC 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_PAPER 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_TELEPHONE 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_TIME 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: pretending to be a login shell 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: will write standard error to /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stderr 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: will write stdout to /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stdout 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ysJYGH/autopkgtest_tmp 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: command to run: bash -ec debian/tests/check_all_pages 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: copying /tmp/tmp.OCTc04BLM8/out to stdout and file: /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stdout 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: copying /tmp/tmp.OCTc04BLM8/err to standard error and file: /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stdout 209s /tmp/autopkgtest.ysJYGH/wrapper.sh: writing script pid 14821 to /tmp/autopkgtest_script_pid 209s --2025-02-19 11:02:40-- http://localhost/cacti/index.php 209s Resolving localhost (localhost)... ::1, 127.0.0.1 209s Connecting to localhost (localhost)|::1|:80... connected. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘/tmp/tmp.W5Vwv1gOVh’ 210s 210s 0K .......... .... 1.42G=0s 210s 210s 2025-02-19 11:02:40 (1.42 GB/s) - ‘/tmp/tmp.W5Vwv1gOVh’ saved [14702] 210s 210s --2025-02-19 11:02:40-- http://localhost/cacti/index.php 210s Resolving localhost (localhost)... ::1, 127.0.0.1 210s Connecting to localhost (localhost)|::1|:80... connected. 210s HTTP request sent, awaiting response... 302 Found 210s Location: /cacti/index.php [following] 210s --2025-02-19 11:02:41-- http://localhost/cacti/index.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘/tmp/tmp.AWXZwoEwXn’ 210s 210s 0K .......... .......... .. 1.26G=0s 210s 210s 2025-02-19 11:02:41 (1.26 GB/s) - ‘/tmp/tmp.AWXZwoEwXn’ saved [23072] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/index.php 210s Resolving localhost (localhost)... ::1, 127.0.0.1 210s Connecting to localhost (localhost)|::1|:80... connected. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/index.php’ 210s 210s 0K .......... .......... .. 1.81G=0s 210s 210s 2025-02-19 11:02:41 (1.81 GB/s) - ‘localhost/cacti/index.php’ saved [23072] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/images/favicon.ico 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 1406 (1.4K) [image/vnd.microsoft.icon] 210s Saving to: ‘localhost/cacti/include/themes/modern/images/favicon.ico’ 210s 210s 0K . 100% 432M=0s 210s 210s 2025-02-19 11:02:41 (432 MB/s) - ‘localhost/cacti/include/themes/modern/images/favicon.ico’ saved [1406/1406] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/images/cacti_logo.gif 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 5641 (5.5K) [image/gif] 210s Saving to: ‘localhost/cacti/include/themes/modern/images/cacti_logo.gif’ 210s 210s 0K ..... 100% 2.04G=0s 210s 210s 2025-02-19 11:02:41 (2.04 GB/s) - ‘localhost/cacti/include/themes/modern/images/cacti_logo.gif’ saved [5641/5641] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/jquery.zoom.css?aca45860e0c75f2c485ddfc17160d597 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 6200 (6.1K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/jquery.zoom.css?aca45860e0c75f2c485ddfc17160d597’ 210s 210s 0K ...... 100% 4.29G=0s 210s 210s 2025-02-19 11:02:41 (4.29 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.zoom.css?aca45860e0c75f2c485ddfc17160d597’ saved [6200/6200] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/jquery-ui.css?711a15763c7b30ce9ee722ec4bd3292a 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 36587 (36K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/jquery-ui.css?711a15763c7b30ce9ee722ec4bd3292a’ 210s 210s 0K .......... .......... .......... ..... 100% 4.35G=0s 210s 210s 2025-02-19 11:02:41 (4.35 GB/s) - ‘localhost/cacti/include/themes/modern/jquery-ui.css?711a15763c7b30ce9ee722ec4bd3292a’ saved [36587/36587] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/default/style.css?a8aa5e9a2e50468335835b6d2e37a302 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 31730 (31K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/default/style.css?a8aa5e9a2e50468335835b6d2e37a302’ 210s 210s 0K .......... .......... .......... 100% 11.8G=0s 210s 210s 2025-02-19 11:02:41 (11.8 GB/s) - ‘localhost/cacti/include/themes/modern/default/style.css?a8aa5e9a2e50468335835b6d2e37a302’ saved [31730/31730] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/jquery.multiselect.css?f83e570ae998a2a6f7b07f850c58ce8b 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 2751 (2.7K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/jquery.multiselect.css?f83e570ae998a2a6f7b07f850c58ce8b’ 210s 210s 0K .. 100% 2.08G=0s 210s 210s 2025-02-19 11:02:41 (2.08 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.multiselect.css?f83e570ae998a2a6f7b07f850c58ce8b’ saved [2751/2751] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/jquery.multiselect.filter.css?bdc527651975f5ccfb3fd6f91af0bb93 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 402 [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/jquery.multiselect.filter.css?bdc527651975f5ccfb3fd6f91af0bb93’ 210s 210s 0K 100% 318M=0s 210s 210s 2025-02-19 11:02:41 (318 MB/s) - ‘localhost/cacti/include/themes/modern/jquery.multiselect.filter.css?bdc527651975f5ccfb3fd6f91af0bb93’ saved [402/402] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/jquery.timepicker.css?431ab7d4ef48afd9c39a647c5c990b0a 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 1945 (1.9K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/jquery.timepicker.css?431ab7d4ef48afd9c39a647c5c990b0a’ 210s 210s 0K . 100% 1.57G=0s 210s 210s 2025-02-19 11:02:41 (1.57 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.timepicker.css?431ab7d4ef48afd9c39a647c5c990b0a’ saved [1945/1945] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/jquery.colorpicker.css?2764606f45aeccc0548e532b260b7cd4 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 4451 (4.3K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/jquery.colorpicker.css?2764606f45aeccc0548e532b260b7cd4’ 210s 210s 0K .... 100% 3.36G=0s 210s 210s 2025-02-19 11:02:41 (3.36 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.colorpicker.css?2764606f45aeccc0548e532b260b7cd4’ saved [4451/4451] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/billboard.css?695c0029bc6c0f91e299c84485669130 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 4924 (4.8K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/billboard.css?695c0029bc6c0f91e299c84485669130’ 210s 210s 0K .... 100% 3.55G=0s 210s 210s 2025-02-19 11:02:41 (3.55 GB/s) - ‘localhost/cacti/include/themes/modern/billboard.css?695c0029bc6c0f91e299c84485669130’ saved [4924/4924] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/pace.css?cca67d465b4ea3986786a0679604a367 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 2102 (2.1K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/pace.css?cca67d465b4ea3986786a0679604a367’ 210s 210s 0K .. 100% 1.71G=0s 210s 210s 2025-02-19 11:02:41 (1.71 GB/s) - ‘localhost/cacti/include/themes/modern/pace.css?cca67d465b4ea3986786a0679604a367’ saved [2102/2102] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/Diff.css?49e6953c7461abf91ec4e7346d34bd85 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 1618 (1.6K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/Diff.css?49e6953c7461abf91ec4e7346d34bd85’ 210s 210s 0K . 100% 1.34G=0s 210s 210s 2025-02-19 11:02:41 (1.34 GB/s) - ‘localhost/cacti/include/themes/modern/Diff.css?49e6953c7461abf91ec4e7346d34bd85’ saved [1618/1618] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/fa/css/fork-awesome.css?058684ed6ffa07049b8cb69a4cf45d59 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 44305 (43K) [text/css] 210s Saving to: ‘localhost/cacti/include/fa/css/fork-awesome.css?058684ed6ffa07049b8cb69a4cf45d59’ 210s 210s 0K .......... .......... .......... .......... ... 100% 7.85G=0s 210s 210s 2025-02-19 11:02:41 (7.85 GB/s) - ‘localhost/cacti/include/fa/css/fork-awesome.css?058684ed6ffa07049b8cb69a4cf45d59’ saved [44305/44305] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/fa/css/v5-compat.css?1f32f888eb42b34e8f44ddcf889331bc 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 8537 (8.3K) [text/css] 210s Saving to: ‘localhost/cacti/include/fa/css/v5-compat.css?1f32f888eb42b34e8f44ddcf889331bc’ 210s 210s 0K ........ 100% 5.21G=0s 210s 210s 2025-02-19 11:02:41 (5.21 GB/s) - ‘localhost/cacti/include/fa/css/v5-compat.css?1f32f888eb42b34e8f44ddcf889331bc’ saved [8537/8537] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/vendor/flag-icons/css/flag-icons.css?ab806eafe572d8149eb3dba8d0283db7 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 32092 (31K) [text/css] 210s Saving to: ‘localhost/cacti/include/vendor/flag-icons/css/flag-icons.css?ab806eafe572d8149eb3dba8d0283db7’ 210s 210s 0K .......... .......... .......... . 100% 12.0G=0s 210s 210s 2025-02-19 11:02:41 (12.0 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/css/flag-icons.css?ab806eafe572d8149eb3dba8d0283db7’ saved [32092/32092] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/main.css?89dc22c5a1bc9af4ae7b7ae5e9d6e4d1 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 54770 (53K) [text/css] 210s Saving to: ‘localhost/cacti/include/themes/modern/main.css?89dc22c5a1bc9af4ae7b7ae5e9d6e4d1’ 210s 210s 0K .......... .......... .......... .......... .......... 93% 12.8G 0s 210s 50K ... 100% 6.49T=0s 210s 210s 2025-02-19 11:02:41 (13.7 GB/s) - ‘localhost/cacti/include/themes/modern/main.css?89dc22c5a1bc9af4ae7b7ae5e9d6e4d1’ saved [54770/54770] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/screenfull.js?60a2ad1d452950179fa4d2c5d1b5dee4 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 3532 (3.4K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/screenfull.js?60a2ad1d452950179fa4d2c5d1b5dee4’ 210s 210s 0K ... 100% 2.89G=0s 210s 210s 2025-02-19 11:02:41 (2.89 GB/s) - ‘localhost/cacti/include/js/screenfull.js?60a2ad1d452950179fa4d2c5d1b5dee4’ saved [3532/3532] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.js?ad949d50a30f82d86ebbe741d0309e48 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 89037 (87K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.js?ad949d50a30f82d86ebbe741d0309e48’ 210s 210s 0K .......... .......... .......... .......... .......... 57% 9.00G 0s 210s 50K .......... .......... .......... ...... 100% 236M=0s 210s 210s 2025-02-19 11:02:41 (537 MB/s) - ‘localhost/cacti/include/js/jquery.js?ad949d50a30f82d86ebbe741d0309e48’ saved [89037/89037] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery-ui.js?cfde8c7633ee58fc44233e7525b8f1a6 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 324622 (317K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery-ui.js?cfde8c7633ee58fc44233e7525b8f1a6’ 210s 210s 0K .......... .......... .......... .......... .......... 15% 9.15G 0s 210s 50K .......... .......... .......... .......... .......... 31% 233M 0s 210s 100K .......... .......... .......... .......... .......... 47% 852M 0s 210s 150K .......... .......... .......... .......... .......... 63% 870M 0s 210s 200K .......... .......... .......... .......... .......... 78% 93.1T 0s 210s 250K .......... .......... .......... .......... .......... 94% 772M 0s 210s 300K .......... ....... 100% 31.7T=0s 210s 210s 2025-02-19 11:02:41 (792 MB/s) - ‘localhost/cacti/include/js/jquery-ui.js?cfde8c7633ee58fc44233e7525b8f1a6’ saved [324622/324622] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.ui.touch.punch.js?e4784fd79bc2eaab74ec80aae760e549 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 1665 (1.6K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.ui.touch.punch.js?e4784fd79bc2eaab74ec80aae760e549’ 210s 210s 0K . 100% 1.40G=0s 210s 210s 2025-02-19 11:02:41 (1.40 GB/s) - ‘localhost/cacti/include/js/jquery.ui.touch.punch.js?e4784fd79bc2eaab74ec80aae760e549’ saved [1665/1665] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.cookie.js?55e535aee1b344497a0c1db4b7601596 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 1780 (1.7K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.cookie.js?55e535aee1b344497a0c1db4b7601596’ 210s 210s 0K . 100% 1.61G=0s 210s 210s 2025-02-19 11:02:41 (1.61 GB/s) - ‘localhost/cacti/include/js/jquery.cookie.js?55e535aee1b344497a0c1db4b7601596’ saved [1780/1780] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/js.storage.js?32df3a56e44d570b7e3177d71e892214 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 24383 (24K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/js.storage.js?32df3a56e44d570b7e3177d71e892214’ 210s 210s 0K .......... .......... ... 100% 9.61G=0s 210s 210s 2025-02-19 11:02:41 (9.61 GB/s) - ‘localhost/cacti/include/js/js.storage.js?32df3a56e44d570b7e3177d71e892214’ saved [24383/24383] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jstree.js?b79f183bde51f17d52b08b366d8c367a 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 159843 (156K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jstree.js?b79f183bde51f17d52b08b366d8c367a’ 210s 210s 0K .......... .......... .......... .......... .......... 32% 9.26G 0s 210s 50K .......... .......... .......... .......... .......... 64% 786M 0s 210s 100K .......... .......... .......... .......... .......... 96% 836M 0s 210s 150K ...... 100% 11.4T=0s 210s 210s 2025-02-19 11:02:41 (1.18 GB/s) - ‘localhost/cacti/include/js/jstree.js?b79f183bde51f17d52b08b366d8c367a’ saved [159843/159843] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.hotkeys.js?59f880239762899eccc399944264f5de 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 4629 (4.5K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.hotkeys.js?59f880239762899eccc399944264f5de’ 210s 210s 0K .... 100% 3.50G=0s 210s 210s 2025-02-19 11:02:41 (3.50 GB/s) - ‘localhost/cacti/include/js/jquery.hotkeys.js?59f880239762899eccc399944264f5de’ saved [4629/4629] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.tablednd.js?a33b14ebf8ce2abf7911e62cbc19e0c5 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 28606 (28K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.tablednd.js?a33b14ebf8ce2abf7911e62cbc19e0c5’ 210s 210s 0K .......... .......... ....... 100% 2.37G=0s 210s 210s 2025-02-19 11:02:41 (2.37 GB/s) - ‘localhost/cacti/include/js/jquery.tablednd.js?a33b14ebf8ce2abf7911e62cbc19e0c5’ saved [28606/28606] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.zoom.js?a4dcf91fed1e4be77b91d1569f4802dc 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 52015 (51K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.zoom.js?a4dcf91fed1e4be77b91d1569f4802dc’ 210s 210s 0K .......... .......... .......... .......... .......... 98% 12.4G 0s 210s 50K 100% 1.48T=0s 210s 210s 2025-02-19 11:02:41 (12.5 GB/s) - ‘localhost/cacti/include/js/jquery.zoom.js?a4dcf91fed1e4be77b91d1569f4802dc’ saved [52015/52015] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.multiselect.js?0fe69963a69cd6e5c87eb380112912bb 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 72940 (71K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.multiselect.js?0fe69963a69cd6e5c87eb380112912bb’ 210s 210s 0K .......... .......... .......... .......... .......... 70% 8.67G 0s 210s 50K .......... .......... . 100% 376M=0s 210s 210s 2025-02-19 11:02:41 (1.12 GB/s) - ‘localhost/cacti/include/js/jquery.multiselect.js?0fe69963a69cd6e5c87eb380112912bb’ saved [72940/72940] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.multiselect.filter.js?ccf700b33985626742e26c6707028bed 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 10341 (10K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.multiselect.filter.js?ccf700b33985626742e26c6707028bed’ 210s 210s 0K .......... 100% 5.73G=0s 210s 210s 2025-02-19 11:02:41 (5.73 GB/s) - ‘localhost/cacti/include/js/jquery.multiselect.filter.js?ccf700b33985626742e26c6707028bed’ saved [10341/10341] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.timepicker.js?dccc6af24a8f8b259937ba42202b6b48 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 78550 (77K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.timepicker.js?dccc6af24a8f8b259937ba42202b6b48’ 210s 210s 0K .......... .......... .......... .......... .......... 65% 9.34G 0s 210s 50K .......... .......... ...... 100% 433M=0s 210s 210s 2025-02-19 11:02:41 (1.12 GB/s) - ‘localhost/cacti/include/js/jquery.timepicker.js?dccc6af24a8f8b259937ba42202b6b48’ saved [78550/78550] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.colorpicker.js?e496545e3e2be2b118dbd28c8b4a9a8b 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 113049 (110K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.colorpicker.js?e496545e3e2be2b118dbd28c8b4a9a8b’ 210s 210s 0K .......... .......... .......... .......... .......... 45% 8.66G 0s 210s 50K .......... .......... .......... .......... .......... 90% 415M 0s 210s 100K .......... 100% 19.4T=0s 210s 210s 2025-02-19 11:02:41 (876 MB/s) - ‘localhost/cacti/include/js/jquery.colorpicker.js?e496545e3e2be2b118dbd28c8b4a9a8b’ saved [113049/113049] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.tablesorter.js?eae5523047a09fdd8fe64228d286fbdb 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 44098 (43K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.tablesorter.js?eae5523047a09fdd8fe64228d286fbdb’ 210s 210s 0K .......... .......... .......... .......... ... 100% 12.9G=0s 210s 210s 2025-02-19 11:02:41 (12.9 GB/s) - ‘localhost/cacti/include/js/jquery.tablesorter.js?eae5523047a09fdd8fe64228d286fbdb’ saved [44098/44098] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.tablesorter.widgets.js?c36a8310f55aee5a32fd8cf001805e69 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 52971 (52K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.tablesorter.widgets.js?c36a8310f55aee5a32fd8cf001805e69’ 210s 210s 0K .......... .......... .......... .......... .......... 96% 12.8G 0s 210s 50K . 100% 3.22T=0s 210s 210s 2025-02-19 11:02:41 (13.3 GB/s) - ‘localhost/cacti/include/js/jquery.tablesorter.widgets.js?c36a8310f55aee5a32fd8cf001805e69’ saved [52971/52971] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.tablesorter.pager.js?ebc01ccd8a1920959a8efb52eb0866f6 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 20452 (20K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.tablesorter.pager.js?ebc01ccd8a1920959a8efb52eb0866f6’ 210s 210s 0K .......... ......... 100% 9.55G=0s 210s 210s 2025-02-19 11:02:41 (9.55 GB/s) - ‘localhost/cacti/include/js/jquery.tablesorter.pager.js?ebc01ccd8a1920959a8efb52eb0866f6’ saved [20452/20452] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/jquery.sparkline.js?c7638b825bc7deb1cf58c990825d35b2 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 123446 (121K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/jquery.sparkline.js?c7638b825bc7deb1cf58c990825d35b2’ 210s 210s 0K .......... .......... .......... .......... .......... 41% 9.12G 0s 210s 50K .......... .......... .......... .......... .......... 82% 820M 0s 210s 100K .......... .......... 100% 38.3T=0s 210s 210s 2025-02-19 11:02:41 (1.77 GB/s) - ‘localhost/cacti/include/js/jquery.sparkline.js?c7638b825bc7deb1cf58c990825d35b2’ saved [123446/123446] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/Chart.js?5b82221e9ee4ab80eb342db32d384175 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 553492 (541K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/Chart.js?5b82221e9ee4ab80eb342db32d384175’ 210s 210s 0K .......... .......... .......... .......... .......... 9% 8.50G 0s 210s 50K .......... .......... .......... .......... .......... 18% 265M 0s 210s 100K .......... .......... .......... .......... .......... 27% 815M 0s 210s 150K .......... .......... .......... .......... .......... 37% 853M 0s 210s 200K .......... .......... .......... .......... .......... 46% 93.1T 0s 210s 250K .......... .......... .......... .......... .......... 55% 808M 0s 210s 300K .......... .......... .......... .......... .......... 64% 553M 0s 210s 350K .......... .......... .......... .......... .......... 74% 844M 0s 210s 400K .......... .......... .......... .......... .......... 83% 885M 0s 210s 450K .......... .......... .......... .......... .......... 92% 93.1T 0s 210s 500K .......... .......... .......... .......... 100% 660M=0.001s 210s 210s 2025-02-19 11:02:41 (840 MB/s) - ‘localhost/cacti/include/js/Chart.js?5b82221e9ee4ab80eb342db32d384175’ saved [553492/553492] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/dygraph-combined.js?b5b448f71f8c3eb4a39506299bd81b0c 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 125419 (122K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/dygraph-combined.js?b5b448f71f8c3eb4a39506299bd81b0c’ 210s 210s 0K .......... .......... .......... .......... .......... 40% 9.36G 0s 210s 50K .......... .......... .......... .......... .......... 81% 162M 0s 210s 100K .......... .......... .. 100% 41.9T=0s 210s 210s 2025-02-19 11:02:41 (391 MB/s) - ‘localhost/cacti/include/js/dygraph-combined.js?b5b448f71f8c3eb4a39506299bd81b0c’ saved [125419/125419] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/d3.js?e68910a6cdffd4e330ae4ba99a29cb98 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 260752 (255K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/d3.js?e68910a6cdffd4e330ae4ba99a29cb98’ 210s 210s 0K .......... .......... .......... .......... .......... 19% 9.25G 0s 210s 50K .......... .......... .......... .......... .......... 39% 169M 0s 210s 100K .......... .......... .......... .......... .......... 58% 815M 0s 210s 150K .......... .......... .......... .......... .......... 78% 838M 0s 210s 200K .......... .......... .......... .......... .......... 98% 93.1T 0s 210s 250K .... 100% 8.64T=0s 210s 210s 2025-02-19 11:02:41 (604 MB/s) - ‘localhost/cacti/include/js/d3.js?e68910a6cdffd4e330ae4ba99a29cb98’ saved [260752/260752] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/billboard.js?9e6056e4dff4d132adc417d1b60c4af5 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 758985 (741K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/billboard.js?9e6056e4dff4d132adc417d1b60c4af5’ 210s 210s 0K .......... .......... .......... .......... .......... 6% 8.99G 0s 210s 50K .......... .......... .......... .......... .......... 13% 267M 0s 210s 100K .......... .......... .......... .......... .......... 20% 624M 0s 210s 150K .......... .......... .......... .......... .......... 26% 859M 0s 210s 200K .......... .......... .......... .......... .......... 33% 93.1T 0s 210s 250K .......... .......... .......... .......... .......... 40% 853M 0s 210s 300K .......... .......... .......... .......... .......... 47% 835M 0s 210s 350K .......... .......... .......... .......... .......... 53% 827M 0s 210s 400K .......... .......... .......... .......... .......... 60% 887M 0s 210s 450K .......... .......... .......... .......... .......... 67% 93.1T 0s 210s 500K .......... .......... .......... .......... .......... 74% 820M 0s 210s 550K .......... .......... .......... .......... .......... 80% 850M 0s 210s 600K .......... .......... .......... .......... .......... 87% 804M 0s 210s 650K .......... .......... .......... .......... .......... 94% 93.1T 0s 210s 700K .......... .......... .......... .......... . 100% 737M=0.001s 210s 210s 2025-02-19 11:02:41 (922 MB/s) - ‘localhost/cacti/include/js/billboard.js?9e6056e4dff4d132adc417d1b60c4af5’ saved [758985/758985] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/layout.js?666a6d4acff74d80292c7cce8bb1f138 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 132139 (129K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/layout.js?666a6d4acff74d80292c7cce8bb1f138’ 210s 210s 0K .......... .......... .......... .......... .......... 38% 9.30G 0s 210s 50K .......... .......... .......... .......... .......... 77% 88.3M 0s 210s 100K .......... .......... ......... 100% 482M=0.001s 210s 210s 2025-02-19 11:02:41 (204 MB/s) - ‘localhost/cacti/include/layout.js?666a6d4acff74d80292c7cce8bb1f138’ saved [132139/132139] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/pace.js?0232dc2b5854db23a93fd46af0f3bff7 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 25868 (25K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/pace.js?0232dc2b5854db23a93fd46af0f3bff7’ 210s 210s 0K .......... .......... ..... 100% 11.1G=0s 210s 210s 2025-02-19 11:02:41 (11.1 GB/s) - ‘localhost/cacti/include/js/pace.js?0232dc2b5854db23a93fd46af0f3bff7’ saved [25868/25868] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/js/purify.js?3a21ef7f17378965e43944197da83ae9 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 21543 (21K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/js/purify.js?3a21ef7f17378965e43944197da83ae9’ 210s 210s 0K .......... .......... . 100% 9.54G=0s 210s 210s 2025-02-19 11:02:41 (9.54 GB/s) - ‘localhost/cacti/include/js/purify.js?3a21ef7f17378965e43944197da83ae9’ saved [21543/21543] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/realtime.js?487d4e7f58ab491e660fe5209f67eb81 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 9811 (9.6K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/realtime.js?487d4e7f58ab491e660fe5209f67eb81’ 210s 210s 0K ......... 100% 6.29G=0s 210s 210s 2025-02-19 11:02:41 (6.29 GB/s) - ‘localhost/cacti/include/realtime.js?487d4e7f58ab491e660fe5209f67eb81’ saved [9811/9811] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/main.js?0eb4f9ce093f3c37be9e898793037ccc 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 8753 (8.5K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/themes/modern/main.js?0eb4f9ce093f3c37be9e898793037ccc’ 210s 210s 0K ........ 100% 5.60G=0s 210s 210s 2025-02-19 11:02:41 (5.60 GB/s) - ‘localhost/cacti/include/themes/modern/main.js?0eb4f9ce093f3c37be9e898793037ccc’ saved [8753/8753] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/vendor/csrf/csrf-magic.js 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 6437 (6.3K) [text/javascript] 210s Saving to: ‘localhost/cacti/include/vendor/csrf/csrf-magic.js’ 210s 210s 0K ...... 100% 4.68G=0s 210s 210s 2025-02-19 11:02:41 (4.68 GB/s) - ‘localhost/cacti/include/vendor/csrf/csrf-magic.js’ saved [6437/6437] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graph_view.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graph_view.php’ 210s 210s 0K .......... ......... 4.03G=0s 210s 210s 2025-02-19 11:02:41 (4.03 GB/s) - ‘localhost/cacti/graph_view.php’ saved [20095] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/reports_admin.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/reports_admin.php’ 210s 210s 0K .......... .......... ........ 3.83G=0s 210s 210s 2025-02-19 11:02:41 (3.83 GB/s) - ‘localhost/cacti/reports_admin.php’ saved [29155] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/clog.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/clog.php’ 210s 210s 0K .......... .......... 4.70G=0s 210s 210s 2025-02-19 11:02:41 (4.70 GB/s) - ‘localhost/cacti/clog.php’ saved [20750] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graph_view.php?action=tree 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graph_view.php?action=tree’ 210s 210s 0K .......... ......... 5.25G=0s 210s 210s 2025-02-19 11:02:41 (5.25 GB/s) - ‘localhost/cacti/graph_view.php?action=tree’ saved [20095] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/images/tab_tree.gif 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 866 [image/gif] 210s Saving to: ‘localhost/cacti/include/themes/modern/images/tab_tree.gif’ 210s 210s 0K 100% 633M=0s 210s 210s 2025-02-19 11:02:41 (633 MB/s) - ‘localhost/cacti/include/themes/modern/images/tab_tree.gif’ saved [866/866] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graph_view.php?action=list 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graph_view.php?action=list’ 210s 210s 0K .......... .......... ......... 5.25G=0s 210s 210s 2025-02-19 11:02:41 (5.25 GB/s) - ‘localhost/cacti/graph_view.php?action=list’ saved [29971] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/images/tab_list.gif 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 850 [image/gif] 210s Saving to: ‘localhost/cacti/include/themes/modern/images/tab_list.gif’ 210s 210s 0K 100% 679M=0s 210s 210s 2025-02-19 11:02:41 (679 MB/s) - ‘localhost/cacti/include/themes/modern/images/tab_list.gif’ saved [850/850] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graph_view.php?action=preview 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graph_view.php?action=preview’ 210s 210s 0K .......... .......... .......... .. 5.19G=0s 210s 210s 2025-02-19 11:02:41 (5.19 GB/s) - ‘localhost/cacti/graph_view.php?action=preview’ saved [33407] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/include/themes/modern/images/tab_preview.gif 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: 865 [image/gif] 210s Saving to: ‘localhost/cacti/include/themes/modern/images/tab_preview.gif’ 210s 210s 0K 100% 686M=0s 210s 210s 2025-02-19 11:02:41 (686 MB/s) - ‘localhost/cacti/include/themes/modern/images/tab_preview.gif’ saved [865/865] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/auth_profile.php?action=edit 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/auth_profile.php?action=edit’ 210s 210s 0K .......... .......... .......... .......... .......... 4.46G 210s 50K ......... 18.4T=0s 210s 210s 2025-02-19 11:02:41 (5.35 GB/s) - ‘localhost/cacti/auth_profile.php?action=edit’ saved [61340] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/auth_changepassword.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/auth_changepassword.php’ 210s 210s 0K .......... ..... 3.37G=0s 210s 210s 2025-02-19 11:02:41 (3.37 GB/s) - ‘localhost/cacti/auth_changepassword.php’ saved [16038] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graphs_new.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graphs_new.php’ 210s 210s 0K .......... .......... .......... .......... 3.59G=0s 210s 210s 2025-02-19 11:02:41 (3.59 GB/s) - ‘localhost/cacti/graphs_new.php’ saved [40965] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/host.php?action=edit&create=true 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/host.php?action=edit&create=true’ 210s 210s 0K .......... .......... .......... .......... .......... 3.72G 210s 50K ........ 15.6T=0s 210s 210s 2025-02-19 11:02:41 (4.35 GB/s) - ‘localhost/cacti/host.php?action=edit&create=true’ saved [59797] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/host.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/host.php’ 210s 210s 0K .......... .......... .......... ...... 7.15G=0s 210s 210s 2025-02-19 11:02:41 (7.15 GB/s) - ‘localhost/cacti/host.php’ saved [37040] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/sites.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/sites.php’ 210s 210s 0K .......... .......... .......... .. 6.35G=0s 210s 210s 2025-02-19 11:02:41 (6.35 GB/s) - ‘localhost/cacti/sites.php’ saved [33375] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/tree.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/tree.php’ 210s 210s 0K .......... .......... .......... ..... 5.76G=0s 210s 210s 2025-02-19 11:02:41 (5.76 GB/s) - ‘localhost/cacti/tree.php’ saved [36203] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graphs.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graphs.php’ 210s 210s 0K .......... .......... .......... ... 2.41G=0s 210s 210s 2025-02-19 11:02:41 (2.41 GB/s) - ‘localhost/cacti/graphs.php’ saved [34410] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/data_sources.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/data_sources.php’ 210s 210s 0K .......... .......... .......... ... 4.82G=0s 210s 210s 2025-02-19 11:02:41 (4.82 GB/s) - ‘localhost/cacti/data_sources.php’ saved [34734] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/aggregate_graphs.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/aggregate_graphs.php’ 210s 210s 0K .......... .......... .......... . 4.29G=0s 210s 210s 2025-02-19 11:02:41 (4.29 GB/s) - ‘localhost/cacti/aggregate_graphs.php’ saved [32294] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/pollers.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/pollers.php’ 210s 210s 0K .......... .......... .......... .... 5.03G=0s 210s 210s 2025-02-19 11:02:41 (5.03 GB/s) - ‘localhost/cacti/pollers.php’ saved [35832] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/data_queries.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/data_queries.php’ 210s 210s 0K .......... .......... .......... .......... .......... 4.68G 210s 50K 892G=0s 210s 210s 2025-02-19 11:02:41 (4.72 GB/s) - ‘localhost/cacti/data_queries.php’ saved [51679] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/data_input.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/data_input.php’ 210s 210s 0K .......... .......... .......... .......... .......... 4.56G 210s 50K 479G=0s 210s 210s 2025-02-19 11:02:41 (4.58 GB/s) - ‘localhost/cacti/data_input.php’ saved [51457] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/host_templates.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/host_templates.php’ 210s 210s 0K .......... .......... .......... .......... .......... 4.22G 210s 50K .......... ....... 30.0M=0.001s 210s 210s 2025-02-19 11:02:41 (113 MB/s) - ‘localhost/cacti/host_templates.php’ saved [69174] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/graph_templates.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/graph_templates.php’ 210s 210s 0K .......... .......... .......... .......... .......... 5.10G 210s 50K .. 4.54T=0s 210s 210s 2025-02-19 11:02:41 (5.34 GB/s) - ‘localhost/cacti/graph_templates.php’ saved [53696] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/data_templates.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/data_templates.php’ 210s 210s 0K .......... .......... .......... .......... .......... 4.69G 210s 50K ..... 9.87T=0s 210s 210s 2025-02-19 11:02:41 (5.19 GB/s) - ‘localhost/cacti/data_templates.php’ saved [56627] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/aggregate_templates.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/aggregate_templates.php’ 210s 210s 0K .......... .......... .......... . 2.26G=0s 210s 210s 2025-02-19 11:02:41 (2.26 GB/s) - ‘localhost/cacti/aggregate_templates.php’ saved [31899] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/color_templates.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/color_templates.php’ 210s 210s 0K .......... .......... .......... ... 3.72G=0s 210s 210s 2025-02-19 11:02:41 (3.72 GB/s) - ‘localhost/cacti/color_templates.php’ saved [34055] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/automation_networks.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/automation_networks.php’ 210s 210s 0K .......... .......... .......... ... 5.03G=0s 210s 210s 2025-02-19 11:02:41 (5.03 GB/s) - ‘localhost/cacti/automation_networks.php’ saved [34027] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/automation_devices.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/automation_devices.php’ 210s 210s 0K .......... .......... .......... .... 5.20G=0s 210s 210s 2025-02-19 11:02:41 (5.20 GB/s) - ‘localhost/cacti/automation_devices.php’ saved [34915] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/automation_templates.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/automation_templates.php’ 210s 210s 0K .......... .......... .......... 5.26G=0s 210s 210s 2025-02-19 11:02:41 (5.26 GB/s) - ‘localhost/cacti/automation_templates.php’ saved [31663] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/automation_graph_rules.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/automation_graph_rules.php’ 210s 210s 0K .......... .......... .......... ... 4.10G=0s 210s 210s 2025-02-19 11:02:41 (4.10 GB/s) - ‘localhost/cacti/automation_graph_rules.php’ saved [34701] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/automation_tree_rules.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/automation_tree_rules.php’ 210s 210s 0K .......... .......... .......... ... 4.21G=0s 210s 210s 2025-02-19 11:02:41 (4.21 GB/s) - ‘localhost/cacti/automation_tree_rules.php’ saved [34225] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/data_source_profiles.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/data_source_profiles.php’ 210s 210s 0K .......... .......... .......... .... 5.18G=0s 210s 210s 2025-02-19 11:02:41 (5.18 GB/s) - ‘localhost/cacti/data_source_profiles.php’ saved [35057] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/automation_snmp.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/automation_snmp.php’ 210s 210s 0K .......... .......... .......... .. 5.00G=0s 210s 210s 2025-02-19 11:02:41 (5.00 GB/s) - ‘localhost/cacti/automation_snmp.php’ saved [33137] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/cdef.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/cdef.php’ 210s 210s 0K .......... .......... .......... .......... ....... 3.39G=0s 210s 210s 2025-02-19 11:02:41 (3.39 GB/s) - ‘localhost/cacti/cdef.php’ saved [48819] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/vdef.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/vdef.php’ 210s 210s 0K .......... .......... .......... .... 5.57G=0s 210s 210s 2025-02-19 11:02:41 (5.57 GB/s) - ‘localhost/cacti/vdef.php’ saved [35137] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/color.php 210s Reusing existing connection to [localhost]:80. 210s HTTP request sent, awaiting response... 200 OK 210s Length: unspecified [text/html] 210s Saving to: ‘localhost/cacti/color.php’ 210s 210s 0K .......... .......... .......... .......... .......... 3.97G 210s 50K .... 7.45T=0s 210s 210s 2025-02-19 11:02:41 (4.29 GB/s) - ‘localhost/cacti/color.php’ saved [55296] 210s 210s --2025-02-19 11:02:41-- http://localhost/cacti/gprint_presets.php 210s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/gprint_presets.php’ 211s 211s 0K .......... .......... .......... ....... 4.86G=0s 211s 211s 2025-02-19 11:02:41 (4.86 GB/s) - ‘localhost/cacti/gprint_presets.php’ saved [38626] 211s 211s --2025-02-19 11:02:41-- http://localhost/cacti/templates_import.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/templates_import.php’ 211s 211s 0K .......... .......... ......... 4.84G=0s 211s 211s 2025-02-19 11:02:41 (4.84 GB/s) - ‘localhost/cacti/templates_import.php’ saved [30260] 211s 211s --2025-02-19 11:02:41-- http://localhost/cacti/package_import.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/package_import.php’ 211s 211s 0K .......... .......... .......... .. 6.00G=0s 211s 211s 2025-02-19 11:02:42 (6.00 GB/s) - ‘localhost/cacti/package_import.php’ saved [33201] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/templates_export.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/templates_export.php’ 211s 211s 0K .......... .......... ........ 3.94G=0s 211s 211s 2025-02-19 11:02:42 (3.94 GB/s) - ‘localhost/cacti/templates_export.php’ saved [28676] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/settings.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/settings.php’ 211s 211s 0K .......... .......... .......... .......... .......... 2.52G 211s 50K .......... .......... .......... .......... ...... 886M=0s 211s 211s 2025-02-19 11:02:42 (1.31 GB/s) - ‘localhost/cacti/settings.php’ saved [98424] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/user_admin.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/user_admin.php’ 211s 211s 0K .......... .......... .......... .... 4.44G=0s 211s 211s 2025-02-19 11:02:42 (4.44 GB/s) - ‘localhost/cacti/user_admin.php’ saved [35298] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/user_group_admin.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/user_group_admin.php’ 211s 211s 0K .......... .......... .......... . 4.29G=0s 211s 211s 2025-02-19 11:02:42 (4.29 GB/s) - ‘localhost/cacti/user_group_admin.php’ saved [32555] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/user_domains.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/user_domains.php’ 211s 211s 0K .......... .......... .......... . 4.26G=0s 211s 211s 2025-02-19 11:02:42 (4.26 GB/s) - ‘localhost/cacti/user_domains.php’ saved [32498] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/plugins.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/plugins.php’ 211s 211s 0K .......... .......... .......... . 3.99G=0s 211s 211s 2025-02-19 11:02:42 (3.99 GB/s) - ‘localhost/cacti/plugins.php’ saved [32079] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/utilities.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/utilities.php’ 211s 211s 0K .......... .......... ........ 4.46G=0s 211s 211s 2025-02-19 11:02:42 (4.46 GB/s) - ‘localhost/cacti/utilities.php’ saved [29247] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/links.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/links.php’ 211s 211s 0K .......... .......... .......... . 5.23G=0s 211s 211s 2025-02-19 11:02:42 (5.23 GB/s) - ‘localhost/cacti/links.php’ saved [32025] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_debug.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_debug.php’ 211s 211s 0K .......... .......... .......... ..... 4.68G=0s 211s 211s 2025-02-19 11:02:42 (4.68 GB/s) - ‘localhost/cacti/data_debug.php’ saved [35996] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/about.php 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/about.php’ 211s 211s 0K .......... .......... ..... 4.28G=0s 211s 211s 2025-02-19 11:02:42 (4.28 GB/s) - ‘localhost/cacti/about.php’ saved [26028] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 314 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png’ 211s 211s 0K 100% 249M=0s 211s 211s 2025-02-19 11:02:42 (249 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png’ saved [314/314] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 312 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png’ 211s 211s 0K 100% 324M=0s 211s 211s 2025-02-19 11:02:42 (324 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png’ saved [312/312] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 318 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png’ 211s 211s 0K 100% 213M=0s 211s 211s 2025-02-19 11:02:42 (213 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png’ saved [318/318] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 265 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png’ 211s 211s 0K 100% 233M=0s 211s 211s 2025-02-19 11:02:42 (233 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png’ saved [265/265] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 380 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png’ 211s 211s 0K 100% 349M=0s 211s 211s 2025-02-19 11:02:42 (349 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png’ saved [380/380] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 382 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png’ 211s 211s 0K 100% 340M=0s 211s 211s 2025-02-19 11:02:42 (340 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png’ saved [382/382] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-icons_222222_256x240.png 211s Connecting to localhost (localhost)|::1|:80... connected. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3794 (3.7K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_222222_256x240.png’ 211s 211s 0K ... 100% 2.20G=0s 211s 211s 2025-02-19 11:02:42 (2.20 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_222222_256x240.png’ saved [3794/3794] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-icons_454545_256x240.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3794 (3.7K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_454545_256x240.png’ 211s 211s 0K ... 100% 2.77G=0s 211s 211s 2025-02-19 11:02:42 (2.77 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_454545_256x240.png’ saved [3794/3794] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-icons_2e83ff_256x240.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3846 (3.8K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_2e83ff_256x240.png’ 211s 211s 0K ... 100% 2.71G=0s 211s 211s 2025-02-19 11:02:42 (2.71 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_2e83ff_256x240.png’ saved [3846/3846] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-icons_cd0a0a_256x240.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3846 (3.8K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_cd0a0a_256x240.png’ 211s 211s 0K ... 100% 2.51G=0s 211s 211s 2025-02-19 11:02:42 (2.51 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_cd0a0a_256x240.png’ saved [3846/3846] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/ui-icons_888888_256x240.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3794 (3.7K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_888888_256x240.png’ 211s 211s 0K ... 100% 2.71G=0s 211s 211s 2025-02-19 11:02:42 (2.71 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_888888_256x240.png’ saved [3794/3794] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/default/32px.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5478 (5.3K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/default/32px.png’ 211s 211s 0K ..... 100% 3.29G=0s 211s 211s 2025-02-19 11:02:42 (3.29 GB/s) - ‘localhost/cacti/include/themes/modern/default/32px.png’ saved [5478/5478] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/default/throbber.gif 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1849 (1.8K) [image/gif] 211s Saving to: ‘localhost/cacti/include/themes/modern/default/throbber.gif’ 211s 211s 0K . 100% 1.29G=0s 211s 211s 2025-02-19 11:02:42 (1.29 GB/s) - ‘localhost/cacti/include/themes/modern/default/throbber.gif’ saved [1849/1849] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/default/40px.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1896 (1.9K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/default/40px.png’ 211s 211s 0K . 100% 1.59G=0s 211s 211s 2025-02-19 11:02:42 (1.59 GB/s) - ‘localhost/cacti/include/themes/modern/default/40px.png’ saved [1896/1896] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/map.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 75486 (74K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/map.png’ 211s 211s 0K .......... .......... .......... .......... .......... 67% 4.11G 0s 211s 50K .......... .......... ... 100% 564M=0s 211s 211s 2025-02-19 11:02:42 (1.33 GB/s) - ‘localhost/cacti/include/themes/modern/images/map.png’ saved [75486/75486] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/128/map.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 37070 (36K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/128/map.png’ 211s 211s 0K .......... .......... .......... ...... 100% 9.93G=0s 211s 211s 2025-02-19 11:02:42 (9.93 GB/s) - ‘localhost/cacti/include/themes/modern/images/128/map.png’ saved [37070/37070] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/map-opacity.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 94 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/map-opacity.png’ 211s 211s 0K 100% 49.8M=0s 211s 211s 2025-02-19 11:02:42 (49.8 MB/s) - ‘localhost/cacti/include/themes/modern/images/map-opacity.png’ saved [94/94] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/map-pointer.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 257 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/map-pointer.png’ 211s 211s 0K 100% 219M=0s 211s 211s 2025-02-19 11:02:42 (219 MB/s) - ‘localhost/cacti/include/themes/modern/images/map-pointer.png’ saved [257/257] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/bar.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 322 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/bar.png’ 211s 211s 0K 100% 270M=0s 211s 211s 2025-02-19 11:02:42 (270 MB/s) - ‘localhost/cacti/include/themes/modern/images/bar.png’ saved [322/322] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/128/bar.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 849 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/128/bar.png’ 211s 211s 0K 100% 546M=0s 211s 211s 2025-02-19 11:02:42 (546 MB/s) - ‘localhost/cacti/include/themes/modern/images/128/bar.png’ saved [849/849] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/bar-opacity.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 93 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/bar-opacity.png’ 211s 211s 0K 100% 60.4M=0s 211s 211s 2025-02-19 11:02:42 (60.4 MB/s) - ‘localhost/cacti/include/themes/modern/images/bar-opacity.png’ saved [93/93] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/bar-alpha.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1792 (1.8K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/bar-alpha.png’ 211s 211s 0K . 100% 1.40G=0s 211s 211s 2025-02-19 11:02:42 (1.40 GB/s) - ‘localhost/cacti/include/themes/modern/images/bar-alpha.png’ saved [1792/1792] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/128/bar-alpha.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1138 (1.1K) [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/128/bar-alpha.png’ 211s 211s 0K . 100% 908M=0s 211s 211s 2025-02-19 11:02:42 (908 MB/s) - ‘localhost/cacti/include/themes/modern/images/128/bar-alpha.png’ saved [1138/1138] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/bar-pointer.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 137 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/bar-pointer.png’ 211s 211s 0K 100% 123M=0s 211s 211s 2025-02-19 11:02:42 (123 MB/s) - ‘localhost/cacti/include/themes/modern/images/bar-pointer.png’ saved [137/137] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/preview-opacity.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 94 [image/png] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/preview-opacity.png’ 211s 211s 0K 100% 63.0M=0s 211s 211s 2025-02-19 11:02:42 (63.0 MB/s) - ‘localhost/cacti/include/themes/modern/images/preview-opacity.png’ saved [94/94] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?v=1.2.0 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 220460 (215K) [application/vnd.ms-fontobject] 211s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?v=1.2.0’ 211s 211s 0K .......... .......... .......... .......... .......... 23% 8.12G 0s 211s 50K .......... .......... .......... .......... .......... 46% 998M 0s 211s 100K .......... .......... .......... .......... .......... 69% 1.01G 0s 211s 150K .......... .......... .......... .......... .......... 92% 1.11G 0s 211s 200K .......... ..... 100% 28.5T=0s 211s 211s 2025-02-19 11:02:42 (1.42 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?v=1.2.0’ saved [220460/220460] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.eot? 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 220460 (215K) [application/vnd.ms-fontobject] 211s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?’ 211s 211s 0K .......... .......... .......... .......... .......... 23% 9.00G 0s 211s 50K .......... .......... .......... .......... .......... 46% 262M 0s 211s 100K .......... .......... .......... .......... .......... 69% 1.20G 0s 211s 150K .......... .......... .......... .......... .......... 92% 1.18G 0s 211s 200K .......... ..... 100% 28.5T=0s 211s 211s 2025-02-19 11:02:42 (774 MB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?’ saved [220460/220460] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.woff2?v=1.2.0 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 110116 (108K) [font/woff2] 211s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff2?v=1.2.0’ 211s 211s 0K .......... .......... .......... .......... .......... 46% 7.62G 0s 211s 50K .......... .......... .......... .......... .......... 92% 547M 0s 211s 100K ....... 100% 14.0T=0s 211s 211s 2025-02-19 11:02:42 (1.07 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff2?v=1.2.0’ saved [110116/110116] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.woff?v=1.2.0 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 137068 (134K) [font/woff] 211s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff?v=1.2.0’ 211s 211s 0K .......... .......... .......... .......... .......... 37% 4.64G 0s 211s 50K .......... .......... .......... .......... .......... 74% 853M 0s 211s 100K .......... .......... .......... ... 100% 859M=0s 211s 211s 2025-02-19 11:02:42 (1.20 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff?v=1.2.0’ saved [137068/137068] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.ttf?v=1.2.0 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 220272 (215K) [font/ttf] 211s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.ttf?v=1.2.0’ 211s 211s 0K .......... .......... .......... .......... .......... 23% 5.83G 0s 211s 50K .......... .......... .......... .......... .......... 46% 978M 0s 211s 100K .......... .......... .......... .......... .......... 69% 1.12G 0s 211s 150K .......... .......... .......... .......... .......... 92% 1.21G 0s 211s 200K .......... ..... 100% 28.1T=0s 211s 211s 2025-02-19 11:02:42 (1.46 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.ttf?v=1.2.0’ saved [220272/220272] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.svg?v=1.2.0 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 560561 (547K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.svg?v=1.2.0’ 211s 211s 0K .......... .......... .......... .......... .......... 9% 8.78G 0s 211s 50K .......... .......... .......... .......... .......... 18% 1.09G 0s 211s 100K .......... .......... .......... .......... .......... 27% 1.03G 0s 211s 150K .......... .......... .......... .......... .......... 36% 1.21G 0s 211s 200K .......... .......... .......... .......... .......... 45% 93.1T 0s 211s 250K .......... .......... .......... .......... .......... 54% 1.15G 0s 211s 300K .......... .......... .......... .......... .......... 63% 1.11G 0s 211s 350K .......... .......... .......... .......... .......... 73% 1.21G 0s 211s 400K .......... .......... .......... .......... .......... 82% 1.16G 0s 211s 450K .......... .......... .......... .......... .......... 91% 93.1T 0s 211s 500K .......... .......... .......... .......... ....... 100% 1.11G=0s 211s 211s 2025-02-19 11:02:42 (1.53 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.svg?v=1.2.0’ saved [560561/560561] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/xx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 283 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xx.svg’ 211s 211s 0K 100% 211M=0s 211s 211s 2025-02-19 11:02:42 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xx.svg’ saved [283/283] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/xx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 241 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xx.svg’ 211s 211s 0K 100% 218M=0s 211s 211s 2025-02-19 11:02:42 (218 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xx.svg’ saved [241/241] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ad.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 33869 (33K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ad.svg’ 211s 211s 0K .......... .......... .......... ... 100% 9.44G=0s 211s 211s 2025-02-19 11:02:42 (9.44 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ad.svg’ saved [33869/33869] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ad.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 32654 (32K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ad.svg’ 211s 211s 0K .......... .......... .......... . 100% 9.54G=0s 211s 211s 2025-02-19 11:02:42 (9.54 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ad.svg’ saved [32654/32654] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ae.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 251 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ae.svg’ 211s 211s 0K 100% 194M=0s 211s 211s 2025-02-19 11:02:42 (194 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ae.svg’ saved [251/251] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ae.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 259 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ae.svg’ 211s 211s 0K 100% 237M=0s 211s 211s 2025-02-19 11:02:42 (237 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ae.svg’ saved [259/259] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/af.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 21243 (21K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/af.svg’ 211s 211s 0K .......... .......... 100% 7.77G=0s 211s 211s 2025-02-19 11:02:42 (7.77 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/af.svg’ saved [21243/21243] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/af.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 21109 (21K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/af.svg’ 211s 211s 0K .......... .......... 100% 8.10G=0s 211s 211s 2025-02-19 11:02:42 (8.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/af.svg’ saved [21109/21109] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ag.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 756 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ag.svg’ 211s 211s 0K 100% 656M=0s 211s 211s 2025-02-19 11:02:42 (656 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ag.svg’ saved [756/756] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ag.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 774 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ag.svg’ 211s 211s 0K 100% 710M=0s 211s 211s 2025-02-19 11:02:42 (710 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ag.svg’ saved [774/774] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ai.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2355 (2.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ai.svg’ 211s 211s 0K .. 100% 1.98G=0s 211s 211s 2025-02-19 11:02:42 (1.98 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ai.svg’ saved [2355/2355] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ai.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2364 (2.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ai.svg’ 211s 211s 0K .. 100% 1.96G=0s 211s 211s 2025-02-19 11:02:42 (1.96 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ai.svg’ saved [2364/2364] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/al.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3217 (3.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/al.svg’ 211s 211s 0K ... 100% 2.39G=0s 211s 211s 2025-02-19 11:02:42 (2.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/al.svg’ saved [3217/3217] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/al.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3219 (3.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/al.svg’ 211s 211s 0K ... 100% 2.51G=0s 211s 211s 2025-02-19 11:02:42 (2.51 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/al.svg’ saved [3219/3219] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/am.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 228 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/am.svg’ 211s 211s 0K 100% 225M=0s 211s 211s 2025-02-19 11:02:42 (225 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/am.svg’ saved [228/228] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/am.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 236 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/am.svg’ 211s 211s 0K 100% 225M=0s 211s 211s 2025-02-19 11:02:42 (225 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/am.svg’ saved [236/236] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ao.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1596 (1.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ao.svg’ 211s 211s 0K . 100% 1.40G=0s 211s 211s 2025-02-19 11:02:42 (1.40 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ao.svg’ saved [1596/1596] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ao.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1596 (1.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ao.svg’ 211s 211s 0K . 100% 1.29G=0s 211s 211s 2025-02-19 11:02:42 (1.29 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ao.svg’ saved [1596/1596] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/aq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2823 (2.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aq.svg’ 211s 211s 0K .. 100% 2.26G=0s 211s 211s 2025-02-19 11:02:42 (2.26 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aq.svg’ saved [2823/2823] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/aq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2950 (2.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aq.svg’ 211s 211s 0K .. 100% 2.09G=0s 211s 211s 2025-02-19 11:02:42 (2.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aq.svg’ saved [2950/2950] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ar.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3570 (3.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ar.svg’ 211s 211s 0K ... 100% 2.54G=0s 211s 211s 2025-02-19 11:02:42 (2.54 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ar.svg’ saved [3570/3570] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ar.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3603 (3.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ar.svg’ 211s 211s 0K ... 100% 2.72G=0s 211s 211s 2025-02-19 11:02:42 (2.72 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ar.svg’ saved [3603/3603] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/as.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 32333 (32K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/as.svg’ 211s 211s 0K .......... .......... .......... . 100% 9.61G=0s 211s 211s 2025-02-19 11:02:42 (9.61 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/as.svg’ saved [32333/32333] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/as.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 32576 (32K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/as.svg’ 211s 211s 0K .......... .......... .......... . 100% 9.76G=0s 211s 211s 2025-02-19 11:02:42 (9.76 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/as.svg’ saved [32576/32576] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/at.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 237 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/at.svg’ 211s 211s 0K 100% 241M=0s 211s 211s 2025-02-19 11:02:42 (241 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/at.svg’ saved [237/237] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/at.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 239 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/at.svg’ 211s 211s 0K 100% 234M=0s 211s 211s 2025-02-19 11:02:42 (234 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/at.svg’ saved [239/239] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/au.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1341 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/au.svg’ 211s 211s 0K . 100% 1.23G=0s 211s 211s 2025-02-19 11:02:42 (1.23 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/au.svg’ saved [1341/1341] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/au.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1303 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/au.svg’ 211s 211s 0K . 100% 1.17G=0s 211s 211s 2025-02-19 11:02:42 (1.17 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/au.svg’ saved [1303/1303] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/aw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9945 (9.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aw.svg’ 211s 211s 0K ......... 100% 4.43G=0s 211s 211s 2025-02-19 11:02:42 (4.43 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aw.svg’ saved [9945/9945] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/aw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 12079 (12K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aw.svg’ 211s 211s 0K .......... . 100% 5.84G=0s 211s 211s 2025-02-19 11:02:42 (5.84 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aw.svg’ saved [12079/12079] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ax.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 556 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ax.svg’ 211s 211s 0K 100% 520M=0s 211s 211s 2025-02-19 11:02:42 (520 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ax.svg’ saved [556/556] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ax.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 544 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ax.svg’ 211s 211s 0K 100% 530M=0s 211s 211s 2025-02-19 11:02:42 (530 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ax.svg’ saved [544/544] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/az.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 509 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/az.svg’ 211s 211s 0K 100% 498M=0s 211s 211s 2025-02-19 11:02:42 (498 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/az.svg’ saved [509/509] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/az.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 495 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/az.svg’ 211s 211s 0K 100% 488M=0s 211s 211s 2025-02-19 11:02:42 (488 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/az.svg’ saved [495/495] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ba.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1306 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ba.svg’ 211s 211s 0K . 100% 1.19G=0s 211s 211s 2025-02-19 11:02:42 (1.19 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ba.svg’ saved [1306/1306] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ba.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1244 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ba.svg’ 211s 211s 0K . 100% 1.15G=0s 211s 211s 2025-02-19 11:02:42 (1.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ba.svg’ saved [1244/1244] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 613 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bb.svg’ 211s 211s 0K 100% 628M=0s 211s 211s 2025-02-19 11:02:42 (628 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bb.svg’ saved [613/613] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 616 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bb.svg’ 211s 211s 0K 100% 619M=0s 211s 211s 2025-02-19 11:02:42 (619 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bb.svg’ saved [616/616] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 187 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bd.svg’ 211s 211s 0K 100% 184M=0s 211s 211s 2025-02-19 11:02:42 (184 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bd.svg’ saved [187/187] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 189 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bd.svg’ 211s 211s 0K 100% 189M=0s 211s 211s 2025-02-19 11:02:42 (189 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bd.svg’ saved [189/189] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/be.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 287 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/be.svg’ 211s 211s 0K 100% 280M=0s 211s 211s 2025-02-19 11:02:42 (280 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/be.svg’ saved [287/287] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/be.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 287 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/be.svg’ 211s 211s 0K 100% 251M=0s 211s 211s 2025-02-19 11:02:42 (251 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/be.svg’ saved [287/287] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 353 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bf.svg’ 211s 211s 0K 100% 328M=0s 211s 211s 2025-02-19 11:02:42 (328 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bf.svg’ saved [353/353] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 379 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bf.svg’ 211s 211s 0K 100% 351M=0s 211s 211s 2025-02-19 11:02:42 (351 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bf.svg’ saved [379/379] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 283 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bg.svg’ 211s 211s 0K 100% 266M=0s 211s 211s 2025-02-19 11:02:42 (266 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bg.svg’ saved [283/283] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 291 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bg.svg’ 211s 211s 0K 100% 281M=0s 211s 211s 2025-02-19 11:02:42 (281 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bg.svg’ saved [291/291] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 252 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bh.svg’ 211s 211s 0K 100% 221M=0s 211s 211s 2025-02-19 11:02:42 (221 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bh.svg’ saved [252/252] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 276 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bh.svg’ 211s 211s 0K 100% 258M=0s 211s 211s 2025-02-19 11:02:42 (258 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bh.svg’ saved [276/276] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1079 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bi.svg’ 211s 211s 0K . 100% 984M=0s 211s 211s 2025-02-19 11:02:42 (984 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bi.svg’ saved [1079/1079] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1054 (1.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bi.svg’ 211s 211s 0K . 100% 947M=0s 211s 211s 2025-02-19 11:02:42 (947 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bi.svg’ saved [1054/1054] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 499 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bj.svg’ 211s 211s 0K 100% 462M=0s 211s 211s 2025-02-19 11:02:42 (462 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bj.svg’ saved [499/499] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 502 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bj.svg’ 211s 211s 0K 100% 492M=0s 211s 211s 2025-02-19 11:02:42 (492 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bj.svg’ saved [502/502] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bl.svg’ 211s 211s 0K 100% 208M=0s 211s 211s 2025-02-19 11:02:42 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bl.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bl.svg’ 211s 211s 0K 100% 255M=0s 211s 211s 2025-02-19 11:02:42 (255 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bl.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 22843 (22K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bm.svg’ 211s 211s 0K .......... .......... .. 100% 8.10G=0s 211s 211s 2025-02-19 11:02:42 (8.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bm.svg’ saved [22843/22843] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 22778 (22K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bm.svg’ 211s 211s 0K .......... .......... .. 100% 8.68G=0s 211s 211s 2025-02-19 11:02:42 (8.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bm.svg’ saved [22778/22778] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 14368 (14K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bn.svg’ 211s 211s 0K .......... .... 100% 6.91G=0s 211s 211s 2025-02-19 11:02:42 (6.91 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bn.svg’ saved [14368/14368] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 14507 (14K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bn.svg’ 211s 211s 0K .......... .... 100% 6.99G=0s 211s 211s 2025-02-19 11:02:42 (6.99 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bn.svg’ saved [14507/14507] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 113450 (111K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bo.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 45% 8.13G 0s 211s 50K .......... .......... .......... .......... .......... 90% 1.06G 0s 211s 100K .......... 100% 20.1T=0s 211s 211s 2025-02-19 11:02:42 (2.07 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bo.svg’ saved [113450/113450] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 115459 (113K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bo.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 44% 6.75G 0s 211s 50K .......... .......... .......... .......... .......... 88% 571M 0s 211s 100K .......... .. 100% 23.8T=0s 211s 211s 2025-02-19 11:02:42 (1.16 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bo.svg’ saved [115459/115459] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 221 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bq.svg’ 211s 211s 0K 100% 223M=0s 211s 211s 2025-02-19 11:02:42 (223 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bq.svg’ saved [221/221] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 225 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bq.svg’ 211s 211s 0K 100% 219M=0s 211s 211s 2025-02-19 11:02:42 (219 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bq.svg’ saved [225/225] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/br.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8197 (8.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/br.svg’ 211s 211s 0K ........ 100% 4.98G=0s 211s 211s 2025-02-19 11:02:42 (4.98 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/br.svg’ saved [8197/8197] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/br.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7786 (7.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/br.svg’ 211s 211s 0K ....... 100% 5.04G=0s 211s 211s 2025-02-19 11:02:42 (5.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/br.svg’ saved [7786/7786] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bs.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 549 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bs.svg’ 211s 211s 0K 100% 531M=0s 211s 211s 2025-02-19 11:02:42 (531 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bs.svg’ saved [549/549] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bs.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 571 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bs.svg’ 211s 211s 0K 100% 557M=0s 211s 211s 2025-02-19 11:02:42 (557 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bs.svg’ saved [571/571] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 25314 (25K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bt.svg’ 211s 211s 0K .......... .......... .... 100% 9.33G=0s 211s 211s 2025-02-19 11:02:42 (9.33 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bt.svg’ saved [25314/25314] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 25135 (25K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bt.svg’ 211s 211s 0K .......... .......... .... 100% 9.02G=0s 211s 211s 2025-02-19 11:02:42 (9.02 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bt.svg’ saved [25135/25135] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 582 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bv.svg’ 211s 211s 0K 100% 565M=0s 211s 211s 2025-02-19 11:02:42 (565 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bv.svg’ saved [582/582] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 585 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bv.svg’ 211s 211s 0K 100% 581M=0s 211s 211s 2025-02-19 11:02:42 (581 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bv.svg’ saved [585/585] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 249 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bw.svg’ 211s 211s 0K 100% 221M=0s 211s 211s 2025-02-19 11:02:42 (221 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bw.svg’ saved [249/249] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 251 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bw.svg’ 211s 211s 0K 100% 256M=0s 211s 211s 2025-02-19 11:02:42 (256 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bw.svg’ saved [251/251] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/by.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5959 (5.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/by.svg’ 211s 211s 0K ..... 100% 4.04G=0s 211s 211s 2025-02-19 11:02:42 (4.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/by.svg’ saved [5959/5959] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/by.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6089 (5.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/by.svg’ 211s 211s 0K ..... 100% 4.19G=0s 211s 211s 2025-02-19 11:02:42 (4.19 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/by.svg’ saved [6089/6089] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 46844 (46K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bz.svg’ 211s 211s 0K .......... .......... .......... .......... ..... 100% 11.3G=0s 211s 211s 2025-02-19 11:02:42 (11.3 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bz.svg’ saved [46844/46844] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 47105 (46K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bz.svg’ 211s 211s 0K .......... .......... .......... .......... ...... 100% 11.4G=0s 211s 211s 2025-02-19 11:02:42 (11.4 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bz.svg’ saved [47105/47105] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ca.svg 211s Connecting to localhost (localhost)|::1|:80... connected. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 643 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ca.svg’ 211s 211s 0K 100% 568M=0s 211s 211s 2025-02-19 11:02:42 (568 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ca.svg’ saved [643/643] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ca.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 644 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ca.svg’ 211s 211s 0K 100% 608M=0s 211s 211s 2025-02-19 11:02:42 (608 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ca.svg’ saved [644/644] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3153 (3.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cc.svg’ 211s 211s 0K ... 100% 2.53G=0s 211s 211s 2025-02-19 11:02:42 (2.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cc.svg’ saved [3153/3153] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3107 (3.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cc.svg’ 211s 211s 0K ... 100% 2.31G=0s 211s 211s 2025-02-19 11:02:42 (2.31 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cc.svg’ saved [3107/3107] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 346 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cd.svg’ 211s 211s 0K 100% 337M=0s 211s 211s 2025-02-19 11:02:42 (337 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cd.svg’ saved [346/346] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 510 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cd.svg’ 211s 211s 0K 100% 476M=0s 211s 211s 2025-02-19 11:02:42 (476 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cd.svg’ saved [510/510] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 687 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cf.svg’ 211s 211s 0K 100% 671M=0s 211s 211s 2025-02-19 11:02:42 (671 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cf.svg’ saved [687/687] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 635 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cf.svg’ 211s 211s 0K 100% 636M=0s 211s 211s 2025-02-19 11:02:42 (636 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cf.svg’ saved [635/635] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 484 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cg.svg’ 211s 211s 0K 100% 441M=0s 211s 211s 2025-02-19 11:02:42 (441 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cg.svg’ saved [484/484] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 472 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cg.svg’ 211s 211s 0K 100% 470M=0s 211s 211s 2025-02-19 11:02:42 (470 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cg.svg’ saved [472/472] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ch.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 290 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ch.svg’ 211s 211s 0K 100% 295M=0s 211s 211s 2025-02-19 11:02:42 (295 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ch.svg’ saved [290/290] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ch.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 288 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ch.svg’ 211s 211s 0K 100% 273M=0s 211s 211s 2025-02-19 11:02:42 (273 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ch.svg’ saved [288/288] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ci.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 277 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ci.svg’ 211s 211s 0K 100% 269M=0s 211s 211s 2025-02-19 11:02:42 (269 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ci.svg’ saved [277/277] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ci.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 280 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ci.svg’ 211s 211s 0K 100% 277M=0s 211s 211s 2025-02-19 11:02:42 (277 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ci.svg’ saved [280/280] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ck.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1898 (1.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ck.svg’ 211s 211s 0K . 100% 1.69G=0s 211s 211s 2025-02-19 11:02:42 (1.69 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ck.svg’ saved [1898/1898] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ck.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1857 (1.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ck.svg’ 211s 211s 0K . 100% 1.68G=0s 211s 211s 2025-02-19 11:02:42 (1.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ck.svg’ saved [1857/1857] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 560 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cl.svg’ 211s 211s 0K 100% 519M=0s 211s 211s 2025-02-19 11:02:42 (519 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cl.svg’ saved [560/560] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 576 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cl.svg’ 211s 211s 0K 100% 541M=0s 211s 211s 2025-02-19 11:02:42 (541 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cl.svg’ saved [576/576] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 841 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cm.svg’ 211s 211s 0K 100% 786M=0s 211s 211s 2025-02-19 11:02:42 (786 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cm.svg’ saved [841/841] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 841 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cm.svg’ 211s 211s 0K 100% 797M=0s 211s 211s 2025-02-19 11:02:42 (797 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cm.svg’ saved [841/841] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 813 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cn.svg’ 211s 211s 0K 100% 769M=0s 211s 211s 2025-02-19 11:02:42 (769 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cn.svg’ saved [813/813] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 754 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cn.svg’ 211s 211s 0K 100% 741M=0s 211s 211s 2025-02-19 11:02:42 (741 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cn.svg’ saved [754/754] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/co.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 286 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/co.svg’ 211s 211s 0K 100% 218M=0s 211s 211s 2025-02-19 11:02:42 (218 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/co.svg’ saved [286/286] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/co.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 286 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/co.svg’ 211s 211s 0K 100% 239M=0s 211s 211s 2025-02-19 11:02:42 (239 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/co.svg’ saved [286/286] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 290 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cr.svg’ 211s 211s 0K 100% 252M=0s 211s 211s 2025-02-19 11:02:42 (252 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cr.svg’ saved [290/290] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 290 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cr.svg’ 211s 211s 0K 100% 269M=0s 211s 211s 2025-02-19 11:02:42 (269 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cr.svg’ saved [290/290] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 619 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cu.svg’ 211s 211s 0K 100% 571M=0s 211s 211s 2025-02-19 11:02:42 (571 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cu.svg’ saved [619/619] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 576 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cu.svg’ 211s 211s 0K 100% 528M=0s 211s 211s 2025-02-19 11:02:42 (528 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cu.svg’ saved [576/576] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1412 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cv.svg’ 211s 211s 0K . 100% 1.19G=0s 211s 211s 2025-02-19 11:02:42 (1.19 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cv.svg’ saved [1412/1412] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1360 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cv.svg’ 211s 211s 0K . 100% 998M=0s 211s 211s 2025-02-19 11:02:42 (998 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cv.svg’ saved [1360/1360] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 687 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cw.svg’ 211s 211s 0K 100% 589M=0s 211s 211s 2025-02-19 11:02:42 (589 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cw.svg’ saved [687/687] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 694 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cw.svg’ 211s 211s 0K 100% 626M=0s 211s 211s 2025-02-19 11:02:42 (626 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cw.svg’ saved [694/694] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2473 (2.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cx.svg’ 211s 211s 0K .. 100% 1.96G=0s 211s 211s 2025-02-19 11:02:42 (1.96 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cx.svg’ saved [2473/2473] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2512 (2.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cx.svg’ 211s 211s 0K .. 100% 2.00G=0s 211s 211s 2025-02-19 11:02:42 (2.00 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cx.svg’ saved [2512/2512] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5932 (5.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cy.svg’ 211s 211s 0K ..... 100% 3.58G=0s 211s 211s 2025-02-19 11:02:42 (3.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cy.svg’ saved [5932/5932] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6026 (5.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cy.svg’ 211s 211s 0K ..... 100% 4.04G=0s 211s 211s 2025-02-19 11:02:42 (4.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cy.svg’ saved [6026/6026] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 225 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cz.svg’ 211s 211s 0K 100% 208M=0s 211s 211s 2025-02-19 11:02:42 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cz.svg’ saved [225/225] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 226 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cz.svg’ 211s 211s 0K 100% 214M=0s 211s 211s 2025-02-19 11:02:42 (214 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cz.svg’ saved [226/226] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/de.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 210 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/de.svg’ 211s 211s 0K 100% 199M=0s 211s 211s 2025-02-19 11:02:42 (199 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/de.svg’ saved [210/210] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/de.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 218 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/de.svg’ 211s 211s 0K 100% 208M=0s 211s 211s 2025-02-19 11:02:42 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/de.svg’ saved [218/218] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 588 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dj.svg’ 211s 211s 0K 100% 584M=0s 211s 211s 2025-02-19 11:02:42 (584 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dj.svg’ saved [588/588] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 587 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dj.svg’ 211s 211s 0K 100% 540M=0s 211s 211s 2025-02-19 11:02:42 (540 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dj.svg’ saved [587/587] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 236 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dk.svg’ 211s 211s 0K 100% 225M=0s 211s 211s 2025-02-19 11:02:42 (225 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dk.svg’ saved [236/236] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 232 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dk.svg’ 211s 211s 0K 100% 227M=0s 211s 211s 2025-02-19 11:02:42 (227 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dk.svg’ saved [232/232] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15959 (16K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dm.svg’ 211s 211s 0K .......... ..... 100% 7.35G=0s 211s 211s 2025-02-19 11:02:42 (7.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dm.svg’ saved [15959/15959] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 16447 (16K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dm.svg’ 211s 211s 0K .......... ...... 100% 7.29G=0s 211s 211s 2025-02-19 11:02:42 (7.29 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dm.svg’ saved [16447/16447] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/do.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 51954 (51K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/do.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 98% 10.6G 0s 211s 50K 100% 1.37T=0s 211s 211s 2025-02-19 11:02:42 (10.8 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/do.svg’ saved [51954/51954] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/do.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 52714 (51K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/do.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 97% 10.8G 0s 211s 50K . 100% 2.75T=0s 211s 211s 2025-02-19 11:02:42 (11.2 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/do.svg’ saved [52714/52714] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 294 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dz.svg’ 211s 211s 0K 100% 259M=0s 211s 211s 2025-02-19 11:02:42 (259 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dz.svg’ saved [294/294] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 306 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dz.svg’ 211s 211s 0K 100% 263M=0s 211s 211s 2025-02-19 11:02:42 (263 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dz.svg’ saved [306/306] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ec.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 29345 (29K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ec.svg’ 211s 211s 0K .......... .......... ........ 100% 9.29G=0s 211s 211s 2025-02-19 11:02:42 (9.29 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ec.svg’ saved [29345/29345] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ec.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 29901 (29K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ec.svg’ 211s 211s 0K .......... .......... ......... 100% 10.2G=0s 211s 211s 2025-02-19 11:02:42 (10.2 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ec.svg’ saved [29901/29901] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ee.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 318 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ee.svg’ 211s 211s 0K 100% 271M=0s 211s 211s 2025-02-19 11:02:42 (271 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ee.svg’ saved [318/318] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ee.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 349 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ee.svg’ 211s 211s 0K 100% 313M=0s 211s 211s 2025-02-19 11:02:42 (313 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ee.svg’ saved [349/349] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9962 (9.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eg.svg’ 211s 211s 0K ......... 100% 5.63G=0s 211s 211s 2025-02-19 11:02:42 (5.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eg.svg’ saved [9962/9962] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9976 (9.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eg.svg’ 211s 211s 0K ......... 100% 5.53G=0s 211s 211s 2025-02-19 11:02:42 (5.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eg.svg’ saved [9976/9976] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 790 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eh.svg’ 211s 211s 0K 100% 744M=0s 211s 211s 2025-02-19 11:02:42 (744 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eh.svg’ saved [790/790] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 581 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eh.svg’ 211s 211s 0K 100% 537M=0s 211s 211s 2025-02-19 11:02:42 (537 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eh.svg’ saved [581/581] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/er.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3199 (3.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/er.svg’ 211s 211s 0K ... 100% 2.50G=0s 211s 211s 2025-02-19 11:02:42 (2.50 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/er.svg’ saved [3199/3199] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/er.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3391 (3.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/er.svg’ 211s 211s 0K ... 100% 2.59G=0s 211s 211s 2025-02-19 11:02:42 (2.59 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/er.svg’ saved [3391/3391] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 91815 (90K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 55% 4.12G 0s 211s 50K .......... .......... .......... ......... 100% 901M=0s 211s 211s 2025-02-19 11:02:42 (1.57 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es.svg’ saved [91815/91815] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 93669 (91K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 54% 8.93G 0s 211s 50K .......... .......... .......... .......... . 100% 401M=0s 211s 211s 2025-02-19 11:02:42 (841 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es.svg’ saved [93669/93669] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/et.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1226 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/et.svg’ 211s 211s 0K . 100% 1000M=0s 211s 211s 2025-02-19 11:02:42 (1000 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/et.svg’ saved [1226/1226] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/et.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1225 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/et.svg’ 211s 211s 0K . 100% 1.10G=0s 211s 211s 2025-02-19 11:02:42 (1.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/et.svg’ saved [1225/1225] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 234 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fi.svg’ 211s 211s 0K 100% 218M=0s 211s 211s 2025-02-19 11:02:42 (218 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fi.svg’ saved [234/234] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 237 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fi.svg’ 211s 211s 0K 100% 224M=0s 211s 211s 2025-02-19 11:02:42 (224 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fi.svg’ saved [237/237] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 25907 (25K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fj.svg’ 211s 211s 0K .......... .......... ..... 100% 9.40G=0s 211s 211s 2025-02-19 11:02:42 (9.40 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fj.svg’ saved [25907/25907] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 26016 (25K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fj.svg’ 211s 211s 0K .......... .......... ..... 100% 8.98G=0s 211s 211s 2025-02-19 11:02:42 (8.98 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fj.svg’ saved [26016/26016] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 30089 (29K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fk.svg’ 211s 211s 0K .......... .......... ......... 100% 9.47G=0s 211s 211s 2025-02-19 11:02:42 (9.47 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fk.svg’ saved [30089/30089] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 30357 (30K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fk.svg’ 211s 211s 0K .......... .......... ......... 100% 9.51G=0s 211s 211s 2025-02-19 11:02:42 (9.51 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fk.svg’ saved [30357/30357] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 772 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fm.svg’ 211s 211s 0K 100% 748M=0s 211s 211s 2025-02-19 11:02:42 (748 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fm.svg’ saved [772/772] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 761 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fm.svg’ 211s 211s 0K 100% 726M=0s 211s 211s 2025-02-19 11:02:42 (726 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fm.svg’ saved [761/761] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 567 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fo.svg’ 211s 211s 0K 100% 535M=0s 211s 211s 2025-02-19 11:02:42 (535 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fo.svg’ saved [567/567] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 537 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fo.svg’ 211s 211s 0K 100% 522M=0s 211s 211s 2025-02-19 11:02:42 (522 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fo.svg’ saved [537/537] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fr.svg’ 211s 211s 0K 100% 213M=0s 211s 211s 2025-02-19 11:02:42 (213 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fr.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fr.svg’ 211s 211s 0K 100% 211M=0s 211s 211s 2025-02-19 11:02:42 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fr.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ga.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 271 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ga.svg’ 211s 211s 0K 100% 268M=0s 211s 211s 2025-02-19 11:02:42 (268 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ga.svg’ saved [271/271] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ga.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 275 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ga.svg’ 211s 211s 0K 100% 264M=0s 211s 211s 2025-02-19 11:02:42 (264 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ga.svg’ saved [275/275] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 535 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb.svg’ 211s 211s 0K 100% 361M=0s 211s 211s 2025-02-19 11:02:42 (361 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb.svg’ saved [535/535] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 538 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb.svg’ 211s 211s 0K 100% 507M=0s 211s 211s 2025-02-19 11:02:42 (507 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb.svg’ saved [538/538] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1732 (1.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gd.svg’ 211s 211s 0K . 100% 1.48G=0s 211s 211s 2025-02-19 11:02:42 (1.48 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gd.svg’ saved [1732/1732] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1876 (1.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gd.svg’ 211s 211s 0K . 100% 1.57G=0s 211s 211s 2025-02-19 11:02:42 (1.57 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gd.svg’ saved [1876/1876] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ge.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1362 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ge.svg’ 211s 211s 0K . 100% 1.14G=0s 211s 211s 2025-02-19 11:02:42 (1.14 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ge.svg’ saved [1362/1362] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ge.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1506 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ge.svg’ 211s 211s 0K . 100% 1.26G=0s 211s 211s 2025-02-19 11:02:42 (1.26 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ge.svg’ saved [1506/1506] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gf.svg’ 211s 211s 0K 100% 225M=0s 211s 211s 2025-02-19 11:02:42 (225 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gf.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gf.svg’ 211s 211s 0K 100% 221M=0s 211s 211s 2025-02-19 11:02:42 (221 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gf.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 604 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gg.svg’ 211s 211s 0K 100% 603M=0s 211s 211s 2025-02-19 11:02:42 (603 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gg.svg’ saved [604/604] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 634 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gg.svg’ 211s 211s 0K 100% 625M=0s 211s 211s 2025-02-19 11:02:42 (625 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gg.svg’ saved [634/634] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 278 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gh.svg’ 211s 211s 0K 100% 281M=0s 211s 211s 2025-02-19 11:02:42 (281 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gh.svg’ saved [278/278] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 293 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gh.svg’ 211s 211s 0K 100% 287M=0s 211s 211s 2025-02-19 11:02:42 (287 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gh.svg’ saved [293/293] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2952 (2.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gi.svg’ 211s 211s 0K .. 100% 2.37G=0s 211s 211s 2025-02-19 11:02:42 (2.37 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gi.svg’ saved [2952/2952] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2944 (2.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gi.svg’ 211s 211s 0K .. 100% 2.26G=0s 211s 211s 2025-02-19 11:02:42 (2.26 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gi.svg’ saved [2944/2944] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 223 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gl.svg’ 211s 211s 0K 100% 204M=0s 211s 211s 2025-02-19 11:02:42 (204 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gl.svg’ saved [223/223] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 237 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gl.svg’ 211s 211s 0K 100% 240M=0s 211s 211s 2025-02-19 11:02:42 (240 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gl.svg’ saved [237/237] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 543 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gm.svg’ 211s 211s 0K 100% 285M=0s 211s 211s 2025-02-19 11:02:42 (285 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gm.svg’ saved [543/543] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 379 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gm.svg’ 211s 211s 0K 100% 332M=0s 211s 211s 2025-02-19 11:02:42 (332 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gm.svg’ saved [379/379] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 292 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gn.svg’ 211s 211s 0K 100% 257M=0s 211s 211s 2025-02-19 11:02:42 (257 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gn.svg’ saved [292/292] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 292 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gn.svg’ 211s 211s 0K 100% 286M=0s 211s 211s 2025-02-19 11:02:42 (286 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gn.svg’ saved [292/292] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gp.svg’ 211s 211s 0K 100% 221M=0s 211s 211s 2025-02-19 11:02:42 (221 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gp.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gp.svg’ 211s 211s 0K 100% 230M=0s 211s 211s 2025-02-19 11:02:42 (230 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gp.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5170 (5.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gq.svg’ 211s 211s 0K ..... 100% 762M=0s 211s 211s 2025-02-19 11:02:42 (762 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gq.svg’ saved [5170/5170] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gq.svg 211s Connecting to localhost (localhost)|::1|:80... connected. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5261 (5.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gq.svg’ 211s 211s 0K ..... 100% 3.53G=0s 211s 211s 2025-02-19 11:02:42 (3.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gq.svg’ saved [5261/5261] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 868 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gr.svg’ 211s 211s 0K 100% 790M=0s 211s 211s 2025-02-19 11:02:42 (790 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gr.svg’ saved [868/868] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 861 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gr.svg’ 211s 211s 0K 100% 734M=0s 211s 211s 2025-02-19 11:02:42 (734 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gr.svg’ saved [861/861] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gs.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 32731 (32K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gs.svg’ 211s 211s 0K .......... .......... .......... . 100% 10.2G=0s 211s 211s 2025-02-19 11:02:42 (10.2 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gs.svg’ saved [32731/32731] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gs.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 33218 (32K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gs.svg’ 211s 211s 0K .......... .......... .......... .. 100% 11.3G=0s 211s 211s 2025-02-19 11:02:42 (11.3 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gs.svg’ saved [33218/33218] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 35412 (35K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gt.svg’ 211s 211s 0K .......... .......... .......... .... 100% 12.6G=0s 211s 211s 2025-02-19 11:02:42 (12.6 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gt.svg’ saved [35412/35412] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 35412 (35K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gt.svg’ 211s 211s 0K .......... .......... .......... .... 100% 12.4G=0s 211s 211s 2025-02-19 11:02:42 (12.4 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gt.svg’ saved [35412/35412] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5121 (5.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gu.svg’ 211s 211s 0K ..... 100% 3.35G=0s 211s 211s 2025-02-19 11:02:42 (3.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gu.svg’ saved [5121/5121] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 4931 (4.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gu.svg’ 211s 211s 0K .... 100% 3.53G=0s 211s 211s 2025-02-19 11:02:42 (3.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gu.svg’ saved [4931/4931] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 831 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gw.svg’ 211s 211s 0K 100% 739M=0s 211s 211s 2025-02-19 11:02:42 (739 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gw.svg’ saved [831/831] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 907 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gw.svg’ 211s 211s 0K 100% 821M=0s 211s 211s 2025-02-19 11:02:42 (821 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gw.svg’ saved [907/907] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 485 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gy.svg’ 211s 211s 0K 100% 451M=0s 211s 211s 2025-02-19 11:02:42 (451 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gy.svg’ saved [485/485] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 478 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gy.svg’ 211s 211s 0K 100% 405M=0s 211s 211s 2025-02-19 11:02:42 (405 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gy.svg’ saved [478/478] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 728 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hk.svg’ 211s 211s 0K 100% 620M=0s 211s 211s 2025-02-19 11:02:42 (620 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hk.svg’ saved [728/728] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 716 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hk.svg’ 211s 211s 0K 100% 649M=0s 211s 211s 2025-02-19 11:02:42 (649 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hk.svg’ saved [716/716] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1341 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hm.svg’ 211s 211s 0K . 100% 1.16G=0s 211s 211s 2025-02-19 11:02:42 (1.16 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hm.svg’ saved [1341/1341] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1303 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hm.svg’ 211s 211s 0K . 100% 1.07G=0s 211s 211s 2025-02-19 11:02:42 (1.07 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hm.svg’ saved [1303/1303] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1145 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hn.svg’ 211s 211s 0K . 100% 823M=0s 211s 211s 2025-02-19 11:02:42 (823 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hn.svg’ saved [1145/1145] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1148 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hn.svg’ 211s 211s 0K . 100% 1.01G=0s 211s 211s 2025-02-19 11:02:42 (1.01 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hn.svg’ saved [1148/1148] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 41558 (41K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hr.svg’ 211s 211s 0K .......... .......... .......... .......... 100% 10.6G=0s 211s 211s 2025-02-19 11:02:42 (10.6 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hr.svg’ saved [41558/41558] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 41748 (41K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hr.svg’ 211s 211s 0K .......... .......... .......... .......... 100% 12.8G=0s 211s 211s 2025-02-19 11:02:42 (12.8 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hr.svg’ saved [41748/41748] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ht.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15057 (15K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ht.svg’ 211s 211s 0K .......... .... 100% 8.24G=0s 211s 211s 2025-02-19 11:02:42 (8.24 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ht.svg’ saved [15057/15057] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ht.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15143 (15K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ht.svg’ 211s 211s 0K .......... .... 100% 8.18G=0s 211s 211s 2025-02-19 11:02:42 (8.18 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ht.svg’ saved [15143/15143] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 271 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hu.svg’ 211s 211s 0K 100% 272M=0s 211s 211s 2025-02-19 11:02:42 (272 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hu.svg’ saved [271/271] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 273 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hu.svg’ 211s 211s 0K 100% 211M=0s 211s 211s 2025-02-19 11:02:42 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hu.svg’ saved [273/273] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/id.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 178 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/id.svg’ 211s 211s 0K 100% 173M=0s 211s 211s 2025-02-19 11:02:42 (173 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/id.svg’ saved [178/178] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/id.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 178 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/id.svg’ 211s 211s 0K 100% 169M=0s 211s 211s 2025-02-19 11:02:42 (169 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/id.svg’ saved [178/178] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ie.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ie.svg’ 211s 211s 0K 100% 276M=0s 211s 211s 2025-02-19 11:02:42 (276 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ie.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ie.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ie.svg’ 211s 211s 0K 100% 239M=0s 211s 211s 2025-02-19 11:02:42 (239 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ie.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/il.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 903 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/il.svg’ 211s 211s 0K 100% 732M=0s 211s 211s 2025-02-19 11:02:42 (732 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/il.svg’ saved [903/903] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/il.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 856 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/il.svg’ 211s 211s 0K 100% 807M=0s 211s 211s 2025-02-19 11:02:42 (807 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/il.svg’ saved [856/856] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/im.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9921 (9.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/im.svg’ 211s 211s 0K ......... 100% 5.88G=0s 211s 211s 2025-02-19 11:02:42 (5.88 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/im.svg’ saved [9921/9921] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/im.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 10247 (10K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/im.svg’ 211s 211s 0K .......... 100% 6.14G=0s 211s 211s 2025-02-19 11:02:42 (6.14 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/im.svg’ saved [10247/10247] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/in.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1097 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/in.svg’ 211s 211s 0K . 100% 875M=0s 211s 211s 2025-02-19 11:02:42 (875 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/in.svg’ saved [1097/1097] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/in.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1111 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/in.svg’ 211s 211s 0K . 100% 847M=0s 211s 211s 2025-02-19 11:02:42 (847 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/in.svg’ saved [1111/1111] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/io.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 23180 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/io.svg’ 211s 211s 0K .......... .......... .. 100% 9.65G=0s 211s 211s 2025-02-19 11:02:42 (9.65 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/io.svg’ saved [23180/23180] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/io.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 22905 (22K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/io.svg’ 211s 211s 0K .......... .......... .. 100% 9.84G=0s 211s 211s 2025-02-19 11:02:42 (9.84 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/io.svg’ saved [22905/22905] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/iq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1473 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/iq.svg’ 211s 211s 0K . 100% 1.23G=0s 211s 211s 2025-02-19 11:02:42 (1.23 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/iq.svg’ saved [1473/1473] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/iq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1478 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/iq.svg’ 211s 211s 0K . 100% 1.31G=0s 211s 211s 2025-02-19 11:02:42 (1.31 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/iq.svg’ saved [1478/1478] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ir.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15413 (15K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ir.svg’ 211s 211s 0K .......... ..... 100% 8.24G=0s 211s 211s 2025-02-19 11:02:42 (8.24 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ir.svg’ saved [15413/15413] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ir.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15325 (15K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ir.svg’ 211s 211s 0K .......... .... 100% 7.86G=0s 211s 211s 2025-02-19 11:02:42 (7.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ir.svg’ saved [15325/15325] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/is.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 521 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/is.svg’ 211s 211s 0K 100% 437M=0s 211s 211s 2025-02-19 11:02:42 (437 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/is.svg’ saved [521/521] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/is.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 529 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/is.svg’ 211s 211s 0K 100% 458M=0s 211s 211s 2025-02-19 11:02:42 (458 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/is.svg’ saved [529/529] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/it.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/it.svg’ 211s 211s 0K 100% 252M=0s 211s 211s 2025-02-19 11:02:42 (252 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/it.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/it.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/it.svg’ 211s 211s 0K 100% 246M=0s 211s 211s 2025-02-19 11:02:42 (246 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/it.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/je.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7377 (7.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/je.svg’ 211s 211s 0K ....... 100% 4.86G=0s 211s 211s 2025-02-19 11:02:42 (4.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/je.svg’ saved [7377/7377] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/je.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6172 (6.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/je.svg’ 211s 211s 0K ...... 100% 4.25G=0s 211s 211s 2025-02-19 11:02:42 (4.25 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/je.svg’ saved [6172/6172] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/jm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 386 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jm.svg’ 211s 211s 0K 100% 352M=0s 211s 211s 2025-02-19 11:02:42 (352 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jm.svg’ saved [386/386] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/jm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 386 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jm.svg’ 211s 211s 0K 100% 324M=0s 211s 211s 2025-02-19 11:02:42 (324 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jm.svg’ saved [386/386] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/jo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 717 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jo.svg’ 211s 211s 0K 100% 608M=0s 211s 211s 2025-02-19 11:02:42 (608 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jo.svg’ saved [717/717] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/jo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 694 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jo.svg’ 211s 211s 0K 100% 598M=0s 211s 211s 2025-02-19 11:02:42 (598 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jo.svg’ saved [694/694] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/jp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 471 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jp.svg’ 211s 211s 0K 100% 397M=0s 211s 211s 2025-02-19 11:02:42 (397 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jp.svg’ saved [471/471] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/jp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 487 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jp.svg’ 211s 211s 0K 100% 421M=0s 211s 211s 2025-02-19 11:02:42 (421 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jp.svg’ saved [487/487] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ke.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1410 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ke.svg’ 211s 211s 0K . 100% 1.24G=0s 211s 211s 2025-02-19 11:02:42 (1.24 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ke.svg’ saved [1410/1410] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ke.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1522 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ke.svg’ 211s 211s 0K . 100% 1.35G=0s 211s 211s 2025-02-19 11:02:42 (1.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ke.svg’ saved [1522/1522] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3374 (3.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kg.svg’ 211s 211s 0K ... 100% 2.52G=0s 211s 211s 2025-02-19 11:02:42 (2.52 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kg.svg’ saved [3374/3374] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3325 (3.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kg.svg’ 211s 211s 0K ... 100% 2.61G=0s 211s 211s 2025-02-19 11:02:42 (2.61 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kg.svg’ saved [3325/3325] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7277 (7.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kh.svg’ 211s 211s 0K ....... 100% 4.77G=0s 211s 211s 2025-02-19 11:02:42 (4.77 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kh.svg’ saved [7277/7277] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7278 (7.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kh.svg’ 211s 211s 0K ....... 100% 4.76G=0s 211s 211s 2025-02-19 11:02:42 (4.76 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kh.svg’ saved [7278/7278] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ki.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5811 (5.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ki.svg’ 211s 211s 0K ..... 100% 3.83G=0s 211s 211s 2025-02-19 11:02:42 (3.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ki.svg’ saved [5811/5811] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ki.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5945 (5.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ki.svg’ 211s 211s 0K ..... 100% 3.43G=0s 211s 211s 2025-02-19 11:02:42 (3.43 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ki.svg’ saved [5945/5945] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/km.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1057 (1.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/km.svg’ 211s 211s 0K . 100% 788M=0s 211s 211s 2025-02-19 11:02:42 (788 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/km.svg’ saved [1057/1057] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/km.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1040 (1.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/km.svg’ 211s 211s 0K . 100% 898M=0s 211s 211s 2025-02-19 11:02:42 (898 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/km.svg’ saved [1040/1040] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 811 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kn.svg’ 211s 211s 0K 100% 678M=0s 211s 211s 2025-02-19 11:02:42 (678 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kn.svg’ saved [811/811] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 817 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kn.svg’ 211s 211s 0K 100% 721M=0s 211s 211s 2025-02-19 11:02:42 (721 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kn.svg’ saved [817/817] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 791 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kp.svg’ 211s 211s 0K 100% 599M=0s 211s 211s 2025-02-19 11:02:42 (599 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kp.svg’ saved [791/791] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 854 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kp.svg’ 211s 211s 0K 100% 732M=0s 211s 211s 2025-02-19 11:02:42 (732 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kp.svg’ saved [854/854] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1049 (1.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kr.svg’ 211s 211s 0K . 100% 887M=0s 211s 211s 2025-02-19 11:02:42 (887 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kr.svg’ saved [1049/1049] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 841 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kr.svg’ 211s 211s 0K 100% 696M=0s 211s 211s 2025-02-19 11:02:42 (696 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kr.svg’ saved [841/841] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 506 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kw.svg’ 211s 211s 0K 100% 462M=0s 211s 211s 2025-02-19 11:02:42 (462 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kw.svg’ saved [506/506] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 510 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kw.svg’ 211s 211s 0K 100% 467M=0s 211s 211s 2025-02-19 11:02:42 (467 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kw.svg’ saved [510/510] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ky.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 24042 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ky.svg’ 211s 211s 0K .......... .......... ... 100% 9.61G=0s 211s 211s 2025-02-19 11:02:42 (9.61 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ky.svg’ saved [24042/24042] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ky.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 24028 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ky.svg’ 211s 211s 0K .......... .......... ... 100% 9.89G=0s 211s 211s 2025-02-19 11:02:42 (9.89 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ky.svg’ saved [24028/24028] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7292 (7.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kz.svg’ 211s 211s 0K ....... 100% 4.92G=0s 211s 211s 2025-02-19 11:02:42 (4.92 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kz.svg’ saved [7292/7292] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7294 (7.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kz.svg’ 211s 211s 0K ....... 100% 4.73G=0s 211s 211s 2025-02-19 11:02:42 (4.73 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kz.svg’ saved [7294/7294] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/la.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 457 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/la.svg’ 211s 211s 0K 100% 369M=0s 211s 211s 2025-02-19 11:02:42 (369 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/la.svg’ saved [457/457] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/la.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 507 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/la.svg’ 211s 211s 0K 100% 376M=0s 211s 211s 2025-02-19 11:02:42 (376 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/la.svg’ saved [507/507] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2818 (2.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lb.svg’ 211s 211s 0K .. 100% 1.99G=0s 211s 211s 2025-02-19 11:02:42 (1.99 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lb.svg’ saved [2818/2818] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2757 (2.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lb.svg’ 211s 211s 0K .. 100% 1.99G=0s 211s 211s 2025-02-19 11:02:42 (1.99 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lb.svg’ saved [2757/2757] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 367 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lc.svg’ 211s 211s 0K 100% 333M=0s 211s 211s 2025-02-19 11:02:42 (333 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lc.svg’ saved [367/367] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 367 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lc.svg’ 211s 211s 0K 100% 322M=0s 211s 211s 2025-02-19 11:02:42 (322 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lc.svg’ saved [367/367] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/li.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8296 (8.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/li.svg’ 211s 211s 0K ........ 100% 5.05G=0s 211s 211s 2025-02-19 11:02:42 (5.05 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/li.svg’ saved [8296/8296] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/li.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8319 (8.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/li.svg’ 211s 211s 0K ........ 100% 5.04G=0s 211s 211s 2025-02-19 11:02:42 (5.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/li.svg’ saved [8319/8319] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 11341 (11K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lk.svg’ 211s 211s 0K .......... . 100% 6.88G=0s 211s 211s 2025-02-19 11:02:42 (6.88 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lk.svg’ saved [11341/11341] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 11353 (11K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lk.svg’ 211s 211s 0K .......... . 100% 6.48G=0s 211s 211s 2025-02-19 11:02:42 (6.48 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lk.svg’ saved [11353/11353] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 723 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lr.svg’ 211s 211s 0K 100% 616M=0s 211s 211s 2025-02-19 11:02:42 (616 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lr.svg’ saved [723/723] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 696 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lr.svg’ 211s 211s 0K 100% 632M=0s 211s 211s 2025-02-19 11:02:42 (632 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lr.svg’ saved [696/696] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ls.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1213 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ls.svg’ 211s 211s 0K . 100% 977M=0s 211s 211s 2025-02-19 11:02:42 (977 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ls.svg’ saved [1213/1213] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ls.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1236 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ls.svg’ 211s 211s 0K . 100% 1.00G=0s 211s 211s 2025-02-19 11:02:42 (1.00 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ls.svg’ saved [1236/1236] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 439 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lt.svg’ 211s 211s 0K 100% 379M=0s 211s 211s 2025-02-19 11:02:42 (379 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lt.svg’ saved [439/439] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 439 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lt.svg’ 211s 211s 0K 100% 415M=0s 211s 211s 2025-02-19 11:02:42 (415 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lt.svg’ saved [439/439] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 225 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lu.svg’ 211s 211s 0K 100% 185M=0s 211s 211s 2025-02-19 11:02:42 (185 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lu.svg’ saved [225/225] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 229 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lu.svg’ 211s 211s 0K 100% 214M=0s 211s 211s 2025-02-19 11:02:42 (214 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lu.svg’ saved [229/229] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 230 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lv.svg’ 211s 211s 0K 100% 206M=0s 211s 211s 2025-02-19 11:02:42 (206 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lv.svg’ saved [230/230] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 234 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lv.svg’ 211s 211s 0K 100% 208M=0s 211s 211s 2025-02-19 11:02:42 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lv.svg’ saved [234/234] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ly.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 534 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ly.svg’ 211s 211s 0K 100% 478M=0s 211s 211s 2025-02-19 11:02:42 (478 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ly.svg’ saved [534/534] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ly.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 533 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ly.svg’ 211s 211s 0K 100% 458M=0s 211s 211s 2025-02-19 11:02:42 (458 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ly.svg’ saved [533/533] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ma.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 247 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ma.svg’ 211s 211s 0K 100% 219M=0s 211s 211s 2025-02-19 11:02:42 (219 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ma.svg’ saved [247/247] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ma.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 246 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ma.svg’ 211s 211s 0K 100% 231M=0s 211s 211s 2025-02-19 11:02:42 (231 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ma.svg’ saved [246/246] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 234 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mc.svg’ 211s 211s 0K 100% 208M=0s 211s 211s 2025-02-19 11:02:42 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mc.svg’ saved [234/234] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 234 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mc.svg’ 211s 211s 0K 100% 231M=0s 211s 211s 2025-02-19 11:02:42 (231 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mc.svg’ saved [234/234] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/md.svg 211s Connecting to localhost (localhost)|::1|:80... connected. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 11252 (11K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/md.svg’ 211s 211s 0K .......... 100% 5.86G=0s 211s 211s 2025-02-19 11:02:42 (5.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/md.svg’ saved [11252/11252] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/md.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 11357 (11K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/md.svg’ 211s 211s 0K .......... . 100% 5.44G=0s 211s 211s 2025-02-19 11:02:42 (5.44 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/md.svg’ saved [11357/11357] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/me.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 62870 (61K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/me.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 81% 6.97G 0s 211s 50K .......... . 100% 21.2T=0s 211s 211s 2025-02-19 11:02:42 (8.56 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/me.svg’ saved [62870/62870] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/me.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 63860 (62K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/me.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 80% 9.22G 0s 211s 50K .......... .. 100% 23.0T=0s 211s 211s 2025-02-19 11:02:42 (11.5 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/me.svg’ saved [63860/63860] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mf.svg’ 211s 211s 0K 100% 196M=0s 211s 211s 2025-02-19 11:02:42 (196 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mf.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mf.svg’ 211s 211s 0K 100% 199M=0s 211s 211s 2025-02-19 11:02:42 (199 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mf.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 299 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mg.svg’ 211s 211s 0K 100% 257M=0s 211s 211s 2025-02-19 11:02:42 (257 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mg.svg’ saved [299/299] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 299 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mg.svg’ 211s 211s 0K 100% 258M=0s 211s 211s 2025-02-19 11:02:42 (258 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mg.svg’ saved [299/299] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 738 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mh.svg’ 211s 211s 0K 100% 704M=0s 211s 211s 2025-02-19 11:02:42 (704 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mh.svg’ saved [738/738] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 759 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mh.svg’ 211s 211s 0K 100% 642M=0s 211s 211s 2025-02-19 11:02:42 (642 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mh.svg’ saved [759/759] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 379 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mk.svg’ 211s 211s 0K 100% 340M=0s 211s 211s 2025-02-19 11:02:42 (340 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mk.svg’ saved [379/379] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 407 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mk.svg’ 211s 211s 0K 100% 376M=0s 211s 211s 2025-02-19 11:02:42 (376 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mk.svg’ saved [407/407] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ml.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 273 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ml.svg’ 211s 211s 0K 100% 269M=0s 211s 211s 2025-02-19 11:02:42 (269 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ml.svg’ saved [273/273] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ml.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 276 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ml.svg’ 211s 211s 0K 100% 241M=0s 211s 211s 2025-02-19 11:02:42 (241 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ml.svg’ saved [276/276] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 711 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mm.svg’ 211s 211s 0K 100% 629M=0s 211s 211s 2025-02-19 11:02:42 (629 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mm.svg’ saved [711/711] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 707 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mm.svg’ 211s 211s 0K 100% 644M=0s 211s 211s 2025-02-19 11:02:42 (644 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mm.svg’ saved [707/707] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1439 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mn.svg’ 211s 211s 0K . 100% 1.02G=0s 211s 211s 2025-02-19 11:02:42 (1.02 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mn.svg’ saved [1439/1439] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1432 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mn.svg’ 211s 211s 0K . 100% 1.10G=0s 211s 211s 2025-02-19 11:02:42 (1.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mn.svg’ saved [1432/1432] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1514 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mo.svg’ 211s 211s 0K . 100% 1.23G=0s 211s 211s 2025-02-19 11:02:42 (1.23 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mo.svg’ saved [1514/1514] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1548 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mo.svg’ 211s 211s 0K . 100% 1.33G=0s 211s 211s 2025-02-19 11:02:42 (1.33 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mo.svg’ saved [1548/1548] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 23403 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mp.svg’ 211s 211s 0K .......... .......... .. 100% 9.16G=0s 211s 211s 2025-02-19 11:02:42 (9.16 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mp.svg’ saved [23403/23403] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 23644 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mp.svg’ 211s 211s 0K .......... .......... ... 100% 10.3G=0s 211s 211s 2025-02-19 11:02:42 (10.3 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mp.svg’ saved [23644/23644] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 228 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mq.svg’ 211s 211s 0K 100% 172M=0s 211s 211s 2025-02-19 11:02:42 (172 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mq.svg’ saved [228/228] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mq.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 226 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mq.svg’ 211s 211s 0K 100% 220M=0s 211s 211s 2025-02-19 11:02:42 (220 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mq.svg’ saved [226/226] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 446 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mr.svg’ 211s 211s 0K 100% 419M=0s 211s 211s 2025-02-19 11:02:42 (419 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mr.svg’ saved [446/446] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 434 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mr.svg’ 211s 211s 0K 100% 438M=0s 211s 211s 2025-02-19 11:02:42 (438 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mr.svg’ saved [434/434] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ms.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6105 (6.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ms.svg’ 211s 211s 0K ..... 100% 4.40G=0s 211s 211s 2025-02-19 11:02:42 (4.40 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ms.svg’ saved [6105/6105] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ms.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6156 (6.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ms.svg’ 211s 211s 0K ...... 100% 4.17G=0s 211s 211s 2025-02-19 11:02:42 (4.17 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ms.svg’ saved [6156/6156] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8788 (8.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mt.svg’ 211s 211s 0K ........ 100% 5.53G=0s 211s 211s 2025-02-19 11:02:42 (5.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mt.svg’ saved [8788/8788] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 10502 (10K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mt.svg’ 211s 211s 0K .......... 100% 6.55G=0s 211s 211s 2025-02-19 11:02:42 (6.55 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mt.svg’ saved [10502/10502] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 316 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mu.svg’ 211s 211s 0K 100% 296M=0s 211s 211s 2025-02-19 11:02:42 (296 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mu.svg’ saved [316/316] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 316 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mu.svg’ 211s 211s 0K 100% 295M=0s 211s 211s 2025-02-19 11:02:42 (295 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mu.svg’ saved [316/316] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 286 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mv.svg’ 211s 211s 0K 100% 248M=0s 211s 211s 2025-02-19 11:02:42 (248 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mv.svg’ saved [286/286] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 304 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mv.svg’ 211s 211s 0K 100% 266M=0s 211s 211s 2025-02-19 11:02:42 (266 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mv.svg’ saved [304/304] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3705 (3.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mw.svg’ 211s 211s 0K ... 100% 2.73G=0s 211s 211s 2025-02-19 11:02:42 (2.73 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mw.svg’ saved [3705/3705] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3894 (3.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mw.svg’ 211s 211s 0K ... 100% 2.61G=0s 211s 211s 2025-02-19 11:02:42 (2.61 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mw.svg’ saved [3894/3894] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 95436 (93K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mx.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 53% 7.59G 0s 211s 50K .......... .......... .......... .......... ... 100% 837M=0s 211s 211s 2025-02-19 11:02:42 (1.57 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mx.svg’ saved [95436/95436] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 90896 (89K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mx.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 56% 9.43G 0s 211s 50K .......... .......... .......... ........ 100% 467M=0s 211s 211s 2025-02-19 11:02:42 (1007 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mx.svg’ saved [90896/90896] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/my.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1399 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/my.svg’ 211s 211s 0K . 100% 1.22G=0s 211s 211s 2025-02-19 11:02:42 (1.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/my.svg’ saved [1399/1399] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/my.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1176 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/my.svg’ 211s 211s 0K . 100% 1008M=0s 211s 211s 2025-02-19 11:02:42 (1008 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/my.svg’ saved [1176/1176] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2618 (2.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mz.svg’ 211s 211s 0K .. 100% 1.95G=0s 211s 211s 2025-02-19 11:02:42 (1.95 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mz.svg’ saved [2618/2618] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2601 (2.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mz.svg’ 211s 211s 0K .. 100% 2.23G=0s 211s 211s 2025-02-19 11:02:42 (2.23 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mz.svg’ saved [2601/2601] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/na.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1002 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/na.svg’ 211s 211s 0K 100% 880M=0s 211s 211s 2025-02-19 11:02:42 (880 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/na.svg’ saved [1002/1002] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/na.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 979 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/na.svg’ 211s 211s 0K 100% 914M=0s 211s 211s 2025-02-19 11:02:42 (914 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/na.svg’ saved [979/979] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1275 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nc.svg’ 211s 211s 0K . 100% 1.13G=0s 211s 211s 2025-02-19 11:02:42 (1.13 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nc.svg’ saved [1275/1275] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1257 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nc.svg’ 211s 211s 0K . 100% 1024M=0s 211s 211s 2025-02-19 11:02:42 (1024 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nc.svg’ saved [1257/1257] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ne.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 273 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ne.svg’ 211s 211s 0K 100% 234M=0s 211s 211s 2025-02-19 11:02:42 (234 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ne.svg’ saved [273/273] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ne.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 279 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ne.svg’ 211s 211s 0K 100% 260M=0s 211s 211s 2025-02-19 11:02:42 (260 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ne.svg’ saved [279/279] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5833 (5.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nf.svg’ 211s 211s 0K ..... 100% 3.71G=0s 211s 211s 2025-02-19 11:02:42 (3.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nf.svg’ saved [5833/5833] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5584 (5.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nf.svg’ 211s 211s 0K ..... 100% 3.80G=0s 211s 211s 2025-02-19 11:02:42 (3.80 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nf.svg’ saved [5584/5584] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ng.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 257 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ng.svg’ 211s 211s 0K 100% 231M=0s 211s 211s 2025-02-19 11:02:42 (231 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ng.svg’ saved [257/257] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ng.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 257 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ng.svg’ 211s 211s 0K 100% 256M=0s 211s 211s 2025-02-19 11:02:42 (256 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ng.svg’ saved [257/257] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ni.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 18772 (18K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ni.svg’ 211s 211s 0K .......... ........ 100% 8.02G=0s 211s 211s 2025-02-19 11:02:42 (8.02 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ni.svg’ saved [18772/18772] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ni.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 18831 (18K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ni.svg’ 211s 211s 0K .......... ........ 100% 9.49G=0s 211s 211s 2025-02-19 11:02:42 (9.49 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ni.svg’ saved [18831/18831] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 221 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nl.svg’ 211s 211s 0K 100% 209M=0s 211s 211s 2025-02-19 11:02:42 (209 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nl.svg’ saved [221/221] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 225 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nl.svg’ 211s 211s 0K 100% 218M=0s 211s 211s 2025-02-19 11:02:42 (218 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nl.svg’ saved [225/225] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/no.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 318 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/no.svg’ 211s 211s 0K 100% 291M=0s 211s 211s 2025-02-19 11:02:42 (291 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/no.svg’ saved [318/318] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/no.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 318 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/no.svg’ 211s 211s 0K 100% 267M=0s 211s 211s 2025-02-19 11:02:42 (267 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/no.svg’ saved [318/318] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/np.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1017 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/np.svg’ 211s 211s 0K 100% 888M=0s 211s 211s 2025-02-19 11:02:42 (888 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/np.svg’ saved [1017/1017] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/np.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1143 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/np.svg’ 211s 211s 0K . 100% 1000M=0s 211s 211s 2025-02-19 11:02:42 (1000 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/np.svg’ saved [1143/1143] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 647 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nr.svg’ 211s 211s 0K 100% 562M=0s 211s 211s 2025-02-19 11:02:42 (562 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nr.svg’ saved [647/647] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 670 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nr.svg’ 211s 211s 0K 100% 602M=0s 211s 211s 2025-02-19 11:02:42 (602 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nr.svg’ saved [670/670] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 864 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nu.svg’ 211s 211s 0K 100% 769M=0s 211s 211s 2025-02-19 11:02:42 (769 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nu.svg’ saved [864/864] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 840 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nu.svg’ 211s 211s 0K 100% 788M=0s 211s 211s 2025-02-19 11:02:42 (788 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nu.svg’ saved [840/840] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2181 (2.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nz.svg’ 211s 211s 0K .. 100% 1.88G=0s 211s 211s 2025-02-19 11:02:42 (1.88 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nz.svg’ saved [2181/2181] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2162 (2.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nz.svg’ 211s 211s 0K .. 100% 1.91G=0s 211s 211s 2025-02-19 11:02:42 (1.91 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nz.svg’ saved [2162/2162] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/om.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 22684 (22K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/om.svg’ 211s 211s 0K .......... .......... .. 100% 9.62G=0s 211s 211s 2025-02-19 11:02:42 (9.62 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/om.svg’ saved [22684/22684] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/om.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 22668 (22K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/om.svg’ 211s 211s 0K .......... .......... .. 100% 9.61G=0s 211s 211s 2025-02-19 11:02:42 (9.61 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/om.svg’ saved [22668/22668] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pa.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 744 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pa.svg’ 211s 211s 0K 100% 671M=0s 211s 211s 2025-02-19 11:02:42 (671 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pa.svg’ saved [744/744] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pa.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 661 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pa.svg’ 211s 211s 0K 100% 617M=0s 211s 211s 2025-02-19 11:02:42 (617 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pa.svg’ saved [661/661] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pe.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 186 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pe.svg’ 211s 211s 0K 100% 178M=0s 211s 211s 2025-02-19 11:02:42 (178 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pe.svg’ saved [186/186] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pe.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 186 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pe.svg’ 211s 211s 0K 100% 167M=0s 211s 211s 2025-02-19 11:02:42 (167 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pe.svg’ saved [186/186] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 4284 (4.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pf.svg’ 211s 211s 0K .... 100% 2.72G=0s 211s 211s 2025-02-19 11:02:42 (2.72 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pf.svg’ saved [4284/4284] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 4225 (4.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pf.svg’ 211s 211s 0K .... 100% 3.18G=0s 211s 211s 2025-02-19 11:02:42 (3.18 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pf.svg’ saved [4225/4225] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1657 (1.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pg.svg’ 211s 211s 0K . 100% 1.43G=0s 211s 211s 2025-02-19 11:02:42 (1.43 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pg.svg’ saved [1657/1657] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2097 (2.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pg.svg’ 211s 211s 0K .. 100% 1.70G=0s 211s 211s 2025-02-19 11:02:42 (1.70 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pg.svg’ saved [2097/2097] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ph.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1501 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ph.svg’ 211s 211s 0K . 100% 1.30G=0s 211s 211s 2025-02-19 11:02:42 (1.30 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ph.svg’ saved [1501/1501] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ph.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1449 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ph.svg’ 211s 211s 0K . 100% 1.26G=0s 211s 211s 2025-02-19 11:02:42 (1.26 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ph.svg’ saved [1449/1449] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 742 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pk.svg’ 211s 211s 0K 100% 662M=0s 211s 211s 2025-02-19 11:02:42 (662 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pk.svg’ saved [742/742] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 693 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pk.svg’ 211s 211s 0K 100% 591M=0s 211s 211s 2025-02-19 11:02:42 (591 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pk.svg’ saved [693/693] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 219 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pl.svg’ 211s 211s 0K 100% 206M=0s 211s 211s 2025-02-19 11:02:42 (206 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pl.svg’ saved [219/219] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 219 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pl.svg’ 211s 211s 0K 100% 206M=0s 211s 211s 2025-02-19 11:02:42 (206 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pl.svg’ saved [219/219] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pm.svg’ 211s 211s 0K 100% 224M=0s 211s 211s 2025-02-19 11:02:42 (224 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pm.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pm.svg’ 211s 211s 0K 100% 214M=0s 211s 211s 2025-02-19 11:02:42 (214 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pm.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 13896 (14K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pn.svg’ 211s 211s 0K .......... ... 100% 6.79G=0s 211s 211s 2025-02-19 11:02:42 (6.79 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pn.svg’ saved [13896/13896] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 13854 (14K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pn.svg’ 211s 211s 0K .......... ... 100% 7.22G=0s 211s 211s 2025-02-19 11:02:42 (7.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pn.svg’ saved [13854/13854] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 634 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pr.svg’ 211s 211s 0K 100% 566M=0s 211s 211s 2025-02-19 11:02:42 (566 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pr.svg’ saved [634/634] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 621 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pr.svg’ 211s 211s 0K 100% 62.4M=0s 211s 211s 2025-02-19 11:02:42 (62.4 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pr.svg’ saved [621/621] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ps.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 558 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ps.svg’ 211s 211s 0K 100% 497M=0s 211s 211s 2025-02-19 11:02:42 (497 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ps.svg’ saved [558/558] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ps.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 544 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ps.svg’ 211s 211s 0K 100% 550M=0s 211s 211s 2025-02-19 11:02:42 (550 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ps.svg’ saved [544/544] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8412 (8.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pt.svg’ 211s 211s 0K ........ 100% 4.45G=0s 211s 211s 2025-02-19 11:02:42 (4.45 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pt.svg’ saved [8412/8412] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8791 (8.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pt.svg’ 211s 211s 0K ........ 100% 6.06G=0s 211s 211s 2025-02-19 11:02:42 (6.06 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pt.svg’ saved [8791/8791] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 467 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pw.svg’ 211s 211s 0K 100% 410M=0s 211s 211s 2025-02-19 11:02:42 (410 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pw.svg’ saved [467/467] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 512 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pw.svg’ 211s 211s 0K 100% 459M=0s 211s 211s 2025-02-19 11:02:42 (459 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pw.svg’ saved [512/512] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/py.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 17245 (17K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/py.svg’ 211s 211s 0K .......... ...... 100% 7.46G=0s 211s 211s 2025-02-19 11:02:42 (7.46 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/py.svg’ saved [17245/17245] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/py.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 17406 (17K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/py.svg’ 211s 211s 0K .......... ...... 100% 7.90G=0s 211s 211s 2025-02-19 11:02:42 (7.90 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/py.svg’ saved [17406/17406] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/qa.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 356 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/qa.svg’ 211s 211s 0K 100% 320M=0s 211s 211s 2025-02-19 11:02:42 (320 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/qa.svg’ saved [356/356] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/qa.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 353 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/qa.svg’ 211s 211s 0K 100% 343M=0s 211s 211s 2025-02-19 11:02:42 (343 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/qa.svg’ saved [353/353] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/re.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/re.svg’ 211s 211s 0K 100% 195M=0s 211s 211s 2025-02-19 11:02:42 (195 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/re.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/re.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/re.svg’ 211s 211s 0K 100% 265M=0s 211s 211s 2025-02-19 11:02:42 (265 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/re.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ro.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 302 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ro.svg’ 211s 211s 0K 100% 284M=0s 211s 211s 2025-02-19 11:02:42 (284 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ro.svg’ saved [302/302] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ro.svg 211s Connecting to localhost (localhost)|::1|:80... connected. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 302 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ro.svg’ 211s 211s 0K 100% 231M=0s 211s 211s 2025-02-19 11:02:42 (231 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ro.svg’ saved [302/302] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/rs.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 187269 (183K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rs.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 27% 8.11G 0s 211s 50K .......... .......... .......... .......... .......... 54% 958M 0s 211s 100K .......... .......... .......... .......... .......... 82% 1.05G 0s 211s 150K .......... .......... .......... .. 100% 61.2T=0s 211s 211s 2025-02-19 11:02:42 (1.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rs.svg’ saved [187269/187269] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/rs.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 187132 (183K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rs.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 27% 9.49G 0s 211s 50K .......... .......... .......... .......... .......... 54% 315M 0s 211s 100K .......... .......... .......... .......... .......... 82% 1.13G 0s 211s 150K .......... .......... .......... .. 100% 61.0T=0s 211s 211s 2025-02-19 11:02:42 (882 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rs.svg’ saved [187132/187132] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ru.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 283 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ru.svg’ 211s 211s 0K 100% 264M=0s 211s 211s 2025-02-19 11:02:42 (264 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ru.svg’ saved [283/283] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ru.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 287 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ru.svg’ 211s 211s 0K 100% 255M=0s 211s 211s 2025-02-19 11:02:42 (255 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ru.svg’ saved [287/287] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/rw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 756 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rw.svg’ 211s 211s 0K 100% 717M=0s 211s 211s 2025-02-19 11:02:42 (717 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rw.svg’ saved [756/756] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/rw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 757 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rw.svg’ 211s 211s 0K 100% 675M=0s 211s 211s 2025-02-19 11:02:42 (675 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rw.svg’ saved [757/757] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sa.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 10260 (10K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sa.svg’ 211s 211s 0K .......... 100% 5.59G=0s 211s 211s 2025-02-19 11:02:42 (5.59 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sa.svg’ saved [10260/10260] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sa.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 10195 (10.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sa.svg’ 211s 211s 0K ......... 100% 6.39G=0s 211s 211s 2025-02-19 11:02:42 (6.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sa.svg’ saved [10195/10195] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 950 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sb.svg’ 211s 211s 0K 100% 826M=0s 211s 211s 2025-02-19 11:02:42 (826 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sb.svg’ saved [950/950] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sb.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 955 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sb.svg’ 211s 211s 0K 100% 914M=0s 211s 211s 2025-02-19 11:02:42 (914 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sb.svg’ saved [955/955] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 317 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sc.svg’ 211s 211s 0K 100% 263M=0s 211s 211s 2025-02-19 11:02:42 (263 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sc.svg’ saved [317/317] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 321 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sc.svg’ 211s 211s 0K 100% 324M=0s 211s 211s 2025-02-19 11:02:42 (324 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sc.svg’ saved [321/321] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 494 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sd.svg’ 211s 211s 0K 100% 387M=0s 211s 211s 2025-02-19 11:02:42 (387 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sd.svg’ saved [494/494] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sd.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 496 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sd.svg’ 211s 211s 0K 100% 432M=0s 211s 211s 2025-02-19 11:02:42 (432 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sd.svg’ saved [496/496] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/se.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 213 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/se.svg’ 211s 211s 0K 100% 181M=0s 211s 211s 2025-02-19 11:02:42 (181 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/se.svg’ saved [213/213] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/se.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 227 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/se.svg’ 211s 211s 0K 100% 185M=0s 211s 211s 2025-02-19 11:02:42 (185 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/se.svg’ saved [227/227] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 889 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sg.svg’ 211s 211s 0K 100% 747M=0s 211s 211s 2025-02-19 11:02:42 (747 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sg.svg’ saved [889/889] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 950 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sg.svg’ 211s 211s 0K 100% 856M=0s 211s 211s 2025-02-19 11:02:42 (856 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sg.svg’ saved [950/950] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 535 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sh.svg’ 211s 211s 0K 100% 486M=0s 211s 211s 2025-02-19 11:02:42 (486 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sh.svg’ saved [535/535] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sh.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 538 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sh.svg’ 211s 211s 0K 100% 504M=0s 211s 211s 2025-02-19 11:02:42 (504 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sh.svg’ saved [538/538] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/si.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2057 (2.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/si.svg’ 211s 211s 0K .. 100% 1.64G=0s 211s 211s 2025-02-19 11:02:42 (1.64 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/si.svg’ saved [2057/2057] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/si.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2073 (2.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/si.svg’ 211s 211s 0K .. 100% 1.84G=0s 211s 211s 2025-02-19 11:02:42 (1.84 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/si.svg’ saved [2073/2073] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 318 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sj.svg’ 211s 211s 0K 100% 287M=0s 211s 211s 2025-02-19 11:02:42 (287 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sj.svg’ saved [318/318] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 318 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sj.svg’ 211s 211s 0K 100% 294M=0s 211s 211s 2025-02-19 11:02:42 (294 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sj.svg’ saved [318/318] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1200 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sk.svg’ 211s 211s 0K . 100% 1.10G=0s 211s 211s 2025-02-19 11:02:42 (1.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sk.svg’ saved [1200/1200] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1175 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sk.svg’ 211s 211s 0K . 100% 1.05G=0s 211s 211s 2025-02-19 11:02:42 (1.05 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sk.svg’ saved [1175/1175] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 272 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sl.svg’ 211s 211s 0K 100% 220M=0s 211s 211s 2025-02-19 11:02:42 (220 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sl.svg’ saved [272/272] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 441 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sl.svg’ 211s 211s 0K 100% 432M=0s 211s 211s 2025-02-19 11:02:42 (432 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sl.svg’ saved [441/441] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15930 (16K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sm.svg’ 211s 211s 0K .......... ..... 100% 7.68G=0s 211s 211s 2025-02-19 11:02:42 (7.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sm.svg’ saved [15930/15930] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 15842 (15K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sm.svg’ 211s 211s 0K .......... ..... 100% 8.62G=0s 211s 211s 2025-02-19 11:02:42 (8.62 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sm.svg’ saved [15842/15842] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 421 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sn.svg’ 211s 211s 0K 100% 384M=0s 211s 211s 2025-02-19 11:02:42 (384 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sn.svg’ saved [421/421] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 411 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sn.svg’ 211s 211s 0K 100% 393M=0s 211s 211s 2025-02-19 11:02:42 (393 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sn.svg’ saved [411/411] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/so.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 494 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/so.svg’ 211s 211s 0K 100% 449M=0s 211s 211s 2025-02-19 11:02:42 (449 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/so.svg’ saved [494/494] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/so.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 500 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/so.svg’ 211s 211s 0K 100% 462M=0s 211s 211s 2025-02-19 11:02:42 (462 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/so.svg’ saved [500/500] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 312 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sr.svg’ 211s 211s 0K 100% 307M=0s 211s 211s 2025-02-19 11:02:42 (307 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sr.svg’ saved [312/312] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 317 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sr.svg’ 211s 211s 0K 100% 317M=0s 211s 211s 2025-02-19 11:02:42 (317 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sr.svg’ saved [317/317] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ss.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 383 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ss.svg’ 211s 211s 0K 100% 379M=0s 211s 211s 2025-02-19 11:02:42 (379 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ss.svg’ saved [383/383] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ss.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 394 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ss.svg’ 211s 211s 0K 100% 386M=0s 211s 211s 2025-02-19 11:02:42 (386 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ss.svg’ saved [394/394] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/st.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 940 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/st.svg’ 211s 211s 0K 100% 860M=0s 211s 211s 2025-02-19 11:02:42 (860 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/st.svg’ saved [940/940] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/st.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 944 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/st.svg’ 211s 211s 0K 100% 927M=0s 211s 211s 2025-02-19 11:02:42 (927 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/st.svg’ saved [944/944] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 83296 (81K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sv.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 61% 8.84G 0s 211s 50K .......... .......... .......... . 100% 715M=0s 211s 211s 2025-02-19 11:02:42 (1.61 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sv.svg’ saved [83296/83296] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 83780 (82K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sv.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 61% 9.77G 0s 211s 50K .......... .......... .......... . 100% 337M=0s 211s 211s 2025-02-19 11:02:42 (824 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sv.svg’ saved [83780/83780] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 13279 (13K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sx.svg’ 211s 211s 0K .......... .. 100% 7.45G=0s 211s 211s 2025-02-19 11:02:42 (7.45 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sx.svg’ saved [13279/13279] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sx.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 13080 (13K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sx.svg’ 211s 211s 0K .......... .. 100% 7.38G=0s 211s 211s 2025-02-19 11:02:42 (7.38 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sx.svg’ saved [13080/13080] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 306 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sy.svg’ 211s 211s 0K 100% 280M=0s 211s 211s 2025-02-19 11:02:42 (280 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sy.svg’ saved [306/306] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 327 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sy.svg’ 211s 211s 0K 100% 319M=0s 211s 211s 2025-02-19 11:02:42 (319 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sy.svg’ saved [327/327] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 4813 (4.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sz.svg’ 211s 211s 0K .... 100% 3.68G=0s 211s 211s 2025-02-19 11:02:42 (3.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sz.svg’ saved [4813/4813] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 4763 (4.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sz.svg’ 211s 211s 0K .... 100% 3.86G=0s 211s 211s 2025-02-19 11:02:42 (3.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sz.svg’ saved [4763/4763] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7157 (7.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tc.svg’ 211s 211s 0K ...... 100% 4.95G=0s 211s 211s 2025-02-19 11:02:42 (4.95 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tc.svg’ saved [7157/7157] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 7149 (7.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tc.svg’ 211s 211s 0K ...... 100% 5.01G=0s 211s 211s 2025-02-19 11:02:42 (5.01 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tc.svg’ saved [7149/7149] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/td.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 271 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/td.svg’ 211s 211s 0K 100% 256M=0s 211s 211s 2025-02-19 11:02:42 (256 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/td.svg’ saved [271/271] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/td.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 283 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/td.svg’ 211s 211s 0K 100% 286M=0s 211s 211s 2025-02-19 11:02:42 (286 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/td.svg’ saved [283/283] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1103 (1.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tf.svg’ 211s 211s 0K . 100% 972M=0s 211s 211s 2025-02-19 11:02:42 (972 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tf.svg’ saved [1103/1103] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1211 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tf.svg’ 211s 211s 0K . 100% 1.10G=0s 211s 211s 2025-02-19 11:02:42 (1.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tf.svg’ saved [1211/1211] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 725 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tg.svg’ 211s 211s 0K 100% 683M=0s 211s 211s 2025-02-19 11:02:42 (683 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tg.svg’ saved [725/725] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 736 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tg.svg’ 211s 211s 0K 100% 674M=0s 211s 211s 2025-02-19 11:02:42 (674 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tg.svg’ saved [736/736] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/th.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 284 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/th.svg’ 211s 211s 0K 100% 272M=0s 211s 211s 2025-02-19 11:02:42 (272 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/th.svg’ saved [284/284] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/th.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 285 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/th.svg’ 211s 211s 0K 100% 284M=0s 211s 211s 2025-02-19 11:02:42 (284 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/th.svg’ saved [285/285] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1857 (1.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tj.svg’ 211s 211s 0K . 100% 1.58G=0s 211s 211s 2025-02-19 11:02:42 (1.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tj.svg’ saved [1857/1857] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tj.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1814 (1.8K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tj.svg’ 211s 211s 0K . 100% 1.63G=0s 211s 211s 2025-02-19 11:02:42 (1.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tj.svg’ saved [1814/1814] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 782 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tk.svg’ 211s 211s 0K 100% 705M=0s 211s 211s 2025-02-19 11:02:42 (705 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tk.svg’ saved [782/782] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 772 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tk.svg’ 211s 211s 0K 100% 636M=0s 211s 211s 2025-02-19 11:02:42 (636 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tk.svg’ saved [772/772] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 600 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tl.svg’ 211s 211s 0K 100% 514M=0s 211s 211s 2025-02-19 11:02:42 (514 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tl.svg’ saved [600/600] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tl.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 579 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tl.svg’ 211s 211s 0K 100% 556M=0s 211s 211s 2025-02-19 11:02:42 (556 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tl.svg’ saved [579/579] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 38514 (38K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tm.svg’ 211s 211s 0K .......... .......... .......... ....... 100% 12.1G=0s 211s 211s 2025-02-19 11:02:42 (12.1 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tm.svg’ saved [38514/38514] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 38377 (37K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tm.svg’ 211s 211s 0K .......... .......... .......... ....... 100% 12.3G=0s 211s 211s 2025-02-19 11:02:42 (12.3 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tm.svg’ saved [38377/38377] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 345 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tn.svg’ 211s 211s 0K 100% 314M=0s 211s 211s 2025-02-19 11:02:42 (314 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tn.svg’ saved [345/345] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 340 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tn.svg’ 211s 211s 0K 100% 278M=0s 211s 211s 2025-02-19 11:02:42 (278 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tn.svg’ saved [340/340] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/to.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 352 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/to.svg’ 211s 211s 0K 100% 341M=0s 211s 211s 2025-02-19 11:02:42 (341 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/to.svg’ saved [352/352] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/to.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 358 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/to.svg’ 211s 211s 0K 100% 314M=0s 211s 211s 2025-02-19 11:02:42 (314 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/to.svg’ saved [358/358] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 550 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tr.svg’ 211s 211s 0K 100% 478M=0s 211s 211s 2025-02-19 11:02:42 (478 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tr.svg’ saved [550/550] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tr.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 571 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tr.svg’ 211s 211s 0K 100% 569M=0s 211s 211s 2025-02-19 11:02:42 (569 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tr.svg’ saved [571/571] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 312 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tt.svg’ 211s 211s 0K 100% 268M=0s 211s 211s 2025-02-19 11:02:42 (268 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tt.svg’ saved [312/312] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 317 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tt.svg’ 211s 211s 0K 100% 301M=0s 211s 211s 2025-02-19 11:02:42 (301 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tt.svg’ saved [317/317] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1427 (1.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tv.svg’ 211s 211s 0K . 100% 1.28G=0s 211s 211s 2025-02-19 11:02:42 (1.28 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tv.svg’ saved [1427/1427] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1342 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tv.svg’ 211s 211s 0K . 100% 1.15G=0s 211s 211s 2025-02-19 11:02:42 (1.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tv.svg’ saved [1342/1342] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2499 (2.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tw.svg’ 211s 211s 0K .. 100% 1.97G=0s 211s 211s 2025-02-19 11:02:42 (1.97 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tw.svg’ saved [2499/2499] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2506 (2.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tw.svg’ 211s 211s 0K .. 100% 1.79G=0s 211s 211s 2025-02-19 11:02:42 (1.79 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tw.svg’ saved [2506/2506] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 546 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tz.svg’ 211s 211s 0K 100% 463M=0s 211s 211s 2025-02-19 11:02:42 (463 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tz.svg’ saved [546/546] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 605 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tz.svg’ 211s 211s 0K 100% 517M=0s 211s 211s 2025-02-19 11:02:42 (517 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tz.svg’ saved [605/605] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ua.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 232 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ua.svg’ 211s 211s 0K 100% 208M=0s 211s 211s 2025-02-19 11:02:42 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ua.svg’ saved [232/232] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ua.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 232 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ua.svg’ 211s 211s 0K 100% 191M=0s 211s 211s 2025-02-19 11:02:42 (191 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ua.svg’ saved [232/232] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ug.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 3953 (3.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ug.svg’ 211s 211s 0K ... 100% 2.81G=0s 211s 211s 2025-02-19 11:02:42 (2.81 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ug.svg’ saved [3953/3953] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ug.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 4034 (3.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ug.svg’ 211s 211s 0K ... 100% 3.15G=0s 211s 211s 2025-02-19 11:02:42 (3.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ug.svg’ saved [4034/4034] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/um.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 651 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/um.svg’ 211s 211s 0K 100% 613M=0s 211s 211s 2025-02-19 11:02:42 (613 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/um.svg’ saved [651/651] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/um.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 653 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/um.svg’ 211s 211s 0K 100% 478M=0s 211s 211s 2025-02-19 11:02:42 (478 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/um.svg’ saved [653/653] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/us.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 651 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/us.svg’ 211s 211s 0K 100% 551M=0s 211s 211s 2025-02-19 11:02:42 (551 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/us.svg’ saved [651/651] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/us.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 653 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/us.svg’ 211s 211s 0K 100% 537M=0s 211s 211s 2025-02-19 11:02:42 (537 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/us.svg’ saved [653/653] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/uy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1726 (1.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uy.svg’ 211s 211s 0K . 100% 1.31G=0s 211s 211s 2025-02-19 11:02:42 (1.31 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uy.svg’ saved [1726/1726] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/uy.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1723 (1.7K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uy.svg’ 211s 211s 0K . 100% 1.39G=0s 211s 211s 2025-02-19 11:02:42 (1.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uy.svg’ saved [1723/1723] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/uz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1498 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uz.svg’ 211s 211s 0K . 100% 1.09G=0s 211s 211s 2025-02-19 11:02:42 (1.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uz.svg’ saved [1498/1498] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/uz.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1498 (1.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uz.svg’ 211s 211s 0K . 100% 1.22G=0s 211s 211s 2025-02-19 11:02:42 (1.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uz.svg’ saved [1498/1498] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/va.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 29482 (29K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/va.svg’ 211s 211s 0K .......... .......... ........ 100% 2.55G=0s 211s 211s 2025-02-19 11:02:42 (2.55 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/va.svg’ saved [29482/29482] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/va.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 29416 (29K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/va.svg’ 211s 211s 0K .......... .......... ........ 100% 10.6G=0s 211s 211s 2025-02-19 11:02:42 (10.6 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/va.svg’ saved [29416/29416] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 445 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vc.svg’ 211s 211s 0K 100% 357M=0s 211s 211s 2025-02-19 11:02:42 (357 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vc.svg’ saved [445/445] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vc.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 493 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vc.svg’ 211s 211s 0K 100% 454M=0s 211s 211s 2025-02-19 11:02:42 (454 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vc.svg’ saved [493/493] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ve.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1206 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ve.svg’ 211s 211s 0K . 100% 1016M=0s 211s 211s 2025-02-19 11:02:42 (1016 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ve.svg’ saved [1206/1206] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ve.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1226 (1.2K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ve.svg’ 211s 211s 0K . 100% 1016M=0s 211s 211s 2025-02-19 11:02:42 (1016 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ve.svg’ saved [1226/1226] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 10515 (10K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vg.svg’ 211s 211s 0K .......... 100% 5.96G=0s 211s 211s 2025-02-19 11:02:42 (5.96 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vg.svg’ saved [10515/10515] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 10492 (10K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vg.svg’ 211s 211s 0K .......... 100% 5.71G=0s 211s 211s 2025-02-19 11:02:42 (5.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vg.svg’ saved [10492/10492] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vi.svg 211s Connecting to localhost (localhost)|::1|:80... connected. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8754 (8.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vi.svg’ 211s 211s 0K ........ 100% 4.88G=0s 211s 211s 2025-02-19 11:02:42 (4.88 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vi.svg’ saved [8754/8754] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vi.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8708 (8.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vi.svg’ 211s 211s 0K ........ 100% 5.13G=0s 211s 211s 2025-02-19 11:02:42 (5.13 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vi.svg’ saved [8708/8708] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 491 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vn.svg’ 211s 211s 0K 100% 395M=0s 211s 211s 2025-02-19 11:02:42 (395 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vn.svg’ saved [491/491] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vn.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 500 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vn.svg’ 211s 211s 0K 100% 430M=0s 211s 211s 2025-02-19 11:02:42 (430 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vn.svg’ saved [500/500] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2136 (2.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vu.svg’ 211s 211s 0K .. 100% 1.58G=0s 211s 211s 2025-02-19 11:02:42 (1.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vu.svg’ saved [2136/2136] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 2141 (2.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vu.svg’ 211s 211s 0K .. 100% 1.68G=0s 211s 211s 2025-02-19 11:02:42 (1.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vu.svg’ saved [2141/2141] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/wf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/wf.svg’ 211s 211s 0K 100% 200M=0s 211s 211s 2025-02-19 11:02:42 (200 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/wf.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/wf.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/wf.svg’ 211s 211s 0K 100% 219M=0s 211s 211s 2025-02-19 11:02:42 (219 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/wf.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ws.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 687 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ws.svg’ 211s 211s 0K 100% 632M=0s 211s 211s 2025-02-19 11:02:42 (632 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ws.svg’ saved [687/687] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ws.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 699 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ws.svg’ 211s 211s 0K 100% 559M=0s 211s 211s 2025-02-19 11:02:42 (559 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ws.svg’ saved [699/699] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ye.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 272 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ye.svg’ 211s 211s 0K 100% 233M=0s 211s 211s 2025-02-19 11:02:42 (233 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ye.svg’ saved [272/272] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ye.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 272 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ye.svg’ 211s 211s 0K 100% 238M=0s 211s 211s 2025-02-19 11:02:42 (238 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ye.svg’ saved [272/272] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/yt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/yt.svg’ 211s 211s 0K 100% 187M=0s 211s 211s 2025-02-19 11:02:42 (187 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/yt.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/yt.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 231 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/yt.svg’ 211s 211s 0K 100% 193M=0s 211s 211s 2025-02-19 11:02:42 (193 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/yt.svg’ saved [231/231] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/za.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 869 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/za.svg’ 211s 211s 0K 100% 743M=0s 211s 211s 2025-02-19 11:02:42 (743 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/za.svg’ saved [869/869] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/za.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 888 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/za.svg’ 211s 211s 0K 100% 758M=0s 211s 211s 2025-02-19 11:02:42 (758 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/za.svg’ saved [888/888] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/zm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5505 (5.4K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zm.svg’ 211s 211s 0K ..... 100% 3.85G=0s 211s 211s 2025-02-19 11:02:42 (3.85 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zm.svg’ saved [5505/5505] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/zm.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 5421 (5.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zm.svg’ 211s 211s 0K ..... 100% 3.76G=0s 211s 211s 2025-02-19 11:02:42 (3.76 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zm.svg’ saved [5421/5421] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/zw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6789 (6.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zw.svg’ 211s 211s 0K ...... 100% 4.51G=0s 211s 211s 2025-02-19 11:02:42 (4.51 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zw.svg’ saved [6789/6789] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/zw.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 6768 (6.6K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zw.svg’ 211s 211s 0K ...... 100% 4.32G=0s 211s 211s 2025-02-19 11:02:42 (4.32 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zw.svg’ saved [6768/6768] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ac.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 156293 (153K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ac.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 32% 2.52G 0s 211s 50K .......... .......... .......... .......... .......... 65% 891M 0s 211s 100K .......... .......... .......... .......... .......... 98% 1.13G 0s 211s 150K .. 100% 4.90T=0s 211s 211s 2025-02-19 11:02:42 (1.26 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ac.svg’ saved [156293/156293] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ac.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 153600 (150K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ac.svg’ 211s 211s 0K .......... .......... .......... .......... .......... 33% 7.96G 0s 211s 50K .......... .......... .......... .......... .......... 66% 1.03G 0s 211s 100K .......... .......... .......... .......... ..........100% 1.21G 0s 211s 150K 100% 0.00 =0s 211s 211s 2025-02-19 11:02:42 (1.56 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ac.svg’ saved [153600/153600] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/arab.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 26365 (26K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/arab.svg’ 211s 211s 0K .......... .......... ..... 100% 7.72G=0s 211s 211s 2025-02-19 11:02:42 (7.72 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/arab.svg’ saved [26365/26365] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/arab.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 26490 (26K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/arab.svg’ 211s 211s 0K .......... .......... ..... 100% 9.83G=0s 211s 211s 2025-02-19 11:02:42 (9.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/arab.svg’ saved [26490/26490] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cefta.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 910 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cefta.svg’ 211s 211s 0K 100% 683M=0s 211s 211s 2025-02-19 11:02:42 (683 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cefta.svg’ saved [910/910] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cefta.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 908 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cefta.svg’ 211s 211s 0K 100% 731M=0s 211s 211s 2025-02-19 11:02:42 (731 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cefta.svg’ saved [908/908] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cp.svg’ 211s 211s 0K 100% 214M=0s 211s 211s 2025-02-19 11:02:42 (214 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cp.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cp.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 289 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cp.svg’ 211s 211s 0K 100% 228M=0s 211s 211s 2025-02-19 11:02:42 (228 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cp.svg’ saved [289/289] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 23180 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dg.svg’ 211s 211s 0K .......... .......... .. 100% 8.37G=0s 211s 211s 2025-02-19 11:02:42 (8.37 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dg.svg’ saved [23180/23180] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dg.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 22905 (22K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dg.svg’ 211s 211s 0K .......... .......... .. 100% 10.5G=0s 211s 211s 2025-02-19 11:02:42 (10.5 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dg.svg’ saved [22905/22905] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eac.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 14622 (14K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eac.svg’ 211s 211s 0K .......... .... 100% 6.41G=0s 211s 211s 2025-02-19 11:02:42 (6.41 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eac.svg’ saved [14622/14622] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eac.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 14631 (14K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eac.svg’ 211s 211s 0K .......... .... 100% 4.04G=0s 211s 211s 2025-02-19 11:02:42 (4.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eac.svg’ saved [14631/14631] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ct.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 255 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ct.svg’ 211s 211s 0K 100% 152M=0s 211s 211s 2025-02-19 11:02:42 (152 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ct.svg’ saved [255/255] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ct.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 254 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ct.svg’ 211s 211s 0K 100% 179M=0s 211s 211s 2025-02-19 11:02:42 (179 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ct.svg’ saved [254/254] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ga.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 28686 (28K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ga.svg’ 211s 211s 0K .......... .......... ........ 100% 7.35G=0s 211s 211s 2025-02-19 11:02:42 (7.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ga.svg’ saved [28686/28686] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ga.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 28814 (28K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ga.svg’ 211s 211s 0K .......... .......... ........ 100% 10.4G=0s 211s 211s 2025-02-19 11:02:42 (10.4 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ga.svg’ saved [28814/28814] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es-pv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 446 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-pv.svg’ 211s 211s 0K 100% 351M=0s 211s 211s 2025-02-19 11:02:42 (351 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-pv.svg’ saved [446/446] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es-pv.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 428 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-pv.svg’ 211s 211s 0K 100% 367M=0s 211s 211s 2025-02-19 11:02:42 (367 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-pv.svg’ saved [428/428] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1296 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eu.svg’ 211s 211s 0K . 100% 932M=0s 211s 211s 2025-02-19 11:02:42 (932 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eu.svg’ saved [1296/1296] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eu.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 1297 (1.3K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eu.svg’ 211s 211s 0K . 100% 1.01G=0s 211s 211s 2025-02-19 11:02:42 (1.01 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eu.svg’ saved [1297/1297] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-eng.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 239 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-eng.svg’ 211s 211s 0K 100% 193M=0s 211s 211s 2025-02-19 11:02:42 (193 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-eng.svg’ saved [239/239] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-eng.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 229 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-eng.svg’ 211s 211s 0K 100% 181M=0s 211s 211s 2025-02-19 11:02:42 (181 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-eng.svg’ saved [229/229] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-nir.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 23734 (23K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-nir.svg’ 211s 211s 0K .......... .......... ... 100% 9.04G=0s 211s 211s 2025-02-19 11:02:42 (9.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-nir.svg’ saved [23734/23734] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-nir.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 25259 (25K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-nir.svg’ 211s 211s 0K .......... .......... .... 100% 9.79G=0s 211s 211s 2025-02-19 11:02:42 (9.79 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-nir.svg’ saved [25259/25259] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-sct.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 228 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-sct.svg’ 211s 211s 0K 100% 197M=0s 211s 211s 2025-02-19 11:02:42 (197 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-sct.svg’ saved [228/228] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-sct.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 236 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-sct.svg’ 211s 211s 0K 100% 90.5M=0s 211s 211s 2025-02-19 11:02:42 (90.5 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-sct.svg’ saved [236/236] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-wls.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9178 (9.0K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-wls.svg’ 211s 211s 0K ........ 100% 4.87G=0s 211s 211s 2025-02-19 11:02:42 (4.87 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-wls.svg’ saved [9178/9178] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-wls.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9070 (8.9K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-wls.svg’ 211s 211s 0K ........ 100% 5.27G=0s 211s 211s 2025-02-19 11:02:42 (5.27 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-wls.svg’ saved [9070/9070] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ic.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 286 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ic.svg’ 211s 211s 0K 100% 233M=0s 211s 211s 2025-02-19 11:02:42 (233 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ic.svg’ saved [286/286] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ic.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 286 [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ic.svg’ 211s 211s 0K 100% 230M=0s 211s 211s 2025-02-19 11:02:42 (230 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ic.svg’ saved [286/286] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ta.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 30886 (30K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ta.svg’ 211s 211s 0K .......... .......... .......... 100% 10.6G=0s 211s 211s 2025-02-19 11:02:42 (10.6 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ta.svg’ saved [30886/30886] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ta.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 30646 (30K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ta.svg’ 211s 211s 0K .......... .......... ......... 100% 11.2G=0s 211s 211s 2025-02-19 11:02:42 (11.2 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ta.svg’ saved [30646/30646] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/un.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 20175 (20K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/un.svg’ 211s 211s 0K .......... ......... 100% 8.20G=0s 211s 211s 2025-02-19 11:02:42 (8.20 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/un.svg’ saved [20175/20175] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/un.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 20410 (20K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/un.svg’ 211s 211s 0K .......... ......... 100% 7.30G=0s 211s 211s 2025-02-19 11:02:42 (7.30 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/un.svg’ saved [20410/20410] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/xk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 9358 (9.1K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xk.svg’ 211s 211s 0K ......... 100% 5.84G=0s 211s 211s 2025-02-19 11:02:42 (5.84 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xk.svg’ saved [9358/9358] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/xk.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 8669 (8.5K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xk.svg’ 211s 211s 0K ........ 100% 5.56G=0s 211s 211s 2025-02-19 11:02:42 (5.56 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xk.svg’ saved [8669/8669] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/images/bullet_arrow_down.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 201 [image/png] 211s Saving to: ‘localhost/cacti/images/bullet_arrow_down.png’ 211s 211s 0K 100% 155M=0s 211s 211s 2025-02-19 11:02:42 (155 MB/s) - ‘localhost/cacti/images/bullet_arrow_down.png’ saved [201/201] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/images/bullet_arrow_up.png 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 201 [image/png] 211s Saving to: ‘localhost/cacti/images/bullet_arrow_up.png’ 211s 211s 0K 100% 155M=0s 211s 211s 2025-02-19 11:02:42 (155 MB/s) - ‘localhost/cacti/images/bullet_arrow_up.png’ saved [201/201] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/include/themes/modern/images/cacti_logo.svg 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 17040 (17K) [image/svg+xml] 211s Saving to: ‘localhost/cacti/include/themes/modern/images/cacti_logo.svg’ 211s 211s 0K .......... ...... 100% 7.37G=0s 211s 211s 2025-02-19 11:02:42 (7.37 GB/s) - ‘localhost/cacti/include/themes/modern/images/cacti_logo.svg’ saved [17040/17040] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/images/shadow_gray.gif 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 90 [image/gif] 211s Saving to: ‘localhost/cacti/images/shadow_gray.gif’ 211s 211s 0K 100% 67.2M=0s 211s 211s 2025-02-19 11:02:42 (67.2 MB/s) - ‘localhost/cacti/images/shadow_gray.gif’ saved [90/90] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/reports_admin.php?action=edit&tab=details 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/reports_admin.php?action=edit&tab=details’ 211s 211s 0K .......... .......... .......... .... 4.34G=0s 211s 211s 2025-02-19 11:02:42 (4.34 GB/s) - ‘localhost/cacti/reports_admin.php?action=edit&tab=details’ saved [35299] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/images/arrow.gif 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: 859 [image/gif] 211s Saving to: ‘localhost/cacti/images/arrow.gif’ 211s 211s 0K 100% 744M=0s 211s 211s 2025-02-19 11:02:42 (744 MB/s) - ‘localhost/cacti/images/arrow.gif’ saved [859/859] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/host.php?action=edit&id= 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/host.php?action=edit&id=’ 211s 211s 0K .......... .......... .......... .......... .......... 5.75G 211s 50K ........ 15.6T=0s 211s 211s 2025-02-19 11:02:42 (6.71 GB/s) - ‘localhost/cacti/host.php?action=edit&id=’ saved [59797] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/host.php?action=edit 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/host.php?action=edit’ 211s 211s 0K .......... .......... .......... .......... .......... 6.04G 211s 50K ........ 15.6T=0s 211s 211s 2025-02-19 11:02:42 (7.05 GB/s) - ‘localhost/cacti/host.php?action=edit’ saved [59797] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/sites.php?action=edit 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/sites.php?action=edit’ 211s 211s 0K .......... .......... .......... ..... 5.90G=0s 211s 211s 2025-02-19 11:02:42 (5.90 GB/s) - ‘localhost/cacti/sites.php?action=edit’ saved [36552] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/sites.php?action=edit&id=2 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/sites.php?action=edit&id=2’ 211s 211s 0K .......... .......... .......... ..... 5.08G=0s 211s 211s 2025-02-19 11:02:42 (5.08 GB/s) - ‘localhost/cacti/sites.php?action=edit&id=2’ saved [36571] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/host.php?reset=1&site_id=2 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/host.php?reset=1&site_id=2’ 211s 211s 0K .......... .......... .......... ...... 5.29G=0s 211s 211s 2025-02-19 11:02:42 (5.29 GB/s) - ‘localhost/cacti/host.php?reset=1&site_id=2’ saved [37040] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/sites.php?action=edit&id=1 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/sites.php?action=edit&id=1’ 211s 211s 0K .......... .......... .......... ..... 4.43G=0s 211s 211s 2025-02-19 11:02:42 (4.43 GB/s) - ‘localhost/cacti/sites.php?action=edit&id=1’ saved [36571] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/host.php?reset=1&site_id=1 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/host.php?reset=1&site_id=1’ 211s 211s 0K .......... .......... .......... ...... 3.60G=0s 211s 211s 2025-02-19 11:02:42 (3.60 GB/s) - ‘localhost/cacti/host.php?reset=1&site_id=1’ saved [37040] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/tree.php?action=edit 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/tree.php?action=edit’ 211s 211s 0K .......... .......... ....... 3.76G=0s 211s 211s 2025-02-19 11:02:42 (3.76 GB/s) - ‘localhost/cacti/tree.php?action=edit’ saved [27777] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/tree.php?action=sortasc 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 302 Found 211s Location: tree.php?header=false [following] 211s --2025-02-19 11:02:42-- http://localhost/cacti/tree.php?header=false 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/tree.php?action=sortasc’ 211s 211s 0K .......... ... 2.96G=0s 211s 211s 2025-02-19 11:02:42 (2.96 GB/s) - ‘localhost/cacti/tree.php?action=sortasc’ saved [14238] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/tree.php?action=sortdesc 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 302 Found 211s Location: tree.php?header=false [following] 211s --2025-02-19 11:02:42-- http://localhost/cacti/tree.php?header=false 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/tree.php?action=sortdesc’ 211s 211s 0K .......... ... 2.94G=0s 211s 211s 2025-02-19 11:02:42 (2.94 GB/s) - ‘localhost/cacti/tree.php?action=sortdesc’ saved [14238] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/tree.php?action=edit&id=1 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/tree.php?action=edit&id=1’ 211s 211s 0K .......... .......... .......... .......... .......... 4.47G 211s 50K .... 8.21T=0s 211s 211s 2025-02-19 11:02:42 (4.86 GB/s) - ‘localhost/cacti/tree.php?action=edit&id=1’ saved [55713] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/pollers.php?action=edit&id=1 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/pollers.php?action=edit&id=1’ 211s 211s 0K .......... .......... .......... . 4.81G=0s 211s 211s 2025-02-19 11:02:42 (4.81 GB/s) - ‘localhost/cacti/pollers.php?action=edit&id=1’ saved [32638] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit’ 211s 211s 0K .......... .......... ......... 6.41G=0s 211s 211s 2025-02-19 11:02:42 (6.41 GB/s) - ‘localhost/cacti/data_queries.php?action=edit’ saved [29904] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=2 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=2’ 211s 211s 0K .......... .......... .......... 5.27G=0s 211s 211s 2025-02-19 11:02:42 (5.27 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=2’ saved [31647] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=3 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=3’ 211s 211s 0K .......... .......... .......... . 5.90G=0s 211s 211s 2025-02-19 11:02:42 (5.90 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=3’ saved [32200] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=4 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=4’ 211s 211s 0K .......... .......... .......... 5.58G=0s 211s 211s 2025-02-19 11:02:42 (5.58 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=4’ saved [31624] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=1 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=1’ 211s 211s 0K .......... .......... .......... 4.57G=0s 211s 211s 2025-02-19 11:02:42 (4.57 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=1’ saved [31602] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=8 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=8’ 211s 211s 0K .......... .......... .......... . 3.88G=0s 211s 211s 2025-02-19 11:02:42 (3.88 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=8’ saved [32190] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=7 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=7’ 211s 211s 0K .......... .......... .......... . 4.07G=0s 211s 211s 2025-02-19 11:02:42 (4.07 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=7’ saved [32165] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=6 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=6’ 211s 211s 0K .......... .......... .......... 4.78G=0s 211s 211s 2025-02-19 11:02:42 (4.78 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=6’ saved [31640] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=5 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=5’ 211s 211s 0K .......... .......... .......... 5.64G=0s 211s 211s 2025-02-19 11:02:42 (5.64 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=5’ saved [31658] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=9 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=9’ 211s 211s 0K .......... .......... .......... . 6.02G=0s 211s 211s 2025-02-19 11:02:42 (6.02 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=9’ saved [32761] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=10 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=10’ 211s 211s 0K .......... .......... .......... ... 5.97G=0s 211s 211s 2025-02-19 11:02:42 (5.97 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=10’ saved [33857] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=11 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=11’ 211s 211s 0K .......... .......... .......... 6.76G=0s 211s 211s 2025-02-19 11:02:42 (6.76 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=11’ saved [31693] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=12 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=12’ 211s 211s 0K .......... .......... .......... .... 6.92G=0s 211s 211s 2025-02-19 11:02:42 (6.92 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=12’ saved [35000] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=22 211s Reusing existing connection to [localhost]:80. 211s HTTP request sent, awaiting response... 200 OK 211s Length: unspecified [text/html] 211s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=22’ 211s 211s 0K .......... .......... .......... . 6.04G=0s 211s 211s 2025-02-19 11:02:42 (6.04 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=22’ saved [32299] 211s 211s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=21 211s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=21’ 212s 212s 0K .......... .......... .......... 6.00G=0s 212s 212s 2025-02-19 11:02:42 (6.00 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=21’ saved [31672] 212s 212s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=15 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=15’ 212s 212s 0K .......... .......... .......... 5.10G=0s 212s 212s 2025-02-19 11:02:42 (5.10 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=15’ saved [31679] 212s 212s --2025-02-19 11:02:42-- http://localhost/cacti/data_queries.php?action=edit&id=16 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=16’ 212s 212s 0K .......... .......... .......... 4.79G=0s 212s 212s 2025-02-19 11:02:43 (4.79 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=16’ saved [31719] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=14 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=14’ 212s 212s 0K .......... .......... .......... 3.72G=0s 212s 212s 2025-02-19 11:02:43 (3.72 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=14’ saved [31688] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=17 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=17’ 212s 212s 0K .......... .......... .......... 3.70G=0s 212s 212s 2025-02-19 11:02:43 (3.70 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=17’ saved [31677] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=19 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=19’ 212s 212s 0K .......... .......... .......... 4.23G=0s 212s 212s 2025-02-19 11:02:43 (4.23 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=19’ saved [31724] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=18 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=18’ 212s 212s 0K .......... .......... .......... 4.06G=0s 212s 212s 2025-02-19 11:02:43 (4.06 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=18’ saved [31729] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=20 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=20’ 212s 212s 0K .......... .......... .......... 4.22G=0s 212s 212s 2025-02-19 11:02:43 (4.22 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=20’ saved [31723] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=24 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=24’ 212s 212s 0K .......... .......... .......... ... 4.10G=0s 212s 212s 2025-02-19 11:02:43 (4.10 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=24’ saved [33970] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=23 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=23’ 212s 212s 0K .......... .......... .......... ... 3.30G=0s 212s 212s 2025-02-19 11:02:43 (3.30 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=23’ saved [34294] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=25 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=25’ 212s 212s 0K .......... .......... .......... .. 3.40G=0s 212s 212s 2025-02-19 11:02:43 (3.40 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=25’ saved [33286] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=27 212s Connecting to localhost (localhost)|::1|:80... connected. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=27’ 212s 212s 0K .......... .......... .......... . 2.89G=0s 212s 212s 2025-02-19 11:02:43 (2.89 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=27’ saved [32193] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=26 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=26’ 212s 212s 0K .......... .......... .......... .. 2.10G=0s 212s 212s 2025-02-19 11:02:43 (2.10 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=26’ saved [33244] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=28 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=28’ 212s 212s 0K .......... .......... .......... . 3.83G=0s 212s 212s 2025-02-19 11:02:43 (3.83 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=28’ saved [32163] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=29 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=29’ 212s 212s 0K .......... .......... .......... 4.40G=0s 212s 212s 2025-02-19 11:02:43 (4.40 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=29’ saved [31603] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=37 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=37’ 212s 212s 0K .......... .......... .......... 2.90G=0s 212s 212s 2025-02-19 11:02:43 (2.90 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=37’ saved [31696] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_queries.php?action=edit&id=38 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=38’ 212s 212s 0K .......... .......... .......... 4.43G=0s 212s 212s 2025-02-19 11:02:43 (4.43 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=38’ saved [31687] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit’ 212s 212s 0K .......... .......... ........ 3.23G=0s 212s 212s 2025-02-19 11:02:43 (3.23 GB/s) - ‘localhost/cacti/data_input.php?action=edit’ saved [28911] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=15 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=15’ 212s 212s 0K .......... .......... .......... 4.92G=0s 212s 212s 2025-02-19 11:02:43 (4.92 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=15’ saved [31418] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=17 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=17’ 212s 212s 0K .......... .......... .......... .... 3.09G=0s 212s 212s 2025-02-19 11:02:43 (3.09 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=17’ saved [35551] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=13 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=13’ 212s 212s 0K .......... .......... .......... 3.65G=0s 212s 212s 2025-02-19 11:02:43 (3.65 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=13’ saved [31410] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=14 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=14’ 212s 212s 0K .......... .......... .......... 3.92G=0s 212s 212s 2025-02-19 11:02:43 (3.92 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=14’ saved [31420] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=16 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=16’ 212s 212s 0K .......... .......... .......... . 3.72G=0s 212s 212s 2025-02-19 11:02:43 (3.72 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=16’ saved [31871] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=18 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=18’ 212s 212s 0K .......... .......... .......... 3.39G=0s 212s 212s 2025-02-19 11:02:43 (3.39 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=18’ saved [31341] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=19 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=19’ 212s 212s 0K .......... .......... .......... 4.12G=0s 212s 212s 2025-02-19 11:02:43 (4.12 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=19’ saved [31357] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=23 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=23’ 212s 212s 0K .......... .......... .......... 3.78G=0s 212s 212s 2025-02-19 11:02:43 (3.78 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=23’ saved [31411] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=33 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=33’ 212s 212s 0K .......... .......... .......... 3.35G=0s 212s 212s 2025-02-19 11:02:43 (3.35 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=33’ saved [31019] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=26 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=26’ 212s 212s 0K .......... .......... .......... 3.99G=0s 212s 212s 2025-02-19 11:02:43 (3.99 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=26’ saved [30980] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=34 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=34’ 212s 212s 0K .......... .......... .......... 4.25G=0s 212s 212s 2025-02-19 11:02:43 (4.25 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=34’ saved [30993] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=35 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=35’ 212s 212s 0K .......... .......... .......... 3.91G=0s 212s 212s 2025-02-19 11:02:43 (3.91 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=35’ saved [31001] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=36 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=36’ 212s 212s 0K .......... .......... .......... .. 3.67G=0s 212s 212s 2025-02-19 11:02:43 (3.67 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=36’ saved [33460] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=29 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=29’ 212s 212s 0K .......... .......... .......... 4.09G=0s 212s 212s 2025-02-19 11:02:43 (4.09 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=29’ saved [30990] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=28 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=28’ 212s 212s 0K .......... .......... .......... 4.16G=0s 212s 212s 2025-02-19 11:02:43 (4.16 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=28’ saved [30997] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=24 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=24’ 212s 212s 0K .......... .......... .......... . 4.18G=0s 212s 212s 2025-02-19 11:02:43 (4.18 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=24’ saved [31851] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=22 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=22’ 212s 212s 0K .......... .......... .......... .. 4.47G=0s 212s 212s 2025-02-19 11:02:43 (4.47 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=22’ saved [33698] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=25 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=25’ 212s 212s 0K .......... .......... .......... 4.96G=0s 212s 212s 2025-02-19 11:02:43 (4.96 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=25’ saved [31438] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=31 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=31’ 212s 212s 0K .......... .......... .......... 5.50G=0s 212s 212s 2025-02-19 11:02:43 (5.50 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=31’ saved [30985] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=30 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=30’ 212s 212s 0K .......... .......... .......... ... 4.44G=0s 212s 212s 2025-02-19 11:02:43 (4.44 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=30’ saved [33796] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=32 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=32’ 212s 212s 0K .......... .......... .......... 6.17G=0s 212s 212s 2025-02-19 11:02:43 (6.17 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=32’ saved [30989] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=27 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=27’ 212s 212s 0K .......... .......... .......... ... 4.52G=0s 212s 212s 2025-02-19 11:02:43 (4.52 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=27’ saved [33871] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=20 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=20’ 212s 212s 0K .......... .......... .......... 4.40G=0s 212s 212s 2025-02-19 11:02:43 (4.40 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=20’ saved [31388] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=21 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=21’ 212s 212s 0K .......... .......... .......... 3.38G=0s 212s 212s 2025-02-19 11:02:43 (3.38 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=21’ saved [31364] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=38 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=38’ 212s 212s 0K .......... .......... .......... 5.23G=0s 212s 212s 2025-02-19 11:02:43 (5.23 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=38’ saved [31360] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=37 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=37’ 212s 212s 0K .......... .......... .......... .. 4.34G=0s 212s 212s 2025-02-19 11:02:43 (4.34 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=37’ saved [33064] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=41 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=41’ 212s 212s 0K .......... .......... .......... .. 4.54G=0s 212s 212s 2025-02-19 11:02:43 (4.54 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=41’ saved [33121] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=40 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=40’ 212s 212s 0K .......... .......... .......... . 5.05G=0s 212s 212s 2025-02-19 11:02:43 (5.05 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=40’ saved [31788] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=39 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=39’ 212s 212s 0K .......... .......... .......... .. 4.36G=0s 212s 212s 2025-02-19 11:02:43 (4.36 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=39’ saved [33180] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/data_input.php?action=edit&id=6 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=6’ 212s 212s 0K .......... .......... .......... 4.25G=0s 212s 212s 2025-02-19 11:02:43 (4.25 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=6’ saved [31336] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/host_templates.php?action=edit 212s Reusing existing connection to [localhost]:80. 212s HTTP request sent, awaiting response... 200 OK 212s Length: unspecified [text/html] 212s Saving to: ‘localhost/cacti/host_templates.php?action=edit’ 212s 212s 0K .......... .......... ......... 3.95G=0s 212s 212s 2025-02-19 11:02:43 (3.95 GB/s) - ‘localhost/cacti/host_templates.php?action=edit’ saved [30222] 212s 212s --2025-02-19 11:02:43-- http://localhost/cacti/host_templates.php?action=edit&id=1 212s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=1’ 213s 213s 0K .......... .......... .......... .......... ....... 2.87G=0s 213s 213s 2025-02-19 11:02:43 (2.87 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=1’ saved [48561] 213s 213s --2025-02-19 11:02:43-- http://localhost/cacti/host.php?reset=true&host_template_id=1 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=1’ 213s 213s 0K .......... .......... .......... ...... 4.24G=0s 213s 213s 2025-02-19 11:02:44 (4.24 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=1’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=2 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=2’ 213s 213s 0K .......... .......... .......... .......... .... 6.17G=0s 213s 213s 2025-02-19 11:02:44 (6.17 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=2’ saved [45784] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=2 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=2’ 213s 213s 0K .......... .......... .......... ...... 5.02G=0s 213s 213s 2025-02-19 11:02:44 (5.02 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=2’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=5 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=5’ 213s 213s 0K .......... .......... .......... .......... ..... 5.12G=0s 213s 213s 2025-02-19 11:02:44 (5.12 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=5’ saved [46653] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=5 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=5’ 213s 213s 0K .......... .......... .......... ...... 4.44G=0s 213s 213s 2025-02-19 11:02:44 (4.44 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=5’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=3 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=3’ 213s 213s 0K .......... .......... .......... .......... ...... 5.63G=0s 213s 213s 2025-02-19 11:02:44 (5.63 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=3’ saved [47779] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=3 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=3’ 213s 213s 0K .......... .......... .......... ...... 4.29G=0s 213s 213s 2025-02-19 11:02:44 (4.29 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=3’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=4 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=4’ 213s 213s 0K .......... .......... .......... .......... ..... 5.17G=0s 213s 213s 2025-02-19 11:02:44 (5.17 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=4’ saved [46607] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=4 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=4’ 213s 213s 0K .......... .......... .......... ...... 4.22G=0s 213s 213s 2025-02-19 11:02:44 (4.22 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=4’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=7 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=7’ 213s 213s 0K .......... .......... .......... .......... .... 4.22G=0s 213s 213s 2025-02-19 11:02:44 (4.22 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=7’ saved [46034] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=7 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=7’ 213s 213s 0K .......... .......... .......... ...... 5.14G=0s 213s 213s 2025-02-19 11:02:44 (5.14 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=7’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=8 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=8’ 213s 213s 0K .......... .......... .......... .......... ..... 6.40G=0s 213s 213s 2025-02-19 11:02:44 (6.40 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=8’ saved [46090] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=8 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=8’ 213s 213s 0K .......... .......... .......... ...... 5.47G=0s 213s 213s 2025-02-19 11:02:44 (5.47 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=8’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=9 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=9’ 213s 213s 0K .......... .......... .......... .......... ..... 6.47G=0s 213s 213s 2025-02-19 11:02:44 (6.47 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=9’ saved [46615] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=9 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=9’ 213s 213s 0K .......... .......... .......... ...... 6.50G=0s 213s 213s 2025-02-19 11:02:44 (6.50 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=9’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=6 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=6’ 213s 213s 0K .......... .......... .......... .......... .... 2.52G=0s 213s 213s 2025-02-19 11:02:44 (2.52 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=6’ saved [45730] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=6 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=6’ 213s 213s 0K .......... .......... .......... ...... 6.54G=0s 213s 213s 2025-02-19 11:02:44 (6.54 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=6’ saved [37054] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=10 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=10’ 213s 213s 0K .......... .......... .......... .......... ...... 7.01G=0s 213s 213s 2025-02-19 11:02:44 (7.01 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=10’ saved [47176] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=10 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=10’ 213s 213s 0K .......... .......... .......... ...... 6.93G=0s 213s 213s 2025-02-19 11:02:44 (6.93 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=10’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=11 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=11’ 213s 213s 0K .......... .......... .......... .......... .......... 7.36G 213s 50K 1.18T=0s 213s 213s 2025-02-19 11:02:44 (7.45 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=11’ saved [51848] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=11 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=11’ 213s 213s 0K .......... .......... .......... ...... 7.60G=0s 213s 213s 2025-02-19 11:02:44 (7.60 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=11’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=12 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=12’ 213s 213s 0K .......... .......... .......... .......... ..... 5.61G=0s 213s 213s 2025-02-19 11:02:44 (5.61 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=12’ saved [46312] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=12 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=12’ 213s 213s 0K .......... .......... .......... ...... 4.70G=0s 213s 213s 2025-02-19 11:02:44 (4.70 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=12’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=13 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=13’ 213s 213s 0K .......... .......... .......... .......... .......... 3.43G 213s 50K . 2.26T=0s 213s 213s 2025-02-19 11:02:44 (3.51 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=13’ saved [52443] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=13 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=13’ 213s 213s 0K .......... .......... .......... ...... 4.56G=0s 213s 213s 2025-02-19 11:02:44 (4.56 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=13’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=14 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=14’ 213s 213s 0K .......... .......... .......... .......... ..... 3.25G=0s 213s 213s 2025-02-19 11:02:44 (3.25 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=14’ saved [46621] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=14 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=14’ 213s 213s 0K .......... .......... .......... ...... 1.93G=0s 213s 213s 2025-02-19 11:02:44 (1.93 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=14’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=15 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=15’ 213s 213s 0K .......... .......... .......... .......... ...... 6.87G=0s 213s 213s 2025-02-19 11:02:44 (6.87 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=15’ saved [47472] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=15 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=15’ 213s 213s 0K .......... .......... .......... ...... 5.47G=0s 213s 213s 2025-02-19 11:02:44 (5.47 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=15’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=16 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=16’ 213s 213s 0K .......... .......... .......... .......... ...... 6.34G=0s 213s 213s 2025-02-19 11:02:44 (6.34 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=16’ saved [47468] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=16 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=16’ 213s 213s 0K .......... .......... .......... ...... 5.72G=0s 213s 213s 2025-02-19 11:02:44 (5.72 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=16’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=17 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=17’ 213s 213s 0K .......... .......... .......... .......... .... 4.94G=0s 213s 213s 2025-02-19 11:02:44 (4.94 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=17’ saved [46030] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=17 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=17’ 213s 213s 0K .......... .......... .......... ...... 4.88G=0s 213s 213s 2025-02-19 11:02:44 (4.88 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=17’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=18 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=18’ 213s 213s 0K .......... .......... .......... .......... ..... 5.13G=0s 213s 213s 2025-02-19 11:02:44 (5.13 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=18’ saved [46883] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=18 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=18’ 213s 213s 0K .......... .......... .......... ...... 4.46G=0s 213s 213s 2025-02-19 11:02:44 (4.46 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=18’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=19 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=19’ 213s 213s 0K .......... .......... .......... .......... .... 4.86G=0s 213s 213s 2025-02-19 11:02:44 (4.86 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=19’ saved [46030] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=19 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=19’ 213s 213s 0K .......... .......... .......... ...... 4.20G=0s 213s 213s 2025-02-19 11:02:44 (4.20 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=19’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=20 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=20’ 213s 213s 0K .......... .......... .......... .......... .......... 3.19G 213s 50K ... 5.98T=0s 213s 213s 2025-02-19 11:02:44 (3.39 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=20’ saved [54490] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=20 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=20’ 213s 213s 0K .......... .......... .......... ...... 4.82G=0s 213s 213s 2025-02-19 11:02:44 (4.82 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=20’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=21 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=21’ 213s 213s 0K .......... .......... .......... .......... .... 4.97G=0s 213s 213s 2025-02-19 11:02:44 (4.97 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=21’ saved [45751] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=21 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=21’ 213s 213s 0K .......... .......... .......... ...... 4.71G=0s 213s 213s 2025-02-19 11:02:44 (4.71 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=21’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=22 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=22’ 213s 213s 0K .......... .......... .......... .......... ..... 4.58G=0s 213s 213s 2025-02-19 11:02:44 (4.58 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=22’ saved [46374] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=22 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=22’ 213s 213s 0K .......... .......... .......... ...... 4.29G=0s 213s 213s 2025-02-19 11:02:44 (4.29 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=22’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=23 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=23’ 213s 213s 0K .......... .......... .......... .......... ........ 4.43G=0s 213s 213s 2025-02-19 11:02:44 (4.43 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=23’ saved [50091] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=23 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=23’ 213s 213s 0K .......... .......... .......... ...... 4.24G=0s 213s 213s 2025-02-19 11:02:44 (4.24 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=23’ saved [37055] 213s 213s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=24 213s Reusing existing connection to [localhost]:80. 213s HTTP request sent, awaiting response... 200 OK 213s Length: unspecified [text/html] 213s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=24’ 213s 213s 0K .......... .......... .......... .......... .... 4.13G=0s 213s 214s 2025-02-19 11:02:44 (4.13 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=24’ saved [45731] 214s 214s --2025-02-19 11:02:44-- http://localhost/cacti/host.php?reset=true&host_template_id=24 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=24’ 214s 214s 0K .......... .......... .......... ...... 3.75G=0s 214s 214s 2025-02-19 11:02:44 (3.75 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=24’ saved [37055] 214s 214s --2025-02-19 11:02:44-- http://localhost/cacti/host_templates.php?action=edit&id=25 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=25’ 214s 214s 0K .......... .......... .......... .......... ..... 4.14G=0s 214s 214s 2025-02-19 11:02:45 (4.14 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=25’ saved [46304] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/host.php?reset=true&host_template_id=25 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=25’ 214s 214s 0K .......... .......... .......... ...... 5.94G=0s 214s 214s 2025-02-19 11:02:45 (5.94 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=25’ saved [37055] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/host_templates.php?action=edit&id=26 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=26’ 214s 214s 0K .......... .......... .......... .......... .......... 5.83G 214s 50K 102G=0s 214s 214s 2025-02-19 11:02:45 (5.84 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=26’ saved [51255] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/host.php?reset=true&host_template_id=26 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=26’ 214s 214s 0K .......... .......... .......... ...... 3.29G=0s 214s 214s 2025-02-19 11:02:45 (3.29 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=26’ saved [37055] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/host_templates.php?action=edit&id=27 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=27’ 214s 214s 0K .......... .......... .......... .......... ..... 4.32G=0s 214s 214s 2025-02-19 11:02:45 (4.32 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=27’ saved [46601] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/host.php?reset=true&host_template_id=27 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=27’ 214s 214s 0K .......... .......... .......... ...... 4.23G=0s 214s 214s 2025-02-19 11:02:45 (4.23 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=27’ saved [37055] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit’ 214s 214s 0K .......... .......... .......... .......... .......... 2.56G 214s 50K .......... .......... . 78.1M=0s 214s 214s 2025-02-19 11:02:45 (242 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit’ saved [73318] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=2 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=2’ 214s 214s 0K .......... .......... .......... .......... .......... 4.68G 214s 50K .......... .......... .......... .. 101M=0s 214s 214s 2025-02-19 11:02:45 (247 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=2’ saved [84521] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=9 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=9’ 214s 214s 0K .......... .......... .......... .......... .......... 3.92G 214s 50K .......... .......... ...... 513M=0s 214s 214s 2025-02-19 11:02:45 (1.17 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=9’ saved [78330] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=6 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=6’ 214s 214s 0K .......... .......... .......... .......... .......... 4.40G 214s 50K .......... .......... ........ 200M=0s 214s 214s 2025-02-19 11:02:45 (516 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=6’ saved [80002] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=8 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=8’ 214s 214s 0K .......... .......... .......... .......... .......... 4.56G 214s 50K .......... .......... ........ 139M=0s 214s 214s 2025-02-19 11:02:45 (366 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=8’ saved [79973] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=5 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=5’ 214s 214s 0K .......... .......... .......... .......... .......... 4.92G 214s 50K .......... .......... .......... .. 720M=0s 214s 214s 2025-02-19 11:02:45 (1.46 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=5’ saved [84603] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=3 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=3’ 214s 214s 0K .......... .......... .......... .......... .......... 3.79G 214s 50K .......... .......... .......... .......... . 951M=0s 214s 214s 2025-02-19 11:02:45 (1.58 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=3’ saved [93830] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=7 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=7’ 214s 214s 0K .......... .......... .......... .......... .......... 2.07G 214s 50K .......... .......... .......... .. 38.7M=0.001s 214s 214s 2025-02-19 11:02:45 (95.0 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=7’ saved [84779] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=4 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=4’ 214s 214s 0K .......... .......... .......... .......... .......... 5.13G 214s 50K .......... .......... ........ 52.6M=0.001s 214s 214s 2025-02-19 11:02:45 (143 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=4’ saved [80019] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=1 214s Connecting to localhost (localhost)|::1|:80... connected. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=1’ 214s 214s 0K .......... .......... .......... .......... .......... 4.17G 214s 50K .......... .......... ........ 404M=0s 214s 214s 2025-02-19 11:02:45 (961 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=1’ saved [80016] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=14 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=14’ 214s 214s 0K .......... .......... .......... .......... .......... 4.07G 214s 50K .......... .......... .......... 58.2M=0.001s 214s 214s 2025-02-19 11:02:45 (150 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=14’ saved [82366] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=15 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=15’ 214s 214s 0K .......... .......... .......... .......... .......... 4.16G 214s 50K .......... .......... .......... 43.7M=0.001s 214s 214s 2025-02-19 11:02:45 (114 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=15’ saved [82233] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=12 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=12’ 214s 214s 0K .......... .......... .......... .......... .......... 4.08G 214s 50K .......... .......... .......... ......... 80.5M=0s 214s 214s 2025-02-19 11:02:45 (178 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=12’ saved [91867] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=13 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=13’ 214s 214s 0K .......... .......... .......... .......... .......... 2.58G 214s 50K .......... .......... .......... 126M=0s 214s 214s 2025-02-19 11:02:45 (311 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=13’ saved [82235] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=11 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=11’ 214s 214s 0K .......... .......... .......... .......... .......... 4.85G 214s 50K .......... .......... .......... ......... 493M=0s 214s 214s 2025-02-19 11:02:45 (991 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=11’ saved [91807] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=10 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=10’ 214s 214s 0K .......... .......... .......... .......... .......... 3.26G 214s 50K .......... .......... .......... ......... 85.7M=0s 214s 214s 2025-02-19 11:02:45 (188 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=10’ saved [91848] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=49 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=49’ 214s 214s 0K .......... .......... .......... .......... .......... 3.86G 214s 50K .......... .......... ........ 46.6M=0.001s 214s 214s 2025-02-19 11:02:45 (126 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=49’ saved [80223] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=50 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=50’ 214s 214s 0K .......... .......... .......... .......... .......... 4.38G 214s 50K .......... .......... .......... ...... 196M=0s 214s 214s 2025-02-19 11:02:45 (437 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=50’ saved [88852] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=52 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=52’ 214s 214s 0K .......... .......... .......... .......... .......... 3.58G 214s 50K .......... .......... .......... .......... ... 70.4M=0.001s 214s 214s 2025-02-19 11:02:45 (148 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=52’ saved [95991] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=51 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=51’ 214s 214s 0K .......... .......... .......... .......... .......... 2.94G 214s 50K .......... .......... .......... .......... .......... 159M 214s 100K .......... ....... 33.2T=0s 214s 214s 2025-02-19 11:02:45 (356 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=51’ saved [120673] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=48 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=48’ 214s 214s 0K .......... .......... .......... .......... .......... 1.93G 214s 50K .......... .......... ........ 52.2M=0.001s 214s 214s 2025-02-19 11:02:45 (138 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=48’ saved [80123] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=46 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=46’ 214s 214s 0K .......... .......... .......... .......... .......... 4.90G 214s 50K .......... .......... .......... .......... . 41.5M=0.001s 214s 214s 2025-02-19 11:02:45 (90.8 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=46’ saved [93453] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=47 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=47’ 214s 214s 0K .......... .......... .......... .......... .......... 4.84G 214s 50K .......... .......... ......... 48.3M=0.001s 214s 214s 2025-02-19 11:02:45 (128 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=47’ saved [81399] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=16 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=16’ 214s 214s 0K .......... .......... .......... .......... .......... 4.34G 214s 50K .......... .......... .......... 80.4M=0s 214s 214s 2025-02-19 11:02:45 (207 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=16’ saved [82192] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=26 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=26’ 214s 214s 0K .......... .......... .......... .......... .......... 4.23G 214s 50K .......... .......... .......... .... 108M=0s 214s 214s 2025-02-19 11:02:45 (255 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=26’ saved [86673] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=25 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=25’ 214s 214s 0K .......... .......... .......... .......... .......... 4.14G 214s 50K .......... .......... .......... .... 84.8M=0s 214s 214s 2025-02-19 11:02:45 (201 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=25’ saved [86813] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=27 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=27’ 214s 214s 0K .......... .......... .......... .......... .......... 4.36G 214s 50K .......... .......... .......... .... 642M=0s 214s 214s 2025-02-19 11:02:45 (1.27 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=27’ saved [86674] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=18 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=18’ 214s 214s 0K .......... .......... .......... .......... .......... 3.15G 214s 50K .......... .......... .......... 54.4M=0.001s 214s 214s 2025-02-19 11:02:45 (140 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=18’ saved [82335] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=19 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=19’ 214s 214s 0K .......... .......... .......... .......... .......... 4.65G 214s 50K .......... .......... .......... 70.8M=0s 214s 214s 2025-02-19 11:02:45 (183 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=19’ saved [82160] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=20 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=20’ 214s 214s 0K .......... .......... .......... .......... .......... 4.62G 214s 50K .......... .......... .......... 84.4M=0s 214s 214s 2025-02-19 11:02:45 (217 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=20’ saved [82389] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=32 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=32’ 214s 214s 0K .......... .......... .......... .......... .......... 4.98G 214s 50K .......... .......... .......... .... 612M=0s 214s 214s 2025-02-19 11:02:45 (1.25 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=32’ saved [86647] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_templates.php?action=template_edit 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit’ 214s 214s 0K .......... .......... .......... .......... .. 7.40G=0s 214s 214s 2025-02-19 11:02:45 (7.40 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit’ saved [43069] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_templates.php?action=template_edit&id=2 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=2’ 214s 214s 0K .......... .......... .......... .......... .......... 3.48G 214s 50K ....... 14.1T=0s 214s 214s 2025-02-19 11:02:45 (4.00 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=2’ saved [58951] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_sources.php?reset=true&template_id=2 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=2’ 214s 214s 0K .......... .......... .......... ... 6.64G=0s 214s 214s 2025-02-19 11:02:45 (6.64 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=2’ saved [34725] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_templates.php?action=template_edit&id=6 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=6’ 214s 214s 0K .......... .......... .......... .......... .......... 5.67G 214s 50K .... 8.46T=0s 214s 214s 2025-02-19 11:02:45 (6.19 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=6’ saved [55851] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_sources.php?reset=true&template_id=6 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=6’ 214s 214s 0K .......... .......... .......... ... 6.80G=0s 214s 214s 2025-02-19 11:02:45 (6.80 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=6’ saved [34725] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_templates.php?action=template_edit&id=7 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=7’ 214s 214s 0K .......... .......... .......... .......... .......... 5.18G 214s 50K .... 8.36T=0s 214s 214s 2025-02-19 11:02:45 (5.64 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=7’ saved [55798] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_sources.php?reset=true&template_id=7 214s Reusing existing connection to [localhost]:80. 214s HTTP request sent, awaiting response... 200 OK 214s Length: unspecified [text/html] 214s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=7’ 214s 214s 0K .......... .......... .......... ... 4.89G=0s 214s 214s 2025-02-19 11:02:45 (4.89 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=7’ saved [34725] 214s 214s --2025-02-19 11:02:45-- http://localhost/cacti/data_templates.php?action=template_edit&id=9 214s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=9’ 215s 215s 0K .......... .......... .......... .......... .......... 6.72G 215s 50K .... 8.47T=0s 215s 215s 2025-02-19 11:02:45 (7.34 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=9’ saved [55854] 215s 215s --2025-02-19 11:02:45-- http://localhost/cacti/data_sources.php?reset=true&template_id=9 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=9’ 215s 215s 0K .......... .......... .......... ... 6.78G=0s 215s 215s 2025-02-19 11:02:45 (6.78 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=9’ saved [34725] 215s 215s --2025-02-19 11:02:45-- http://localhost/cacti/data_templates.php?action=template_edit&id=5 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=5’ 215s 215s 0K .......... .......... .......... .......... .......... 6.78G 215s 50K .... 8.45T=0s 215s 215s 2025-02-19 11:02:46 (7.40 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=5’ saved [55848] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=5 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=5’ 215s 215s 0K .......... .......... .......... ... 6.63G=0s 215s 215s 2025-02-19 11:02:46 (6.63 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=5’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=8 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=8’ 215s 215s 0K .......... .......... .......... .......... .......... 7.48G 215s 50K .... 8.45T=0s 215s 215s 2025-02-19 11:02:46 (8.16 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=8’ saved [55843] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=8 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=8’ 215s 215s 0K .......... .......... .......... ... 5.77G=0s 215s 215s 2025-02-19 11:02:46 (5.77 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=8’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=3 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3’ 215s 215s 0K .......... .......... .......... .......... .......... 3.29G 215s 50K ......... 17.0T=0s 215s 215s 2025-02-19 11:02:46 (3.89 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3’ saved [60540] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=3 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=3’ 215s 215s 0K .......... .......... .......... ... 6.08G=0s 215s 215s 2025-02-19 11:02:46 (6.08 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=3’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=4 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=4’ 215s 215s 0K .......... .......... .......... .......... .......... 3.98G 215s 50K ...... 12.9T=0s 215s 215s 2025-02-19 11:02:46 (4.53 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=4’ saved [58310] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=4 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=4’ 215s 215s 0K .......... .......... .......... ... 5.83G=0s 215s 215s 2025-02-19 11:02:46 (5.83 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=4’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=1 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=1’ 215s 215s 0K .......... .......... .......... .......... .......... 5.78G 215s 50K ...... 12.9T=0s 215s 215s 2025-02-19 11:02:46 (6.59 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=1’ saved [58302] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=1 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=1’ 215s 215s 0K .......... .......... .......... ... 4.84G=0s 215s 215s 2025-02-19 11:02:46 (4.84 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=1’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=14 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=14’ 215s 215s 0K .......... .......... .......... .......... ...... 5.57G=0s 215s 215s 2025-02-19 11:02:46 (5.57 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=14’ saved [47303] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=14 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=14’ 215s 215s 0K .......... .......... .......... ... 4.86G=0s 215s 215s 2025-02-19 11:02:46 (4.86 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=14’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=15 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=15’ 215s 215s 0K .......... .......... .......... .......... ...... 5.63G=0s 215s 215s 2025-02-19 11:02:46 (5.63 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=15’ saved [47274] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=15 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=15’ 215s 215s 0K .......... .......... .......... ... 4.70G=0s 215s 215s 2025-02-19 11:02:46 (4.70 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=15’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=12 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=12’ 215s 215s 0K .......... .......... .......... .......... ...... 5.41G=0s 215s 215s 2025-02-19 11:02:46 (5.41 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=12’ saved [47295] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=12 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=12’ 215s 215s 0K .......... .......... .......... ... 4.48G=0s 215s 215s 2025-02-19 11:02:46 (4.48 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=12’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=13 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=13’ 215s 215s 0K .......... .......... .......... .......... ...... 5.47G=0s 215s 215s 2025-02-19 11:02:46 (5.47 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=13’ saved [47271] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=13 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=13’ 215s 215s 0K .......... .......... .......... ... 3.50G=0s 215s 215s 2025-02-19 11:02:46 (3.50 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=13’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=11 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=11’ 215s 215s 0K .......... .......... .......... .......... ...... 5.50G=0s 215s 215s 2025-02-19 11:02:46 (5.50 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=11’ saved [47269] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=11 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=11’ 215s 215s 0K .......... .......... .......... ... 5.91G=0s 215s 215s 2025-02-19 11:02:46 (5.91 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=11’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=10 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=10’ 215s 215s 0K .......... .......... .......... .......... ...... 5.93G=0s 215s 215s 2025-02-19 11:02:46 (5.93 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=10’ saved [47277] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=10 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=10’ 215s 215s 0K .......... .......... .......... ... 4.69G=0s 215s 215s 2025-02-19 11:02:46 (4.69 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=10’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=48 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=48’ 215s 215s 0K .......... .......... .......... .......... ..... 5.41G=0s 215s 215s 2025-02-19 11:02:46 (5.41 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=48’ saved [46528] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=48 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=48’ 215s 215s 0K .......... .......... .......... ... 2.44G=0s 215s 215s 2025-02-19 11:02:46 (2.44 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=48’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=46 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=46’ 215s 215s 0K .......... .......... .......... .......... ..... 4.06G=0s 215s 215s 2025-02-19 11:02:46 (4.06 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=46’ saved [46537] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=46 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=46’ 215s 215s 0K .......... .......... .......... ... 4.51G=0s 215s 215s 2025-02-19 11:02:46 (4.51 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=46’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=47 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=47’ 215s 215s 0K .......... .......... .......... .......... ..... 5.03G=0s 215s 215s 2025-02-19 11:02:46 (5.03 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=47’ saved [46555] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=47 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=47’ 215s 215s 0K .......... .......... .......... ... 5.19G=0s 215s 215s 2025-02-19 11:02:46 (5.19 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=47’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=49 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=49’ 215s 215s 0K .......... .......... .......... .......... ...... 4.55G=0s 215s 215s 2025-02-19 11:02:46 (4.55 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=49’ saved [47261] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=49 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=49’ 215s 215s 0K .......... .......... .......... ... 1.66G=0s 215s 215s 2025-02-19 11:02:46 (1.66 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=49’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=50 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50’ 215s 215s 0K .......... .......... .......... .......... ........ 5.46G=0s 215s 215s 2025-02-19 11:02:46 (5.46 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50’ saved [49911] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=50 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=50’ 215s 215s 0K .......... .......... .......... ... 3.85G=0s 215s 215s 2025-02-19 11:02:46 (3.85 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=50’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=16 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=16’ 215s 215s 0K .......... .......... .......... .......... .......... 4.62G 215s 50K .... 8.55T=0s 215s 215s 2025-02-19 11:02:46 (5.04 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=16’ saved [55901] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=16 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=16’ 215s 215s 0K .......... .......... .......... ... 5.21G=0s 215s 215s 2025-02-19 11:02:46 (5.21 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=16’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=26 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=26’ 215s 215s 0K .......... .......... .......... .......... .......... 6.22G 215s 50K ....... 14.2T=0s 215s 215s 2025-02-19 11:02:46 (7.17 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=26’ saved [59003] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=26 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=26’ 215s 215s 0K .......... .......... .......... ... 5.72G=0s 215s 215s 2025-02-19 11:02:46 (5.72 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=26’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=25 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=25’ 215s 215s 0K .......... .......... .......... .......... .......... 5.02G 215s 50K ....... 14.3T=0s 215s 215s 2025-02-19 11:02:46 (5.78 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=25’ saved [59039] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=25 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=25’ 215s 215s 0K .......... .......... .......... ... 5.43G=0s 215s 215s 2025-02-19 11:02:46 (5.43 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=25’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=27 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=27’ 215s 215s 0K .......... .......... .......... .......... .......... 7.82G 215s 50K ....... 14.2T=0s 215s 215s 2025-02-19 11:02:46 (9.01 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=27’ saved [58999] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=27 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=27’ 215s 215s 0K .......... .......... .......... ... 6.67G=0s 215s 215s 2025-02-19 11:02:46 (6.67 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=27’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=18 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=18’ 215s 215s 0K .......... .......... .......... .......... .......... 6.68G 215s 50K .... 8.64T=0s 215s 215s 2025-02-19 11:02:46 (7.30 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=18’ saved [55952] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=18 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=18’ 215s 215s 0K .......... .......... .......... ... 7.04G=0s 215s 215s 2025-02-19 11:02:46 (7.04 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=18’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=19 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=19’ 215s 215s 0K .......... .......... .......... .......... .......... 6.89G 215s 50K .... 8.55T=0s 215s 215s 2025-02-19 11:02:46 (7.53 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=19’ saved [55898] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=19 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=19’ 215s 215s 0K .......... .......... .......... ... 5.50G=0s 215s 215s 2025-02-19 11:02:46 (5.50 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=19’ saved [34725] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=20 215s Reusing existing connection to [localhost]:80. 215s HTTP request sent, awaiting response... 200 OK 215s Length: unspecified [text/html] 215s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=20’ 215s 215s 0K .......... .......... .......... .......... .......... 6.90G 215s 50K .... 8.68T=0s 215s 215s 2025-02-19 11:02:46 (7.54 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=20’ saved [55974] 215s 215s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=20 215s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=20’ 216s 216s 0K .......... .......... .......... ... 3.45G=0s 216s 216s 2025-02-19 11:02:46 (3.45 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=20’ saved [34725] 216s 216s --2025-02-19 11:02:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=32 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=32’ 216s 216s 0K .......... .......... .......... .......... .......... 4.45G 216s 50K ....... 14.2T=0s 216s 216s 2025-02-19 11:02:46 (5.13 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=32’ saved [58993] 216s 216s --2025-02-19 11:02:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=32 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=32’ 216s 216s 0K .......... .......... .......... ... 6.54G=0s 216s 216s 2025-02-19 11:02:47 (6.54 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=32’ saved [34725] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=28 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28’ 216s 216s 0K .......... .......... .......... .......... .......... 2.58G 216s 50K ....... 14.7T=0s 216s 216s 2025-02-19 11:02:47 (2.99 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28’ saved [59273] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=28 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=28’ 216s 216s 0K .......... .......... .......... ... 5.86G=0s 216s 216s 2025-02-19 11:02:47 (5.86 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=28’ saved [34725] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=21 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=21’ 216s 216s 0K .......... .......... .......... .......... .......... 3.58G 216s 50K .... 8.55T=0s 216s 216s 2025-02-19 11:02:47 (3.90 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=21’ saved [55900] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=21 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=21’ 216s 216s 0K .......... .......... .......... ... 5.25G=0s 216s 216s 2025-02-19 11:02:47 (5.25 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=21’ saved [34725] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/aggregate_templates.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/aggregate_templates.php?action=edit’ 216s 216s 0K .......... .......... .......... .......... .......... 5.17G 216s 50K ... 6.72T=0s 216s 216s 2025-02-19 11:02:47 (5.55 GB/s) - ‘localhost/cacti/aggregate_templates.php?action=edit’ saved [54897] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/color_templates.php?action=template_edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit’ 216s 216s 0K .......... .......... ...... 3.96G=0s 216s 216s 2025-02-19 11:02:47 (3.96 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit’ saved [27058] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=4&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=4&page=1’ 216s 216s 0K .......... .......... .......... ... 4.15G=0s 216s 216s 2025-02-19 11:02:47 (4.15 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=4&page=1’ saved [34721] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=3&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=3&page=1’ 216s 216s 0K .......... .......... .......... ... 4.32G=0s 216s 216s 2025-02-19 11:02:47 (4.32 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=3&page=1’ saved [34715] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=2&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=2&page=1’ 216s 216s 0K .......... .......... .......... . 4.21G=0s 216s 216s 2025-02-19 11:02:47 (4.21 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=2&page=1’ saved [31796] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=1&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=1&page=1’ 216s 216s 0K .......... .......... ......... 3.98G=0s 216s 216s 2025-02-19 11:02:47 (3.98 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=1&page=1’ saved [30316] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_networks.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_networks.php?action=edit’ 216s 216s 0K .......... .......... .......... .......... .......... 3.38G 216s 50K .. 3.79T=0s 216s 216s 2025-02-19 11:02:47 (3.52 GB/s) - ‘localhost/cacti/automation_networks.php?action=edit’ saved [53286] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_networks.php?action=edit&id=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_networks.php?action=edit&id=1’ 216s 216s 0K .......... .......... .......... .......... .......... 4.84G 216s 50K .. 3.99T=0s 216s 216s 2025-02-19 11:02:47 (5.04 GB/s) - ‘localhost/cacti/automation_networks.php?action=edit&id=1’ saved [53396] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_templates.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_templates.php?action=edit’ 216s 216s 0K .......... .......... .......... 4.07G=0s 216s 216s 2025-02-19 11:02:47 (4.07 GB/s) - ‘localhost/cacti/automation_templates.php?action=edit’ saved [30925] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_graph_rules.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit’ 216s 216s 0K .......... .......... .......... . 3.93G=0s 216s 216s 2025-02-19 11:02:47 (3.93 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit’ saved [31851] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&page=1’ 216s 216s 0K .......... .......... .......... .... 3.92G=0s 216s 216s 2025-02-19 11:02:47 (3.92 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&page=1’ saved [35801] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&page=1’ 216s 216s 0K .......... .......... .......... ........ 5.09G=0s 216s 216s 2025-02-19 11:02:47 (5.09 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&page=1’ saved [39795] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&page=1’ 216s 216s 0K .......... .......... .......... ........ 3.86G=0s 216s 216s 2025-02-19 11:02:47 (3.86 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&page=1’ saved [39009] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_tree_rules.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit’ 216s 216s 0K .......... .......... .......... 4.44G=0s 216s 216s 2025-02-19 11:02:47 (4.44 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit’ saved [31715] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&page=1’ 216s 216s 0K .......... .......... .......... ...... 3.77G=0s 216s 216s 2025-02-19 11:02:47 (3.77 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&page=1’ saved [36890] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&page=1’ 216s 216s 0K .......... .......... .......... ...... 4.31G=0s 216s 216s 2025-02-19 11:02:47 (4.31 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&page=1’ saved [37629] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_source_profiles.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit’ 216s 216s 0K .......... .......... .......... ... 4.29G=0s 216s 216s 2025-02-19 11:02:47 (4.29 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit’ saved [34196] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_source_profiles.php?action=edit&id=2 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit&id=2’ 216s 216s 0K .......... .......... .......... ...... 5.02G=0s 216s 216s 2025-02-19 11:02:47 (5.02 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit&id=2’ saved [36985] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_source_profiles.php?action=edit&id=3 216s Connecting to localhost (localhost)|::1|:80... connected. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit&id=3’ 216s 216s 0K .......... .......... .......... ...... 78.4M=0s 216s 216s 2025-02-19 11:02:47 (78.4 MB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit&id=3’ saved [37019] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_source_profiles.php?action=edit&id=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit&id=1’ 216s 216s 0K .......... .......... .......... ...... 6.18G=0s 216s 216s 2025-02-19 11:02:47 (6.18 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit&id=1’ saved [37031] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/data_templates.php?reset=true&profile=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/data_templates.php?reset=true&profile=1’ 216s 216s 0K .......... .......... .......... .......... .......... 3.60G 216s 50K ..... 10.6T=0s 216s 216s 2025-02-19 11:02:47 (4.01 GB/s) - ‘localhost/cacti/data_templates.php?reset=true&profile=1’ saved [57047] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_snmp.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_snmp.php?action=edit’ 216s 216s 0K .......... .......... ....... 6.12G=0s 216s 216s 2025-02-19 11:02:47 (6.12 GB/s) - ‘localhost/cacti/automation_snmp.php?action=edit’ saved [28185] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/automation_snmp.php?action=edit&id=1&page=1 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/automation_snmp.php?action=edit&id=1&page=1’ 216s 216s 0K .......... .......... ......... 5.71G=0s 216s 216s 2025-02-19 11:02:47 (5.71 GB/s) - ‘localhost/cacti/automation_snmp.php?action=edit&id=1&page=1’ saved [30184] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit’ 216s 216s 0K .......... .......... ....... 5.00G=0s 216s 216s 2025-02-19 11:02:47 (5.00 GB/s) - ‘localhost/cacti/cdef.php?action=edit’ saved [28189] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=39 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=39’ 216s 216s 0K .......... .......... ........ 4.15G=0s 216s 216s 2025-02-19 11:02:47 (4.15 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=39’ saved [29426] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=43 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=43’ 216s 216s 0K .......... .......... ........ 4.62G=0s 216s 216s 2025-02-19 11:02:47 (4.62 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=43’ saved [29486] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=66 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=66’ 216s 216s 0K .......... .......... ........ 5.57G=0s 216s 216s 2025-02-19 11:02:47 (5.57 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=66’ saved [29509] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=67 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=67’ 216s 216s 0K .......... .......... ........ 4.87G=0s 216s 216s 2025-02-19 11:02:47 (4.87 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=67’ saved [29507] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=61 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=61’ 216s 216s 0K .......... .......... ........ 4.54G=0s 216s 216s 2025-02-19 11:02:47 (4.54 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=61’ saved [29517] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=56 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=56’ 216s 216s 0K .......... .......... ........ 4.96G=0s 216s 216s 2025-02-19 11:02:47 (4.96 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=56’ saved [29515] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=63 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=63’ 216s 216s 0K .......... .......... ........ 4.86G=0s 216s 216s 2025-02-19 11:02:47 (4.86 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=63’ saved [29515] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=57 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=57’ 216s 216s 0K .......... .......... ........ 4.81G=0s 216s 216s 2025-02-19 11:02:47 (4.81 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=57’ saved [29515] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=68 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=68’ 216s 216s 0K .......... .......... ........ 5.35G=0s 216s 216s 2025-02-19 11:02:47 (5.35 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=68’ saved [29509] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=69 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=69’ 216s 216s 0K .......... .......... ........ 4.93G=0s 216s 216s 2025-02-19 11:02:47 (4.93 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=69’ saved [29507] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=64 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=64’ 216s 216s 0K .......... .......... ........ 6.50G=0s 216s 216s 2025-02-19 11:02:47 (6.50 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=64’ saved [29517] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=54 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=54’ 216s 216s 0K .......... .......... ........ 5.26G=0s 216s 216s 2025-02-19 11:02:47 (5.26 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=54’ saved [29515] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=62 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=62’ 216s 216s 0K .......... .......... ........ 4.93G=0s 216s 216s 2025-02-19 11:02:47 (4.93 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=62’ saved [29513] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=55 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=55’ 216s 216s 0K .......... .......... ........ 4.99G=0s 216s 216s 2025-02-19 11:02:47 (4.99 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=55’ saved [29511] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=65 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=65’ 216s 216s 0K .......... .......... ........ 5.03G=0s 216s 216s 2025-02-19 11:02:47 (5.03 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=65’ saved [29521] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=58 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=58’ 216s 216s 0K .......... .......... ........ 6.11G=0s 216s 216s 2025-02-19 11:02:47 (6.11 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=58’ saved [29519] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=59 216s Reusing existing connection to [localhost]:80. 216s HTTP request sent, awaiting response... 200 OK 216s Length: unspecified [text/html] 216s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=59’ 216s 216s 0K .......... .......... ........ 6.20G=0s 216s 216s 2025-02-19 11:02:47 (6.20 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=59’ saved [29443] 216s 216s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=60 216s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=60’ 217s 217s 0K .......... .......... ........ 6.32G=0s 217s 217s 2025-02-19 11:02:47 (6.32 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=60’ saved [29463] 217s 217s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=70 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=70’ 217s 217s 0K .......... .......... ........ 6.26G=0s 217s 217s 2025-02-19 11:02:47 (6.26 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=70’ saved [29463] 217s 217s --2025-02-19 11:02:47-- http://localhost/cacti/cdef.php?action=edit&id=20 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=20’ 217s 217s 0K .......... .......... ........ 5.77G=0s 217s 217s 2025-02-19 11:02:48 (5.77 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=20’ saved [29502] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=25 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=25’ 217s 217s 0K .......... .......... ......... 5.20G=0s 217s 217s 2025-02-19 11:02:48 (5.20 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=25’ saved [30166] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=24 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=24’ 217s 217s 0K .......... .......... ........ 5.17G=0s 217s 217s 2025-02-19 11:02:48 (5.17 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=24’ saved [29538] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=26 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=26’ 217s 217s 0K .......... .......... ........ 4.37G=0s 217s 217s 2025-02-19 11:02:48 (4.37 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=26’ saved [29538] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=22 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=22’ 217s 217s 0K .......... .......... ........ 4.97G=0s 217s 217s 2025-02-19 11:02:48 (4.97 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=22’ saved [29556] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=27 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=27’ 217s 217s 0K .......... .......... ........ 4.86G=0s 217s 217s 2025-02-19 11:02:48 (4.86 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=27’ saved [29538] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=19 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=19’ 217s 217s 0K .......... .......... ........ 5.57G=0s 217s 217s 2025-02-19 11:02:48 (5.57 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=19’ saved [29500] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=21 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=21’ 217s 217s 0K .......... .......... ........ 6.53G=0s 217s 217s 2025-02-19 11:02:48 (6.53 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=21’ saved [29524] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=34 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=34’ 217s 217s 0K .......... .......... .......... .. 5.75G=0s 217s 217s 2025-02-19 11:02:48 (5.75 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=34’ saved [33114] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=51 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=51’ 217s 217s 0K .......... .......... ......... 4.11G=0s 217s 217s 2025-02-19 11:02:48 (4.11 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=51’ saved [29798] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/cdef.php?action=edit&id=52 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=52’ 217s 217s 0K .......... .......... ......... 3.74G=0s 217s 217s 2025-02-19 11:02:48 (3.74 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=52’ saved [30259] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit’ 217s 217s 0K .......... .......... ....... 3.41G=0s 217s 217s 2025-02-19 11:02:48 (3.41 GB/s) - ‘localhost/cacti/vdef.php?action=edit’ saved [28244] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=7 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=7’ 217s 217s 0K .......... .......... ......... 3.86G=0s 217s 217s 2025-02-19 11:02:48 (3.86 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=7’ saved [30296] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=3 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=3’ 217s 217s 0K .......... .......... ......... 3.56G=0s 217s 217s 2025-02-19 11:02:48 (3.56 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=3’ saved [29862] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=5 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=5’ 217s 217s 0K .......... .......... ......... 3.41G=0s 217s 217s 2025-02-19 11:02:48 (3.41 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=5’ saved [29857] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=4 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=4’ 217s 217s 0K .......... .......... ......... 3.46G=0s 217s 217s 2025-02-19 11:02:48 (3.46 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=4’ saved [29870] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=1 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=1’ 217s 217s 0K .......... .......... ......... 3.96G=0s 217s 217s 2025-02-19 11:02:48 (3.96 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=1’ saved [29862] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=2 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=2’ 217s 217s 0K .......... .......... ......... 3.40G=0s 217s 217s 2025-02-19 11:02:48 (3.40 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=2’ saved [29862] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/vdef.php?action=edit&id=6 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=6’ 217s 217s 0K .......... .......... ......... 3.70G=0s 217s 217s 2025-02-19 11:02:48 (3.70 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=6’ saved [29902] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit’ 217s 217s 0K .......... .......... ....... 3.77G=0s 217s 217s 2025-02-19 11:02:48 (3.77 GB/s) - ‘localhost/cacti/color.php?action=edit’ saved [28246] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=249 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=249’ 217s 217s 0K .......... .......... ....... 4.36G=0s 217s 217s 2025-02-19 11:02:48 (4.36 GB/s) - ‘localhost/cacti/color.php?action=edit&id=249’ saved [28289] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=185 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=185’ 217s 217s 0K .......... .......... ....... 3.45G=0s 217s 217s 2025-02-19 11:02:48 (3.45 GB/s) - ‘localhost/cacti/color.php?action=edit&id=185’ saved [28287] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=233 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=233’ 217s 217s 0K .......... .......... ....... 3.75G=0s 217s 217s 2025-02-19 11:02:48 (3.75 GB/s) - ‘localhost/cacti/color.php?action=edit&id=233’ saved [28289] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=272 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=272’ 217s 217s 0K .......... .......... ....... 4.25G=0s 217s 217s 2025-02-19 11:02:48 (4.25 GB/s) - ‘localhost/cacti/color.php?action=edit&id=272’ saved [28293] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=190 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=190’ 217s 217s 0K .......... .......... ....... 4.00G=0s 217s 217s 2025-02-19 11:02:48 (4.00 GB/s) - ‘localhost/cacti/color.php?action=edit&id=190’ saved [28287] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=310 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=310’ 217s 217s 0K .......... .......... ....... 4.97G=0s 217s 217s 2025-02-19 11:02:48 (4.97 GB/s) - ‘localhost/cacti/color.php?action=edit&id=310’ saved [28287] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=119 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=119’ 217s 217s 0K .......... .......... ....... 4.06G=0s 217s 217s 2025-02-19 11:02:48 (4.06 GB/s) - ‘localhost/cacti/color.php?action=edit&id=119’ saved [28283] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=243 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=243’ 217s 217s 0K .......... .......... ....... 4.14G=0s 217s 217s 2025-02-19 11:02:48 (4.14 GB/s) - ‘localhost/cacti/color.php?action=edit&id=243’ saved [28293] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=418 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=418’ 217s 217s 0K .......... .......... ....... 2.20G=0s 217s 217s 2025-02-19 11:02:48 (2.20 GB/s) - ‘localhost/cacti/color.php?action=edit&id=418’ saved [28293] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=186 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=186’ 217s 217s 0K .......... .......... ....... 4.63G=0s 217s 217s 2025-02-19 11:02:48 (4.63 GB/s) - ‘localhost/cacti/color.php?action=edit&id=186’ saved [28277] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=159 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=159’ 217s 217s 0K .......... .......... ....... 3.85G=0s 217s 217s 2025-02-19 11:02:48 (3.85 GB/s) - ‘localhost/cacti/color.php?action=edit&id=159’ saved [28285] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=397 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=397’ 217s 217s 0K .......... .......... ....... 4.24G=0s 217s 217s 2025-02-19 11:02:48 (4.24 GB/s) - ‘localhost/cacti/color.php?action=edit&id=397’ saved [28291] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=331 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=331’ 217s 217s 0K .......... .......... ....... 3.76G=0s 217s 217s 2025-02-19 11:02:48 (3.76 GB/s) - ‘localhost/cacti/color.php?action=edit&id=331’ saved [28303] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=124 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=124’ 217s 217s 0K .......... .......... ....... 4.00G=0s 217s 217s 2025-02-19 11:02:48 (4.00 GB/s) - ‘localhost/cacti/color.php?action=edit&id=124’ saved [28297] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=336 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=336’ 217s 217s 0K .......... .......... ....... 4.57G=0s 217s 217s 2025-02-19 11:02:48 (4.57 GB/s) - ‘localhost/cacti/color.php?action=edit&id=336’ saved [28283] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=286 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=286’ 217s 217s 0K .......... .......... ....... 3.89G=0s 217s 217s 2025-02-19 11:02:48 (3.89 GB/s) - ‘localhost/cacti/color.php?action=edit&id=286’ saved [28287] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=284 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=284’ 217s 217s 0K .......... .......... ....... 3.52G=0s 217s 217s 2025-02-19 11:02:48 (3.52 GB/s) - ‘localhost/cacti/color.php?action=edit&id=284’ saved [28275] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=211 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=211’ 217s 217s 0K .......... .......... ....... 3.84G=0s 217s 217s 2025-02-19 11:02:48 (3.84 GB/s) - ‘localhost/cacti/color.php?action=edit&id=211’ saved [28291] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=270 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=270’ 217s 217s 0K .......... .......... ....... 4.22G=0s 217s 217s 2025-02-19 11:02:48 (4.22 GB/s) - ‘localhost/cacti/color.php?action=edit&id=270’ saved [28277] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=1 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=1’ 217s 217s 0K .......... .......... ....... 4.26G=0s 217s 217s 2025-02-19 11:02:48 (4.26 GB/s) - ‘localhost/cacti/color.php?action=edit&id=1’ saved [28275] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=111 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=111’ 217s 217s 0K .......... .......... ....... 4.06G=0s 217s 217s 2025-02-19 11:02:48 (4.06 GB/s) - ‘localhost/cacti/color.php?action=edit&id=111’ saved [28285] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=114 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=114’ 217s 217s 0K .......... .......... ....... 3.75G=0s 217s 217s 2025-02-19 11:02:48 (3.75 GB/s) - ‘localhost/cacti/color.php?action=edit&id=114’ saved [28285] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=113 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=113’ 217s 217s 0K .......... .......... ....... 4.11G=0s 217s 217s 2025-02-19 11:02:48 (4.11 GB/s) - ‘localhost/cacti/color.php?action=edit&id=113’ saved [28285] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=274 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=274’ 217s 217s 0K .......... .......... ....... 3.41G=0s 217s 217s 2025-02-19 11:02:48 (3.41 GB/s) - ‘localhost/cacti/color.php?action=edit&id=274’ saved [28297] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=271 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=271’ 217s 217s 0K .......... .......... ....... 3.65G=0s 217s 217s 2025-02-19 11:02:48 (3.65 GB/s) - ‘localhost/cacti/color.php?action=edit&id=271’ saved [28279] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=354 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=354’ 217s 217s 0K .......... .......... ....... 3.85G=0s 217s 217s 2025-02-19 11:02:48 (3.85 GB/s) - ‘localhost/cacti/color.php?action=edit&id=354’ saved [28285] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=432 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=432’ 217s 217s 0K .......... .......... ....... 3.80G=0s 217s 217s 2025-02-19 11:02:48 (3.80 GB/s) - ‘localhost/cacti/color.php?action=edit&id=432’ saved [28291] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=175 217s Reusing existing connection to [localhost]:80. 217s HTTP request sent, awaiting response... 200 OK 217s Length: unspecified [text/html] 217s Saving to: ‘localhost/cacti/color.php?action=edit&id=175’ 217s 217s 0K .......... .......... ....... 3.93G=0s 217s 217s 2025-02-19 11:02:48 (3.93 GB/s) - ‘localhost/cacti/color.php?action=edit&id=175’ saved [28287] 217s 217s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=196 217s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/color.php?action=edit&id=196’ 218s 218s 0K .......... .......... ....... 3.86G=0s 218s 218s 2025-02-19 11:02:48 (3.86 GB/s) - ‘localhost/cacti/color.php?action=edit&id=196’ saved [28291] 218s 218s --2025-02-19 11:02:48-- http://localhost/cacti/color.php?action=edit&id=163 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/color.php?action=edit&id=163’ 218s 218s 0K .......... .......... ....... 3.81G=0s 218s 218s 2025-02-19 11:02:48 (3.81 GB/s) - ‘localhost/cacti/color.php?action=edit&id=163’ saved [28287] 218s 218s --2025-02-19 11:02:48-- http://localhost/cacti/gprint_presets.php?action=edit 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit’ 218s 218s 0K .......... .......... ...... 3.41G=0s 218s 218s 2025-02-19 11:02:49 (3.41 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit’ saved [27604] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=10 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=10’ 218s 218s 0K .......... .......... ...... 4.37G=0s 218s 218s 2025-02-19 11:02:49 (4.37 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=10’ saved [27640] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=11 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=11’ 218s 218s 0K .......... .......... ...... 4.28G=0s 218s 218s 2025-02-19 11:02:49 (4.28 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=11’ saved [27640] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=3 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=3’ 218s 218s 0K .......... .......... ...... 3.64G=0s 218s 218s 2025-02-19 11:02:49 (3.64 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=3’ saved [27641] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=4 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=4’ 218s 218s 0K .......... .......... ...... 3.78G=0s 218s 218s 2025-02-19 11:02:49 (3.78 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=4’ saved [27639] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=2 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=2’ 218s 218s 0K .......... .......... ...... 3.85G=0s 218s 218s 2025-02-19 11:02:49 (3.85 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=2’ saved [27630] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=5 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=5’ 218s 218s 0K .......... .......... ...... 3.56G=0s 218s 218s 2025-02-19 11:02:49 (3.56 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=5’ saved [27646] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=6 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=6’ 218s 218s 0K .......... .......... ...... 3.42G=0s 218s 218s 2025-02-19 11:02:49 (3.42 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=6’ saved [27644] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=9 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=9’ 218s 218s 0K .......... .......... ...... 4.31G=0s 218s 218s 2025-02-19 11:02:49 (4.31 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=9’ saved [27632] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=8 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=8’ 218s 218s 0K .......... .......... ...... 4.15G=0s 218s 218s 2025-02-19 11:02:49 (4.15 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=8’ saved [27642] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=7 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=7’ 218s 218s 0K .......... .......... ...... 3.47G=0s 218s 218s 2025-02-19 11:02:49 (3.47 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=7’ saved [27642] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=12 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=12’ 218s 218s 0K .......... .......... ....... 3.64G=0s 218s 218s 2025-02-19 11:02:49 (3.64 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=12’ saved [27660] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/gprint_presets.php?action=edit&id=13 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=13’ 218s 218s 0K .......... .......... ...... 4.24G=0s 218s 218s 2025-02-19 11:02:49 (4.24 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=13’ saved [27627] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=general 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=general’ 218s 218s 0K .......... .......... .......... .......... .......... 2.48G 218s 50K .......... .......... .......... .......... ...... 154M=0s 218s 218s 2025-02-19 11:02:49 (302 MB/s) - ‘localhost/cacti/settings.php?tab=general’ saved [98424] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=path 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=path’ 218s 218s 0K .......... .......... .......... .......... .......... 4.41G 218s 50K .......... .... 26.2M=0.001s 218s 218s 2025-02-19 11:02:49 (113 MB/s) - ‘localhost/cacti/settings.php?tab=path’ saved [66291] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=snmp 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=snmp’ 218s 218s 0K .......... .......... .......... .......... .......... 4.27G 218s 50K .......... .......... .. 74.5M=0s 218s 218s 2025-02-19 11:02:49 (228 MB/s) - ‘localhost/cacti/settings.php?tab=snmp’ saved [74748] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=poller 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=poller’ 218s 218s 0K .......... .......... .......... .......... .......... 4.42G 218s 50K .......... .......... ........ 279M=0s 218s 218s 2025-02-19 11:02:49 (695 MB/s) - ‘localhost/cacti/settings.php?tab=poller’ saved [80207] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=data 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=data’ 218s 218s 0K .......... .......... .......... .......... .......... 4.38G 218s 50K .......... .......... 58.1M=0s 218s 218s 2025-02-19 11:02:49 (194 MB/s) - ‘localhost/cacti/settings.php?tab=data’ saved [72198] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=visual 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=visual’ 218s 218s 0K .......... .......... .......... .......... .......... 3.85G 218s 50K .......... .......... .......... . 301M=0s 218s 218s 2025-02-19 11:02:49 (689 MB/s) - ‘localhost/cacti/settings.php?tab=visual’ saved [83950] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=authentication 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=authentication’ 218s 218s 0K .......... .......... .......... .......... .......... 4.24G 218s 50K .......... .......... .......... .... 58.0M=0.001s 218s 218s 2025-02-19 11:02:49 (139 MB/s) - ‘localhost/cacti/settings.php?tab=authentication’ saved [86632] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=boost 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=boost’ 218s 218s 0K .......... .......... .......... .......... .......... 3.98G 218s 50K .......... ..... 38.4M=0s 218s 218s 2025-02-19 11:02:49 (160 MB/s) - ‘localhost/cacti/settings.php?tab=boost’ saved [66714] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=spikes 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=spikes’ 218s 218s 0K .......... .......... .......... .......... .......... 4.17G 218s 50K .......... ........ 201M=0s 218s 218s 2025-02-19 11:02:49 (655 MB/s) - ‘localhost/cacti/settings.php?tab=spikes’ saved [70445] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/settings.php?tab=mail 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/settings.php?tab=mail’ 218s 218s 0K .......... .......... .......... .......... .......... 4.08G 218s 50K .......... ......... 55.4M=0s 218s 218s 2025-02-19 11:02:49 (190 MB/s) - ‘localhost/cacti/settings.php?tab=mail’ saved [71353] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/user_admin.php?tab=general&action=user_edit 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/user_admin.php?tab=general&action=user_edit’ 218s 218s 0K .......... .......... .......... ........ 4.67G=0s 218s 218s 2025-02-19 11:02:49 (4.67 GB/s) - ‘localhost/cacti/user_admin.php?tab=general&action=user_edit’ saved [39626] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/user_admin.php?action=user_edit&tab=general&id=1 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=1’ 218s 218s 0K .......... .......... .......... ......... 4.10G=0s 218s 218s 2025-02-19 11:02:49 (4.10 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=1’ saved [40747] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/user_admin.php?action=user_edit&tab=general&id=3 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=3’ 218s 218s 0K .......... .......... .......... ......... 4.55G=0s 218s 218s 2025-02-19 11:02:49 (4.55 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=3’ saved [40742] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/user_group_admin.php?action=edit&tab=general 218s Connecting to localhost (localhost)|::1|:80... connected. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/user_group_admin.php?action=edit&tab=general’ 218s 218s 0K .......... .......... .......... .... 3.55G=0s 218s 218s 2025-02-19 11:02:49 (3.55 GB/s) - ‘localhost/cacti/user_group_admin.php?action=edit&tab=general’ saved [35185] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/user_domains.php?action=edit 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/user_domains.php?action=edit’ 218s 218s 0K .......... .......... ......... 2.97G=0s 218s 218s 2025-02-19 11:02:49 (2.97 GB/s) - ‘localhost/cacti/user_domains.php?action=edit’ saved [30607] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_tech 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_tech’ 218s 218s 0K .......... .......... .......... ..... 4.26G=0s 218s 218s 2025-02-19 11:02:49 (4.26 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech’ saved [36223] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_logfile 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_logfile’ 218s 218s 0K .......... .......... ...... 4.12G=0s 218s 218s 2025-02-19 11:02:49 (4.12 GB/s) - ‘localhost/cacti/utilities.php?action=view_logfile’ saved [27497] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_user_log 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_user_log’ 218s 218s 0K .......... .......... ....... 4.38G=0s 218s 218s 2025-02-19 11:02:49 (4.38 GB/s) - ‘localhost/cacti/utilities.php?action=view_user_log’ saved [28356] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_poller_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_poller_cache’ 218s 218s 0K .......... .......... ...... 4.27G=0s 218s 218s 2025-02-19 11:02:49 (4.27 GB/s) - ‘localhost/cacti/utilities.php?action=view_poller_cache’ saved [27484] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_snmp_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_snmp_cache’ 218s 218s 0K .......... .......... ...... 3.46G=0s 218s 218s 2025-02-19 11:02:49 (3.46 GB/s) - ‘localhost/cacti/utilities.php?action=view_snmp_cache’ saved [26643] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=clear_poller_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 302 Found 218s Location: utilities.php?action=view_poller_cache [following] 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_poller_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=clear_poller_cache’ 218s 218s 0K .......... .......... ...... 4.01G=0s 218s 218s 2025-02-19 11:02:49 (4.01 GB/s) - ‘localhost/cacti/utilities.php?action=clear_poller_cache’ saved [27484] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=rebuild_resource_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 302 Found 218s Location: utilities.php?header=false [following] 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?header=false 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: 7593 (7.4K) [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=rebuild_resource_cache’ 218s 218s 0K ....... 100% 3.43G=0s 218s 218s 2025-02-19 11:02:49 (3.43 GB/s) - ‘localhost/cacti/utilities.php?action=rebuild_resource_cache’ saved [7593/7593] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_boost_status 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_boost_status’ 218s 218s 0K .......... .......... ..... 3.29G=0s 218s 218s 2025-02-19 11:02:49 (3.29 GB/s) - ‘localhost/cacti/utilities.php?action=view_boost_status’ saved [26504] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=purge_data_source_statistics 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 302 Found 218s Location: utilities.php [following] 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=purge_data_source_statistics’ 218s 218s 0K .......... .......... ........ 3.68G=0s 218s 218s 2025-02-19 11:02:49 (3.68 GB/s) - ‘localhost/cacti/utilities.php?action=purge_data_source_statistics’ saved [29330] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/rrdcheck.php 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/rrdcheck.php’ 218s 218s 0K .......... .......... ......... 5.31G=0s 218s 218s 2025-02-19 11:02:49 (5.31 GB/s) - ‘localhost/cacti/rrdcheck.php’ saved [30336] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_snmpagent_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=view_snmpagent_cache’ 218s 218s 0K .......... .......... ..... 5.10G=0s 218s 218s 2025-02-19 11:02:49 (5.10 GB/s) - ‘localhost/cacti/utilities.php?action=view_snmpagent_cache’ saved [25876] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=rebuild_snmpagent_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 302 Found 218s Location: utilities.php?action=view_snmpagent_cache [following] 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_snmpagent_cache 218s Reusing existing connection to [localhost]:80. 218s HTTP request sent, awaiting response... 200 OK 218s Length: unspecified [text/html] 218s Saving to: ‘localhost/cacti/utilities.php?action=rebuild_snmpagent_cache’ 218s 218s 0K .......... .......... .......... .......... .. 2.88G=0s 218s 218s 2025-02-19 11:02:49 (2.88 GB/s) - ‘localhost/cacti/utilities.php?action=rebuild_snmpagent_cache’ saved [43471] 218s 218s --2025-02-19 11:02:49-- http://localhost/cacti/utilities.php?action=view_snmpagent_events 218s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/utilities.php?action=view_snmpagent_events’ 219s 219s 0K .......... .......... ...... 4.01G=0s 219s 219s 2025-02-19 11:02:49 (4.01 GB/s) - ‘localhost/cacti/utilities.php?action=view_snmpagent_events’ saved [26877] 219s 219s --2025-02-19 11:02:49-- http://localhost/cacti/managers.php 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/managers.php’ 219s 219s 0K .......... .......... .......... . 4.21G=0s 219s 219s 2025-02-19 11:02:49 (4.21 GB/s) - ‘localhost/cacti/managers.php’ saved [32184] 219s 219s --2025-02-19 11:02:49-- http://localhost/cacti/links.php?action=edit 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/links.php?action=edit’ 219s 219s 0K .......... .......... .......... . 4.23G=0s 219s 219s 2025-02-19 11:02:49 (4.23 GB/s) - ‘localhost/cacti/links.php?action=edit’ saved [32313] 219s 219s --2025-02-19 11:02:49-- http://localhost/cacti/images/cacti_about_logo.gif 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: 8318 (8.1K) [image/gif] 219s Saving to: ‘localhost/cacti/images/cacti_about_logo.gif’ 219s 219s 0K ........ 100% 3.97G=0s 219s 219s 2025-02-19 11:02:49 (3.97 GB/s) - ‘localhost/cacti/images/cacti_about_logo.gif’ saved [8318/8318] 219s 219s --2025-02-19 11:02:49-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=2 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=2’ 219s 219s 0K .......... .......... .......... ........ 5.06G=0s 219s 219s 2025-02-19 11:02:50 (5.06 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=2’ saved [39682] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=3 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=3’ 219s 219s 0K .......... .......... .......... ........ 5.27G=0s 219s 219s 2025-02-19 11:02:50 (5.27 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=3’ saved [39678] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=4 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=4’ 219s 219s 0K .......... .......... .......... ........ 4.34G=0s 219s 219s 2025-02-19 11:02:50 (4.34 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=4’ saved [39671] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=1 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=1’ 219s 219s 0K .......... .......... .......... ........ 3.87G=0s 219s 219s 2025-02-19 11:02:50 (3.87 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=1’ saved [39667] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=8 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=8’ 219s 219s 0K .......... .......... .......... ........ 4.38G=0s 219s 219s 2025-02-19 11:02:50 (4.38 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=8’ saved [39668] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=7 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=7’ 219s 219s 0K .......... .......... .......... ........ 4.30G=0s 219s 219s 2025-02-19 11:02:50 (4.30 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=7’ saved [39666] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=6 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=6’ 219s 219s 0K .......... .......... .......... ........ 4.46G=0s 219s 219s 2025-02-19 11:02:50 (4.46 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=6’ saved [39667] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=5 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=5’ 219s 219s 0K .......... .......... .......... ........ 4.43G=0s 219s 219s 2025-02-19 11:02:50 (4.43 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=5’ saved [39670] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=9 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=9’ 219s 219s 0K .......... .......... .......... ........ 4.84G=0s 219s 219s 2025-02-19 11:02:50 (4.84 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=9’ saved [39682] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=10 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=10’ 219s 219s 0K .......... .......... .......... ........ 4.89G=0s 219s 219s 2025-02-19 11:02:50 (4.89 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=10’ saved [39683] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=11 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=11’ 219s 219s 0K .......... .......... .......... ........ 4.29G=0s 219s 219s 2025-02-19 11:02:50 (4.29 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=11’ saved [39684] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=12 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=12’ 219s 219s 0K .......... .......... .......... ........ 4.17G=0s 219s 219s 2025-02-19 11:02:50 (4.17 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=12’ saved [39682] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=22 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=22’ 219s 219s 0K .......... .......... .......... ........ 5.16G=0s 219s 219s 2025-02-19 11:02:50 (5.16 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=22’ saved [39693] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=21 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=21’ 219s 219s 0K .......... .......... .......... ........ 4.92G=0s 219s 219s 2025-02-19 11:02:50 (4.92 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=21’ saved [39681] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=15 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=15’ 219s 219s 0K .......... .......... .......... ........ 3.73G=0s 219s 219s 2025-02-19 11:02:50 (3.73 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=15’ saved [39682] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=16 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=16’ 219s 219s 0K .......... .......... .......... ........ 7.12G=0s 219s 219s 2025-02-19 11:02:50 (7.12 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=16’ saved [39689] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=14 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=14’ 219s 219s 0K .......... .......... .......... ........ 7.10G=0s 219s 219s 2025-02-19 11:02:50 (7.10 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=14’ saved [39685] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=17 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=17’ 219s 219s 0K .......... .......... .......... ........ 5.39G=0s 219s 219s 2025-02-19 11:02:50 (5.39 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=17’ saved [39682] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=19 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=19’ 219s 219s 0K .......... .......... .......... ........ 4.82G=0s 219s 219s 2025-02-19 11:02:50 (4.82 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=19’ saved [39691] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=18 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=18’ 219s 219s 0K .......... .......... .......... ........ 4.24G=0s 219s 219s 2025-02-19 11:02:50 (4.24 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=18’ saved [39691] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=20 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=20’ 219s 219s 0K .......... .......... .......... ........ 4.48G=0s 219s 219s 2025-02-19 11:02:50 (4.48 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=20’ saved [39689] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=24 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=24’ 219s 219s 0K .......... .......... .......... ........ 4.07G=0s 219s 219s 2025-02-19 11:02:50 (4.07 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=24’ saved [39684] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=23 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=23’ 219s 219s 0K .......... .......... .......... ........ 4.45G=0s 219s 219s 2025-02-19 11:02:50 (4.45 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=23’ saved [39671] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=25 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=25’ 219s 219s 0K .......... .......... .......... ........ 5.39G=0s 219s 219s 2025-02-19 11:02:50 (5.39 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=25’ saved [39688] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=65&snmp_query_id=25 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=65&snmp_query_id=25’ 219s 219s 0K .......... .......... .......... .......... ...... 2.81G=0s 219s 219s 2025-02-19 11:02:50 (2.81 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=65&snmp_query_id=25’ saved [48088] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=67&snmp_query_id=25 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=67&snmp_query_id=25’ 219s 219s 0K .......... .......... .......... .......... ..... 4.47G=0s 219s 219s 2025-02-19 11:02:50 (4.47 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=67&snmp_query_id=25’ saved [46309] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=68&snmp_query_id=25 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=68&snmp_query_id=25’ 219s 219s 0K .......... .......... .......... .......... ..... 4.37G=0s 219s 219s 2025-02-19 11:02:50 (4.37 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=68&snmp_query_id=25’ saved [46317] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=66&snmp_query_id=25 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=66&snmp_query_id=25’ 219s 219s 0K .......... .......... .......... .......... ........ 2.41G=0s 219s 219s 2025-02-19 11:02:50 (2.41 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=66&snmp_query_id=25’ saved [49864] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=27 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=27’ 219s 219s 0K .......... .......... .......... ........ 7.48G=0s 219s 219s 2025-02-19 11:02:50 (7.48 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=27’ saved [39681] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=73&snmp_query_id=27 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=73&snmp_query_id=27’ 219s 219s 0K .......... .......... .......... .......... .. 7.21G=0s 219s 219s 2025-02-19 11:02:50 (7.21 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=73&snmp_query_id=27’ saved [43940] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=74&snmp_query_id=27 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=74&snmp_query_id=27’ 219s 219s 0K .......... .......... .......... .......... .. 8.40G=0s 219s 219s 2025-02-19 11:02:50 (8.40 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=74&snmp_query_id=27’ saved [43936] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=26 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=26’ 219s 219s 0K .......... .......... .......... ........ 8.47G=0s 219s 219s 2025-02-19 11:02:50 (8.47 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=26’ saved [39690] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=71&snmp_query_id=26 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=71&snmp_query_id=26’ 219s 219s 0K .......... .......... .......... .......... ... 8.38G=0s 219s 219s 2025-02-19 11:02:50 (8.38 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=71&snmp_query_id=26’ saved [44269] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=72&snmp_query_id=26 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=72&snmp_query_id=26’ 219s 219s 0K .......... .......... .......... .......... ... 7.00G=0s 219s 219s 2025-02-19 11:02:50 (7.00 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=72&snmp_query_id=26’ saved [44273] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=70&snmp_query_id=26 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=70&snmp_query_id=26’ 219s 219s 0K .......... .......... .......... .......... ... 4.07G=0s 219s 219s 2025-02-19 11:02:50 (4.07 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=70&snmp_query_id=26’ saved [44247] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&id=69&snmp_query_id=26 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=69&snmp_query_id=26’ 219s 219s 0K .......... .......... .......... .......... ....... 4.86G=0s 219s 219s 2025-02-19 11:02:50 (4.86 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=69&snmp_query_id=26’ saved [48876] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=28 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=28’ 219s 219s 0K .......... .......... .......... ........ 3.84G=0s 219s 219s 2025-02-19 11:02:50 (3.84 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=28’ saved [39677] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=29 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=29’ 219s 219s 0K .......... .......... .......... ........ 4.19G=0s 219s 219s 2025-02-19 11:02:50 (4.19 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=29’ saved [39672] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=37 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=37’ 219s 219s 0K .......... .......... .......... ........ 3.91G=0s 219s 219s 2025-02-19 11:02:50 (3.91 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=37’ saved [39694] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=38 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=38’ 219s 219s 0K .......... .......... .......... ........ 3.60G=0s 219s 219s 2025-02-19 11:02:50 (3.60 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=38’ saved [39689] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_input.php?action=field_edit&id=51&data_input_id=15 219s Reusing existing connection to [localhost]:80. 219s HTTP request sent, awaiting response... 200 OK 219s Length: unspecified [text/html] 219s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=51&data_input_id=15’ 219s 219s 0K .......... .......... ......... 4.00G=0s 219s 219s 2025-02-19 11:02:50 (4.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=51&data_input_id=15’ saved [30375] 219s 219s --2025-02-19 11:02:50-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=15 219s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=15’ 220s 220s 0K .......... .......... ........ 4.25G=0s 220s 220s 2025-02-19 11:02:50 (4.25 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=15’ saved [29127] 220s 220s --2025-02-19 11:02:50-- http://localhost/cacti/data_input.php?action=field_edit&id=52&data_input_id=15 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=52&data_input_id=15’ 220s 220s 0K .......... .......... ........ 1.00G=0s 220s 220s 2025-02-19 11:02:50 (1.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=52&data_input_id=15’ saved [29196] 220s 220s --2025-02-19 11:02:50-- http://localhost/cacti/data_input.php?action=field_edit&id=56&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=56&data_input_id=17’ 220s 220s 0K .......... .......... ......... 4.89G=0s 220s 220s 2025-02-19 11:02:51 (4.89 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=56&data_input_id=17’ saved [30374] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=17’ 220s 220s 0K .......... .......... ........ 6.79G=0s 220s 220s 2025-02-19 11:02:51 (6.79 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=17’ saved [29126] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=57&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=57&data_input_id=17’ 220s 220s 0K .......... .......... ........ 6.83G=0s 220s 220s 2025-02-19 11:02:51 (6.83 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=57&data_input_id=17’ saved [29191] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=58&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=58&data_input_id=17’ 220s 220s 0K .......... .......... ........ 5.56G=0s 220s 220s 2025-02-19 11:02:51 (5.56 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=58&data_input_id=17’ saved [29182] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=59&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=59&data_input_id=17’ 220s 220s 0K .......... .......... ........ 6.00G=0s 220s 220s 2025-02-19 11:02:51 (6.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=59&data_input_id=17’ saved [29190] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=60&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=60&data_input_id=17’ 220s 220s 0K .......... .......... ........ 6.53G=0s 220s 220s 2025-02-19 11:02:51 (6.53 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=60&data_input_id=17’ saved [29184] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=61&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=61&data_input_id=17’ 220s 220s 0K .......... .......... ........ 3.54G=0s 220s 220s 2025-02-19 11:02:51 (3.54 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=61&data_input_id=17’ saved [29181] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=62&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=62&data_input_id=17’ 220s 220s 0K .......... .......... ........ 3.91G=0s 220s 220s 2025-02-19 11:02:51 (3.91 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=62&data_input_id=17’ saved [29179] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=63&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=63&data_input_id=17’ 220s 220s 0K .......... .......... ........ 5.38G=0s 220s 220s 2025-02-19 11:02:51 (5.38 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=63&data_input_id=17’ saved [29187] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=64&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=64&data_input_id=17’ 220s 220s 0K .......... .......... ........ 6.67G=0s 220s 220s 2025-02-19 11:02:51 (6.67 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=64&data_input_id=17’ saved [29183] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=65&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=65&data_input_id=17’ 220s 220s 0K .......... .......... ........ 7.10G=0s 220s 220s 2025-02-19 11:02:51 (7.10 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=65&data_input_id=17’ saved [29185] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=66&data_input_id=17 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=66&data_input_id=17’ 220s 220s 0K .......... .......... ........ 5.08G=0s 220s 220s 2025-02-19 11:02:51 (5.08 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=66&data_input_id=17’ saved [29182] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=47&data_input_id=13 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=47&data_input_id=13’ 220s 220s 0K .......... .......... ......... 6.38G=0s 220s 220s 2025-02-19 11:02:51 (6.38 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=47&data_input_id=13’ saved [30377] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=13 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=13’ 220s 220s 0K .......... .......... ........ 6.35G=0s 220s 220s 2025-02-19 11:02:51 (6.35 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=13’ saved [29129] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=48&data_input_id=13 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=48&data_input_id=13’ 220s 220s 0K .......... .......... ........ 6.63G=0s 220s 220s 2025-02-19 11:02:51 (6.63 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=48&data_input_id=13’ saved [29195] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=49&data_input_id=14 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=49&data_input_id=14’ 220s 220s 0K .......... .......... ......... 6.60G=0s 220s 220s 2025-02-19 11:02:51 (6.60 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=49&data_input_id=14’ saved [30379] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=14 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=14’ 220s 220s 0K .......... .......... ........ 7.00G=0s 220s 220s 2025-02-19 11:02:51 (7.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=14’ saved [29131] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=50&data_input_id=14 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=50&data_input_id=14’ 220s 220s 0K .......... .......... ........ 7.17G=0s 220s 220s 2025-02-19 11:02:51 (7.17 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=50&data_input_id=14’ saved [29205] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=53&data_input_id=16 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=53&data_input_id=16’ 220s 220s 0K .......... .......... ......... 7.09G=0s 220s 220s 2025-02-19 11:02:51 (7.09 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=53&data_input_id=16’ saved [30374] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=16 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=16’ 220s 220s 0K .......... .......... ........ 6.22G=0s 220s 220s 2025-02-19 11:02:51 (6.22 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=16’ saved [29126] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=54&data_input_id=16 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=54&data_input_id=16’ 220s 220s 0K .......... .......... ........ 5.18G=0s 220s 220s 2025-02-19 11:02:51 (5.18 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=54&data_input_id=16’ saved [29207] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=55&data_input_id=16 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=55&data_input_id=16’ 220s 220s 0K .......... .......... ........ 6.48G=0s 220s 220s 2025-02-19 11:02:51 (6.48 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=55&data_input_id=16’ saved [29207] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=67&data_input_id=18 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=67&data_input_id=18’ 220s 220s 0K .......... .......... ......... 5.73G=0s 220s 220s 2025-02-19 11:02:51 (5.73 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=67&data_input_id=18’ saved [30328] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=18 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=18’ 220s 220s 0K .......... .......... ........ 4.75G=0s 220s 220s 2025-02-19 11:02:51 (4.75 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=18’ saved [29120] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=68&data_input_id=18 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=68&data_input_id=18’ 220s 220s 0K .......... .......... ........ 6.01G=0s 220s 220s 2025-02-19 11:02:51 (6.01 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=68&data_input_id=18’ saved [29145] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=69&data_input_id=19 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=69&data_input_id=19’ 220s 220s 0K .......... .......... ......... 5.56G=0s 220s 220s 2025-02-19 11:02:51 (5.56 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=69&data_input_id=19’ saved [30332] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=19 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=19’ 220s 220s 0K .......... .......... ........ 5.91G=0s 220s 220s 2025-02-19 11:02:51 (5.91 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=19’ saved [29124] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=70&data_input_id=19 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=70&data_input_id=19’ 220s 220s 0K .......... .......... ........ 5.65G=0s 220s 220s 2025-02-19 11:02:51 (5.65 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=70&data_input_id=19’ saved [29149] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=23 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=23’ 220s 220s 0K .......... .......... ........ 5.60G=0s 220s 220s 2025-02-19 11:02:51 (5.60 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=23’ saved [29124] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=83&data_input_id=23 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=83&data_input_id=23’ 220s 220s 0K .......... .......... ........ 6.56G=0s 220s 220s 2025-02-19 11:02:51 (6.56 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=83&data_input_id=23’ saved [29185] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=82&data_input_id=23 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=82&data_input_id=23’ 220s 220s 0K .......... .......... ........ 5.88G=0s 220s 220s 2025-02-19 11:02:51 (5.88 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=82&data_input_id=23’ saved [29164] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=33 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=33’ 220s 220s 0K .......... .......... ........ 6.44G=0s 220s 220s 2025-02-19 11:02:51 (6.44 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=33’ saved [29141] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=108&data_input_id=33 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=108&data_input_id=33’ 220s 220s 0K .......... .......... ........ 6.82G=0s 220s 220s 2025-02-19 11:02:51 (6.82 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=108&data_input_id=33’ saved [29227] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=26 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=26’ 220s 220s 0K .......... .......... ........ 6.16G=0s 220s 220s 2025-02-19 11:02:51 (6.16 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=26’ saved [29131] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=89&data_input_id=26 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=89&data_input_id=26’ 220s 220s 0K .......... .......... ........ 6.69G=0s 220s 220s 2025-02-19 11:02:51 (6.69 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=89&data_input_id=26’ saved [29210] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=34 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=34’ 220s 220s 0K .......... .......... ........ 6.72G=0s 220s 220s 2025-02-19 11:02:51 (6.72 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=34’ saved [29132] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=109&data_input_id=34 220s Connecting to localhost (localhost)|::1|:80... connected. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=109&data_input_id=34’ 220s 220s 0K .......... .......... ........ 6.92G=0s 220s 220s 2025-02-19 11:02:51 (6.92 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=109&data_input_id=34’ saved [29209] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=35 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=35’ 220s 220s 0K .......... .......... ........ 6.75G=0s 220s 220s 2025-02-19 11:02:51 (6.75 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=35’ saved [29135] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=110&data_input_id=35 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=110&data_input_id=35’ 220s 220s 0K .......... .......... ........ 6.58G=0s 220s 220s 2025-02-19 11:02:51 (6.58 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=110&data_input_id=35’ saved [29212] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=36’ 220s 220s 0K .......... .......... ........ 3.62G=0s 220s 220s 2025-02-19 11:02:51 (3.62 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=36’ saved [29138] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=116&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=116&data_input_id=36’ 220s 220s 0K .......... .......... ........ 6.12G=0s 220s 220s 2025-02-19 11:02:51 (6.12 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=116&data_input_id=36’ saved [29233] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=111&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=111&data_input_id=36’ 220s 220s 0K .......... .......... ........ 5.54G=0s 220s 220s 2025-02-19 11:02:51 (5.54 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=111&data_input_id=36’ saved [29230] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=114&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=114&data_input_id=36’ 220s 220s 0K .......... .......... ........ 6.78G=0s 220s 220s 2025-02-19 11:02:51 (6.78 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=114&data_input_id=36’ saved [29242] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=112&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=112&data_input_id=36’ 220s 220s 0K .......... .......... ........ 1.85G=0s 220s 220s 2025-02-19 11:02:51 (1.85 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=112&data_input_id=36’ saved [29232] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=113&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=113&data_input_id=36’ 220s 220s 0K .......... .......... ........ 6.93G=0s 220s 220s 2025-02-19 11:02:51 (6.93 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=113&data_input_id=36’ saved [29250] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=115&data_input_id=36 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=115&data_input_id=36’ 220s 220s 0K .......... .......... ........ 6.51G=0s 220s 220s 2025-02-19 11:02:51 (6.51 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=115&data_input_id=36’ saved [29216] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=29 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 220s Length: unspecified [text/html] 220s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=29’ 220s 220s 0K .......... .......... ........ 4.02G=0s 220s 220s 2025-02-19 11:02:51 (4.02 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=29’ saved [29143] 220s 220s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=98&data_input_id=29 220s Reusing existing connection to [localhost]:80. 220s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=98&data_input_id=29’ 221s 221s 0K .......... .......... ........ 4.50G=0s 221s 221s 2025-02-19 11:02:51 (4.50 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=98&data_input_id=29’ saved [29205] 221s 221s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=28 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=28’ 221s 221s 0K .......... .......... ........ 4.06G=0s 221s 221s 2025-02-19 11:02:51 (4.06 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=28’ saved [29141] 221s 221s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=97&data_input_id=28 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=97&data_input_id=28’ 221s 221s 0K .......... .......... ........ 3.87G=0s 221s 221s 2025-02-19 11:02:51 (3.87 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=97&data_input_id=28’ saved [29224] 221s 221s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=24 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=24’ 221s 221s 0K .......... .......... ........ 4.11G=0s 221s 221s 2025-02-19 11:02:51 (4.11 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=24’ saved [29124] 221s 221s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=85&data_input_id=24 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=85&data_input_id=24’ 221s 221s 0K .......... .......... ........ 4.20G=0s 221s 221s 2025-02-19 11:02:51 (4.20 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=85&data_input_id=24’ saved [29164] 221s 221s --2025-02-19 11:02:51-- http://localhost/cacti/data_input.php?action=field_edit&id=86&data_input_id=24 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=86&data_input_id=24’ 221s 221s 0K .......... .......... ........ 4.08G=0s 221s 221s 2025-02-19 11:02:52 (4.08 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=86&data_input_id=24’ saved [29194] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=84&data_input_id=24 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=84&data_input_id=24’ 221s 221s 0K .......... .......... ........ 4.15G=0s 221s 221s 2025-02-19 11:02:52 (4.15 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=84&data_input_id=24’ saved [29156] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=22’ 221s 221s 0K .......... .......... ........ 4.17G=0s 221s 221s 2025-02-19 11:02:52 (4.17 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=22’ saved [29130] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=76&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=76&data_input_id=22’ 221s 221s 0K .......... .......... ........ 4.44G=0s 221s 221s 2025-02-19 11:02:52 (4.44 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=76&data_input_id=22’ saved [29194] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=78&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=78&data_input_id=22’ 221s 221s 0K .......... .......... ........ 5.58G=0s 221s 221s 2025-02-19 11:02:52 (5.58 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=78&data_input_id=22’ saved [29169] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=77&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=77&data_input_id=22’ 221s 221s 0K .......... .......... ........ 3.92G=0s 221s 221s 2025-02-19 11:02:52 (3.92 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=77&data_input_id=22’ saved [29197] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=80&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=80&data_input_id=22’ 221s 221s 0K .......... .......... ........ 4.14G=0s 221s 221s 2025-02-19 11:02:52 (4.14 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=80&data_input_id=22’ saved [29197] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=75&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=75&data_input_id=22’ 221s 221s 0K .......... .......... ........ 5.07G=0s 221s 221s 2025-02-19 11:02:52 (5.07 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=75&data_input_id=22’ saved [29202] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=79&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=79&data_input_id=22’ 221s 221s 0K .......... .......... ........ 4.00G=0s 221s 221s 2025-02-19 11:02:52 (4.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=79&data_input_id=22’ saved [29183] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=81&data_input_id=22 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=81&data_input_id=22’ 221s 221s 0K .......... .......... ........ 2.33G=0s 221s 221s 2025-02-19 11:02:52 (2.33 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=81&data_input_id=22’ saved [29171] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=25 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=25’ 221s 221s 0K .......... .......... ........ 4.32G=0s 221s 221s 2025-02-19 11:02:52 (4.32 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=25’ saved [29135] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=88&data_input_id=25 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=88&data_input_id=25’ 221s 221s 0K .......... .......... ........ 4.24G=0s 221s 221s 2025-02-19 11:02:52 (4.24 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=88&data_input_id=25’ saved [29211] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=87&data_input_id=25 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=87&data_input_id=25’ 221s 221s 0K .......... .......... ........ 4.15G=0s 221s 221s 2025-02-19 11:02:52 (4.15 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=87&data_input_id=25’ saved [29187] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=31 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=31’ 221s 221s 0K .......... .......... ........ 4.02G=0s 221s 221s 2025-02-19 11:02:52 (4.02 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=31’ saved [29133] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=106&data_input_id=31 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=106&data_input_id=31’ 221s 221s 0K .......... .......... ........ 4.77G=0s 221s 221s 2025-02-19 11:02:52 (4.77 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=106&data_input_id=31’ saved [29202] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=30’ 221s 221s 0K .......... .......... ........ 3.91G=0s 221s 221s 2025-02-19 11:02:52 (3.91 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=30’ saved [29136] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=104&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=104&data_input_id=30’ 221s 221s 0K .......... .......... ........ 3.93G=0s 221s 221s 2025-02-19 11:02:52 (3.93 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=104&data_input_id=30’ saved [29201] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=103&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=103&data_input_id=30’ 221s 221s 0K .......... .......... ........ 3.66G=0s 221s 221s 2025-02-19 11:02:52 (3.66 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=103&data_input_id=30’ saved [29199] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=99&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=99&data_input_id=30’ 221s 221s 0K .......... .......... ........ 4.34G=0s 221s 221s 2025-02-19 11:02:52 (4.34 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=99&data_input_id=30’ saved [29190] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=100&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=100&data_input_id=30’ 221s 221s 0K .......... .......... ........ 4.51G=0s 221s 221s 2025-02-19 11:02:52 (4.51 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=100&data_input_id=30’ saved [29198] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=101&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=101&data_input_id=30’ 221s 221s 0K .......... .......... ........ 4.77G=0s 221s 221s 2025-02-19 11:02:52 (4.77 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=101&data_input_id=30’ saved [29205] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=105&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=105&data_input_id=30’ 221s 221s 0K .......... .......... ........ 4.17G=0s 221s 221s 2025-02-19 11:02:52 (4.17 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=105&data_input_id=30’ saved [29199] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=102&data_input_id=30 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=102&data_input_id=30’ 221s 221s 0K .......... .......... ........ 3.89G=0s 221s 221s 2025-02-19 11:02:52 (3.89 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=102&data_input_id=30’ saved [29201] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=32 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=32’ 221s 221s 0K .......... .......... ........ 4.78G=0s 221s 221s 2025-02-19 11:02:52 (4.78 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=32’ saved [29132] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=107&data_input_id=32 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=107&data_input_id=32’ 221s 221s 0K .......... .......... ........ 4.05G=0s 221s 221s 2025-02-19 11:02:52 (4.05 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=107&data_input_id=32’ saved [29206] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=in&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=in&data_input_id=27’ 221s 221s 0K .......... .......... ......... 2.30G=0s 221s 221s 2025-02-19 11:02:52 (2.30 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=in&data_input_id=27’ saved [30362] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=27’ 221s 221s 0K .......... .......... ........ 4.13G=0s 221s 221s 2025-02-19 11:02:52 (4.13 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=27’ saved [29124] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=92&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=92&data_input_id=27’ 221s 221s 0K .......... .......... ........ 1.93G=0s 221s 221s 2025-02-19 11:02:52 (1.93 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=92&data_input_id=27’ saved [29177] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=94&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=94&data_input_id=27’ 221s 221s 0K .......... .......... ........ 4.38G=0s 221s 221s 2025-02-19 11:02:52 (4.38 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=94&data_input_id=27’ saved [29182] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=91&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=91&data_input_id=27’ 221s 221s 0K .......... .......... ........ 3.68G=0s 221s 221s 2025-02-19 11:02:52 (3.68 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=91&data_input_id=27’ saved [29173] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=93&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=93&data_input_id=27’ 221s 221s 0K .......... .......... ........ 3.60G=0s 221s 221s 2025-02-19 11:02:52 (3.60 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=93&data_input_id=27’ saved [29185] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=95&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=95&data_input_id=27’ 221s 221s 0K .......... .......... ........ 4.24G=0s 221s 221s 2025-02-19 11:02:52 (4.24 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=95&data_input_id=27’ saved [29172] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=96&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=96&data_input_id=27’ 221s 221s 0K .......... .......... ........ 3.83G=0s 221s 221s 2025-02-19 11:02:52 (3.83 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=96&data_input_id=27’ saved [29180] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=90&data_input_id=27 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=90&data_input_id=27’ 221s 221s 0K .......... .......... ........ 4.88G=0s 221s 221s 2025-02-19 11:02:52 (4.88 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=90&data_input_id=27’ saved [29166] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=71&data_input_id=20 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=71&data_input_id=20’ 221s 221s 0K .......... .......... ......... 3.94G=0s 221s 221s 2025-02-19 11:02:52 (3.94 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=71&data_input_id=20’ saved [30346] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=20 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=20’ 221s 221s 0K .......... .......... ........ 4.13G=0s 221s 221s 2025-02-19 11:02:52 (4.13 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=20’ saved [29126] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=72&data_input_id=20 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=72&data_input_id=20’ 221s 221s 0K .......... .......... ........ 4.22G=0s 221s 221s 2025-02-19 11:02:52 (4.22 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=72&data_input_id=20’ saved [29195] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=73&data_input_id=21 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=73&data_input_id=21’ 221s 221s 0K .......... .......... ......... 4.45G=0s 221s 221s 2025-02-19 11:02:52 (4.45 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=73&data_input_id=21’ saved [30340] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=21 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=21’ 221s 221s 0K .......... .......... ........ 4.05G=0s 221s 221s 2025-02-19 11:02:52 (4.05 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=21’ saved [29120] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=74&data_input_id=21 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=74&data_input_id=21’ 221s 221s 0K .......... .......... ........ 4.22G=0s 221s 221s 2025-02-19 11:02:52 (4.22 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=74&data_input_id=21’ saved [29171] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=123&data_input_id=38 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=123&data_input_id=38’ 221s 221s 0K .......... .......... ......... 4.41G=0s 221s 221s 2025-02-19 11:02:52 (4.41 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=123&data_input_id=38’ saved [30350] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=38 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=38’ 221s 221s 0K .......... .......... ........ 4.34G=0s 221s 221s 2025-02-19 11:02:52 (4.34 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=38’ saved [29128] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=124&data_input_id=38 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=124&data_input_id=38’ 221s 221s 0K .......... .......... ........ 4.49G=0s 221s 221s 2025-02-19 11:02:52 (4.49 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=124&data_input_id=38’ saved [29146] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=117&data_input_id=37 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=117&data_input_id=37’ 221s 221s 0K .......... .......... ......... 5.54G=0s 221s 221s 2025-02-19 11:02:52 (5.54 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=117&data_input_id=37’ saved [30340] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=37 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=37’ 221s 221s 0K .......... .......... ........ 4.30G=0s 221s 221s 2025-02-19 11:02:52 (4.30 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=37’ saved [29118] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=122&data_input_id=37 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=122&data_input_id=37’ 221s 221s 0K .......... .......... ........ 3.92G=0s 221s 221s 2025-02-19 11:02:52 (3.92 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=122&data_input_id=37’ saved [29157] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=121&data_input_id=37 221s Reusing existing connection to [localhost]:80. 221s HTTP request sent, awaiting response... 200 OK 221s Length: unspecified [text/html] 221s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=121&data_input_id=37’ 221s 221s 0K .......... .......... ........ 4.10G=0s 221s 221s 2025-02-19 11:02:52 (4.10 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=121&data_input_id=37’ saved [29154] 221s 221s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=120&data_input_id=37 221s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=120&data_input_id=37’ 222s 222s 0K .......... .......... ........ 3.99G=0s 222s 222s 2025-02-19 11:02:52 (3.99 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=120&data_input_id=37’ saved [29151] 222s 222s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=118&data_input_id=37 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=118&data_input_id=37’ 222s 222s 0K .......... .......... ........ 4.12G=0s 222s 222s 2025-02-19 11:02:52 (4.12 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=118&data_input_id=37’ saved [29130] 222s 222s --2025-02-19 11:02:52-- http://localhost/cacti/data_input.php?action=field_edit&id=119&data_input_id=37 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=119&data_input_id=37’ 222s 222s 0K .......... .......... ........ 4.01G=0s 222s 222s 2025-02-19 11:02:53 (4.01 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=119&data_input_id=37’ saved [29148] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=134&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=134&data_input_id=41’ 222s 222s 0K .......... .......... ......... 4.27G=0s 222s 222s 2025-02-19 11:02:53 (4.27 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=134&data_input_id=41’ saved [30329] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=41’ 222s 222s 0K .......... .......... ........ 4.30G=0s 222s 222s 2025-02-19 11:02:53 (4.30 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=41’ saved [29120] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=137&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=137&data_input_id=41’ 222s 222s 0K .......... .......... ........ 3.98G=0s 222s 222s 2025-02-19 11:02:53 (3.98 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=137&data_input_id=41’ saved [29160] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=136&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=136&data_input_id=41’ 222s 222s 0K .......... .......... ........ 3.71G=0s 222s 222s 2025-02-19 11:02:53 (3.71 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=136&data_input_id=41’ saved [29170] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=139&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=139&data_input_id=41’ 222s 222s 0K .......... .......... ........ 3.62G=0s 222s 222s 2025-02-19 11:02:53 (3.62 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=139&data_input_id=41’ saved [29162] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=135&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=135&data_input_id=41’ 222s 222s 0K .......... .......... ........ 3.71G=0s 222s 222s 2025-02-19 11:02:53 (3.71 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=135&data_input_id=41’ saved [29174] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=138&data_input_id=41 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=138&data_input_id=41’ 222s 222s 0K .......... .......... ........ 4.00G=0s 222s 222s 2025-02-19 11:02:53 (4.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=138&data_input_id=41’ saved [29158] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=131&data_input_id=40 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=131&data_input_id=40’ 222s 222s 0K .......... .......... ......... 4.23G=0s 222s 222s 2025-02-19 11:02:53 (4.23 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=131&data_input_id=40’ saved [30339] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=40 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=40’ 222s 222s 0K .......... .......... ........ 3.88G=0s 222s 222s 2025-02-19 11:02:53 (3.88 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=40’ saved [29130] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=133&data_input_id=40 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=133&data_input_id=40’ 222s 222s 0K .......... .......... ........ 3.73G=0s 222s 222s 2025-02-19 11:02:53 (3.73 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=133&data_input_id=40’ saved [29152] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=132&data_input_id=40 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=132&data_input_id=40’ 222s 222s 0K .......... .......... ........ 3.68G=0s 222s 222s 2025-02-19 11:02:53 (3.68 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=132&data_input_id=40’ saved [29156] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=125&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=125&data_input_id=39’ 222s 222s 0K .......... .......... ......... 3.87G=0s 222s 222s 2025-02-19 11:02:53 (3.87 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=125&data_input_id=39’ saved [30333] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=39’ 222s 222s 0K .......... .......... ........ 3.81G=0s 222s 222s 2025-02-19 11:02:53 (3.81 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=39’ saved [29124] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=127&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=127&data_input_id=39’ 222s 222s 0K .......... .......... ........ 4.30G=0s 222s 222s 2025-02-19 11:02:53 (4.30 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=127&data_input_id=39’ saved [29178] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=126&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=126&data_input_id=39’ 222s 222s 0K .......... .......... ........ 3.98G=0s 222s 222s 2025-02-19 11:02:53 (3.98 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=126&data_input_id=39’ saved [29182] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=130&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=130&data_input_id=39’ 222s 222s 0K .......... .......... ........ 3.64G=0s 222s 222s 2025-02-19 11:02:53 (3.64 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=130&data_input_id=39’ saved [29187] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=129&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=129&data_input_id=39’ 222s 222s 0K .......... .......... ........ 4.01G=0s 222s 222s 2025-02-19 11:02:53 (4.01 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=129&data_input_id=39’ saved [29183] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=128&data_input_id=39 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=128&data_input_id=39’ 222s 222s 0K .......... .......... ........ 3.69G=0s 222s 222s 2025-02-19 11:02:53 (3.69 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=128&data_input_id=39’ saved [29183] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=22&data_input_id=6 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=22&data_input_id=6’ 222s 222s 0K .......... .......... ......... 3.55G=0s 222s 222s 2025-02-19 11:02:53 (3.55 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=22&data_input_id=6’ saved [30332] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=6 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=6’ 222s 222s 0K .......... .......... ........ 4.06G=0s 222s 222s 2025-02-19 11:02:53 (4.06 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=6’ saved [29127] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/data_input.php?action=field_edit&id=23&data_input_id=6 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=23&data_input_id=6’ 222s 222s 0K .......... .......... ........ 3.99G=0s 222s 222s 2025-02-19 11:02:53 (3.99 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=23&data_input_id=6’ saved [29180] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=1 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=1’ 222s 222s 0K .......... .......... .......... .......... .......... 3.41G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (3.98 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=1’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=2 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=2’ 222s 222s 0K .......... .......... .......... .......... .......... 4.02G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.69 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=2’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=5 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=5’ 222s 222s 0K .......... .......... .......... .......... .......... 4.35G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.08 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=5’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=3 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=3’ 222s 222s 0K .......... .......... .......... .......... .......... 4.03G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.71 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=3’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=4 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=4’ 222s 222s 0K .......... .......... .......... .......... .......... 4.31G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.04 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=4’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=7 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=7’ 222s 222s 0K .......... .......... .......... .......... .......... 3.29G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (3.85 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=7’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=8 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=8’ 222s 222s 0K .......... .......... .......... .......... .......... 3.24G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (3.78 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=8’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=9 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=9’ 222s 222s 0K .......... .......... .......... .......... .......... 3.59G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.19 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=9’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=6 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=6’ 222s 222s 0K .......... .......... .......... .......... .......... 3.32G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (3.88 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=6’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=10 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=10’ 222s 222s 0K .......... .......... .......... .......... .......... 4.33G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.06 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=10’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=11 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=11’ 222s 222s 0K .......... .......... .......... .......... .......... 4.87G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.68 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=11’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=12 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=12’ 222s 222s 0K .......... .......... .......... .......... .......... 3.02G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (3.53 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=12’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=13 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=13’ 222s 222s 0K .......... .......... .......... .......... .......... 4.37G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.10 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=13’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=14 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=14’ 222s 222s 0K .......... .......... .......... .......... .......... 4.52G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.28 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=14’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=15 222s Connecting to localhost (localhost)|::1|:80... connected. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=15’ 222s 222s 0K .......... .......... .......... .......... .......... 4.22G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.92 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=15’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=16 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=16’ 222s 222s 0K .......... .......... .......... .......... .......... 4.66G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.45 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=16’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=17 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=17’ 222s 222s 0K .......... .......... .......... .......... .......... 4.21G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.92 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=17’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=18 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=18’ 222s 222s 0K .......... .......... .......... .......... .......... 4.55G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.31 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=18’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=19 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=19’ 222s 222s 0K .......... .......... .......... .......... .......... 4.38G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (5.12 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=19’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=20 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=20’ 222s 222s 0K .......... .......... .......... .......... .......... 3.09G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (3.61 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=20’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=21 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=21’ 222s 222s 0K .......... .......... .......... .......... .......... 4.01G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.69 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=21’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=22 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=22’ 222s 222s 0K .......... .......... .......... .......... .......... 4.19G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.90 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=22’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=23 222s Reusing existing connection to [localhost]:80. 222s HTTP request sent, awaiting response... 200 OK 222s Length: unspecified [text/html] 222s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=23’ 222s 222s 0K .......... .......... .......... .......... .......... 4.19G 222s 50K ........ 15.6T=0s 222s 222s 2025-02-19 11:02:53 (4.89 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=23’ saved [59797] 222s 222s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=24 222s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=24’ 223s 223s 0K .......... .......... .......... .......... .......... 4.15G 223s 50K ........ 15.6T=0s 223s 223s 2025-02-19 11:02:53 (4.85 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=24’ saved [59797] 223s 223s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=25 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=25’ 223s 223s 0K .......... .......... .......... .......... .......... 3.94G 223s 50K ........ 15.6T=0s 223s 223s 2025-02-19 11:02:53 (4.60 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=25’ saved [59797] 223s 223s --2025-02-19 11:02:53-- http://localhost/cacti/host.php?action=edit&host_template_id=26 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=26’ 223s 223s 0K .......... .......... .......... .......... .......... 4.12G 223s 50K ........ 15.6T=0s 223s 223s 2025-02-19 11:02:54 (4.82 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=26’ saved [59797] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/host.php?action=edit&host_template_id=27 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=27’ 223s 223s 0K .......... .......... .......... .......... .......... 4.09G 223s 50K ........ 15.6T=0s 223s 223s 2025-02-19 11:02:54 (4.78 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=27’ saved [59797] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 2.21G 223s 50K .......... .......... .......... .......... .......... 202M 223s 100K .......... ....... 32.4T=0s 223s 223s 2025-02-19 11:02:54 (435 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=2’ saved [120198] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=5&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=5&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 3.38G 223s 50K .......... .......... .......... .......... .......... 84.6M 223s 100K .......... ....... 32.4T=0.001s 223s 223s 2025-02-19 11:02:54 (194 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=5&graph_template_id=2’ saved [120237] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=5&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=5&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 4.39G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (5.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=5&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=6&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=6&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 3.72G 223s 50K .......... .......... .......... .......... .......... 75.4M 223s 100K .......... ....... 32.4T=0.001s 223s 223s 2025-02-19 11:02:54 (174 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=6&graph_template_id=2’ saved [120219] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=6&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=6&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 4.31G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (5.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=6&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=6&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=6&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 2.76G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (3.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=6&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=7&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=7&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 3.34G 223s 50K .......... .......... .......... .......... .......... 1.09G 223s 100K .......... ....... 32.4T=0s 223s 223s 2025-02-19 11:02:54 (1.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=7&graph_template_id=2’ saved [120219] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=7&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=7&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.57G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (8.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=7&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=7&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=7&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.52G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (7.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=7&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=8&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=8&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 4.55G 223s 50K .......... .......... .......... .......... .......... 86.0M 223s 100K .......... ....... 32.4T=0.001s 223s 223s 2025-02-19 11:02:54 (198 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=8&graph_template_id=2’ saved [120226] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=8&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=8&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 8.16G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (9.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=8&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=8&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=8&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 7.43G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (9.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=8&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=9&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=9&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.32G 223s 50K .......... .......... .......... .......... .......... 504M 223s 100K .......... ....... 32.4T=0s 223s 223s 2025-02-19 11:02:54 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=9&graph_template_id=2’ saved [120239] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=9&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=9&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 2.18G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (2.66 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=9&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=9&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=9&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.52G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (7.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=9&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=10&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=10&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.59G 223s 50K .......... .......... .......... .......... .......... 133M 223s 100K .......... ....... 32.4T=0s 223s 223s 2025-02-19 11:02:54 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=10&graph_template_id=2’ saved [120220] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=10&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=10&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 5.67G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (6.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=10&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=10&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=10&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 5.98G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (7.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=10&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=11&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=11&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.80G 223s 50K .......... .......... .......... .......... .......... 119M 223s 100K .......... ....... 32.4T=0s 223s 223s 2025-02-19 11:02:54 (276 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=11&graph_template_id=2’ saved [120220] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=11&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=11&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 7.73G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (9.43 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=11&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=11&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=11&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 7.58G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (9.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=11&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=12&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=12&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 6.54G 223s 50K .......... .......... .......... .......... .......... 132M 223s 100K .......... ....... 32.4T=0s 223s 223s 2025-02-19 11:02:54 (304 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=12&graph_template_id=2’ saved [120227] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=12&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=12&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .......... .......... 5.23G 223s 50K .......... . 20.5T=0s 223s 223s 2025-02-19 11:02:54 (6.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=12&graph_template_id=2’ saved [62474] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=2’ 223s 223s 0K .......... .......... .......... . 5.49G=0s 223s 223s 2025-02-19 11:02:54 (5.49 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=2’ saved [32702] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=2&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=2&graph_template_id=2’ 223s 223s 0K .......... .......... .......... . 6.74G=0s 223s 223s 2025-02-19 11:02:54 (6.74 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=2&graph_template_id=2’ saved [32766] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=3&graph_template_id=2 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=3&graph_template_id=2’ 223s 223s 0K .......... .......... .......... .. 7.45G=0s 223s 223s 2025-02-19 11:02:54 (7.45 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=3&graph_template_id=2’ saved [32768] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=9’ 223s 223s 0K .......... .......... .......... .......... .......... 4.61G 223s 50K .......... .......... .......... .......... .......... 407M 223s 100K .......... ....... 32.2T=0s 223s 223s 2025-02-19 11:02:54 (879 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=9’ saved [120125] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=57&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=57&graph_template_id=9’ 223s 223s 0K .......... .......... .......... .......... .......... 4.17G 223s 50K .......... .......... .......... .......... .......... 125M 223s 100K .......... ....... 32.3T=0s 223s 223s 2025-02-19 11:02:54 (284 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=57&graph_template_id=9’ saved [120155] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=57&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=57&graph_template_id=9’ 223s 223s 0K .......... .......... .......... .......... .......... 7.93G 223s 50K .... 9.24T=0s 223s 223s 2025-02-19 11:02:54 (8.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=57&graph_template_id=9’ saved [56282] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=58&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=58&graph_template_id=9’ 223s 223s 0K .......... .......... .......... .......... .......... 7.04G 223s 50K .......... .......... .......... .......... .......... 200M 223s 100K .......... ....... 32.3T=0s 223s 223s 2025-02-19 11:02:54 (457 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=58&graph_template_id=9’ saved [120148] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=58&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=58&graph_template_id=9’ 223s 223s 0K .......... .......... .......... .......... .......... 7.66G 223s 50K .... 9.24T=0s 223s 223s 2025-02-19 11:02:54 (8.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=58&graph_template_id=9’ saved [56282] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=9’ 223s 223s 0K .......... .......... ......... 6.17G=0s 223s 223s 2025-02-19 11:02:54 (6.17 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=9’ saved [30584] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=17&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=17&graph_template_id=9’ 223s 223s 0K .......... .......... ......... 6.49G=0s 223s 223s 2025-02-19 11:02:54 (6.49 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=17&graph_template_id=9’ saved [30617] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=18&graph_template_id=9 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=18&graph_template_id=9’ 223s 223s 0K .......... .......... ......... 3.81G=0s 223s 223s 2025-02-19 11:02:54 (3.81 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=18&graph_template_id=9’ saved [30633] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=6’ 223s 223s 0K .......... .......... .......... .......... .......... 3.79G 223s 50K .......... .......... .......... .......... .......... 97.2M 223s 100K .......... ....... 32.2T=0.001s 223s 223s 2025-02-19 11:02:54 (222 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=6’ saved [120121] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=41&graph_template_id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=41&graph_template_id=6’ 223s 223s 0K .......... .......... .......... .......... .......... 7.00G 223s 50K .......... .......... .......... .......... .......... 111M 223s 100K .......... ....... 32.3T=0s 223s 223s 2025-02-19 11:02:54 (257 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=41&graph_template_id=6’ saved [120157] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=41&graph_template_id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=41&graph_template_id=6’ 223s 223s 0K .......... .......... .......... .......... .......... 7.45G 223s 50K ...... 12.3T=0s 223s 223s 2025-02-19 11:02:54 (8.43 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=41&graph_template_id=6’ saved [57954] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=42&graph_template_id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=42&graph_template_id=6’ 223s 223s 0K .......... .......... .......... .......... .......... 7.10G 223s 50K .......... .......... .......... .......... .......... 122M 223s 100K .......... ....... 32.3T=0s 223s 223s 2025-02-19 11:02:54 (281 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=42&graph_template_id=6’ saved [120144] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=42&graph_template_id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 200 OK 223s Length: unspecified [text/html] 223s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=42&graph_template_id=6’ 223s 223s 0K .......... .......... .......... .......... .......... 4.30G 223s 50K ...... 12.3T=0s 223s 223s 2025-02-19 11:02:54 (4.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=42&graph_template_id=6’ saved [57954] 223s 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=42&graph_template_id=6 223s Reusing existing connection to [localhost]:80. 223s HTTP request sent, awaiting response... 302 Found 223s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 223s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 223s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=42&graph_template_id=6’ 224s 224s 0K .......... .......... .......... .......... .......... 3.71G 224s 50K ...... 12.3T=0s 224s 224s 2025-02-19 11:02:54 (4.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=42&graph_template_id=6’ saved [57954] 224s 224s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=43&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=43&graph_template_id=6’ 224s 224s 0K .......... .......... .......... .......... .......... 4.90G 224s 50K .......... .......... .......... .......... .......... 122M 224s 100K .......... ....... 32.3T=0s 224s 224s 2025-02-19 11:02:54 (280 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=43&graph_template_id=6’ saved [120144] 224s 224s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=43&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 224s --2025-02-19 11:02:54-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=43&graph_template_id=6’ 224s 224s 0K .......... .......... .......... .......... .......... 5.36G 224s 50K ...... 12.3T=0s 224s 224s 2025-02-19 11:02:55 (6.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=43&graph_template_id=6’ saved [57954] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=43&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=43&graph_template_id=6’ 224s 224s 0K .......... .......... .......... .......... .......... 4.59G 224s 50K ...... 12.3T=0s 224s 224s 2025-02-19 11:02:55 (5.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=43&graph_template_id=6’ saved [57954] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=44&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=44&graph_template_id=6’ 224s 224s 0K .......... .......... .......... .......... .......... 4.37G 224s 50K .......... .......... .......... .......... .......... 107M 224s 100K .......... ....... 32.3T=0s 224s 224s 2025-02-19 11:02:55 (246 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=44&graph_template_id=6’ saved [120151] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=44&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=44&graph_template_id=6’ 224s 224s 0K .......... .......... .......... .......... .......... 6.30G 224s 50K ...... 12.3T=0s 224s 224s 2025-02-19 11:02:55 (7.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=44&graph_template_id=6’ saved [57954] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=6’ 224s 224s 0K .......... .......... .......... 7.26G=0s 224s 224s 2025-02-19 11:02:55 (7.26 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=6’ saved [31299] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=12&graph_template_id=6 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=12&graph_template_id=6’ 224s 224s 0K .......... .......... .......... 6.99G=0s 224s 224s 2025-02-19 11:02:55 (6.99 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=12&graph_template_id=6’ saved [31362] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 7.25G 224s 50K .......... .......... .......... .......... .......... 116M 224s 100K .......... ....... 32.2T=0s 224s 224s 2025-02-19 11:02:55 (268 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=8’ saved [120113] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=53&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=53&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 5.39G 224s 50K .......... .......... .......... .......... .......... 126M 224s 100K .......... ....... 32.3T=0s 224s 224s 2025-02-19 11:02:55 (290 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=53&graph_template_id=8’ saved [120149] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=53&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=53&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 6.34G 224s 50K ...... 12.2T=0s 224s 224s 2025-02-19 11:02:55 (7.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=53&graph_template_id=8’ saved [57925] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=54&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=54&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 5.72G 224s 50K .......... .......... .......... .......... .......... 183M 224s 100K .......... ....... 32.3T=0s 224s 224s 2025-02-19 11:02:55 (416 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=54&graph_template_id=8’ saved [120136] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=54&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=54&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 6.96G 224s 50K ...... 12.2T=0s 224s 224s 2025-02-19 11:02:55 (7.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=54&graph_template_id=8’ saved [57925] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=54&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=54&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 6.66G 224s 50K ...... 12.2T=0s 224s 224s 2025-02-19 11:02:55 (7.54 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=54&graph_template_id=8’ saved [57925] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=55&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=55&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 5.71G 224s 50K .......... .......... .......... .......... .......... 134M 224s 100K .......... ....... 32.3T=0s 224s 224s 2025-02-19 11:02:55 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=55&graph_template_id=8’ saved [120136] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=55&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=55&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 7.03G 224s 50K ...... 12.2T=0s 224s 224s 2025-02-19 11:02:55 (7.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=55&graph_template_id=8’ saved [57925] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=55&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=55&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 8.05G 224s 50K ...... 12.2T=0s 224s 224s 2025-02-19 11:02:55 (9.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=55&graph_template_id=8’ saved [57925] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=56&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=56&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 6.54G 224s 50K .......... .......... .......... .......... .......... 122M 224s 100K .......... ....... 32.3T=0s 224s 224s 2025-02-19 11:02:55 (281 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=56&graph_template_id=8’ saved [120143] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=56&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=56&graph_template_id=8’ 224s 224s 0K .......... .......... .......... .......... .......... 6.95G 224s 50K ...... 12.2T=0s 224s 224s 2025-02-19 11:02:55 (7.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=56&graph_template_id=8’ saved [57925] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=8’ 224s 224s 0K .......... .......... .......... 4.28G=0s 224s 224s 2025-02-19 11:02:55 (4.28 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=8’ saved [31292] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=16&graph_template_id=8 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=16&graph_template_id=8’ 224s 224s 0K .......... .......... .......... 3.98G=0s 224s 224s 2025-02-19 11:02:55 (3.98 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=16&graph_template_id=8’ saved [31358] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=5 224s Connecting to localhost (localhost)|::1|:80... connected. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 119M 224s 50K .......... .......... .......... .......... .......... 847M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (246 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=5’ saved [120591] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=33&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=33&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 68.3M 224s 50K .......... .......... .......... .......... .......... 93.1T 224s 100K .......... ....... 449M=0.001s 224s 224s 2025-02-19 11:02:55 (153 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=33&graph_template_id=5’ saved [120637] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=33&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=33&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 7.20G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (8.79 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=33&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=34&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=34&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 6.27G 224s 50K .......... .......... .......... .......... .......... 106M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (245 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=34&graph_template_id=5’ saved [120613] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=34&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=34&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 6.60G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (8.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=34&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=34&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=34&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 7.03G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (8.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=34&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=35&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=35&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 6.37G 224s 50K .......... .......... .......... .......... .......... 630M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (1.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=35&graph_template_id=5’ saved [120613] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=35&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=35&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.51G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=35&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=35&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=35&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 6.93G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (8.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=35&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=36&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=36&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.48G 224s 50K .......... .......... .......... .......... .......... 923M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (1.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=36&graph_template_id=5’ saved [120620] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=36&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=36&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 4.01G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (4.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=36&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=36&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=36&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.12G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=36&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=37&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=37&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 4.86G 224s 50K .......... .......... .......... .......... .......... 1.09G 224s 100K .......... ....... 33.2T=0s 224s 224s 2025-02-19 11:02:55 (2.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=37&graph_template_id=5’ saved [120639] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=37&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=37&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.36G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.55 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=37&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=37&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=37&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.18G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=37&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=38&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=38&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 3.47G 224s 50K .......... .......... .......... .......... .......... 865M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (1.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=38&graph_template_id=5’ saved [120613] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=38&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=38&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 4.16G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (5.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=38&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=38&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=38&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.38G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.57 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=38&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=39&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=39&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 4.38G 224s 50K .......... .......... .......... .......... .......... 451M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (965 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=39&graph_template_id=5’ saved [120613] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=39&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=39&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.13G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.27 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=39&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=39&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=39&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 5.13G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (6.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=39&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=40&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=40&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 1.07G 224s 50K .......... .......... .......... .......... .......... 921M 224s 100K .......... ....... 33.1T=0s 224s 224s 2025-02-19 11:02:55 (1.15 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=40&graph_template_id=5’ saved [120620] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=40&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 302 Found 224s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 224s Reusing existing connection to [localhost]:80. 224s HTTP request sent, awaiting response... 200 OK 224s Length: unspecified [text/html] 224s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=40&graph_template_id=5’ 224s 224s 0K .......... .......... .......... .......... .......... 4.66G 224s 50K .......... . 20.7T=0s 224s 224s 2025-02-19 11:02:55 (5.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=40&graph_template_id=5’ saved [62555] 224s 224s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=5 224s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=5’ 225s 225s 0K .......... .......... .......... . 4.00G=0s 225s 225s 2025-02-19 11:02:55 (4.00 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=5’ saved [32732] 225s 225s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=10&graph_template_id=5 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=10&graph_template_id=5’ 225s 225s 0K .......... .......... .......... .. 4.14G=0s 225s 225s 2025-02-19 11:02:55 (4.14 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=10&graph_template_id=5’ saved [32802] 225s 225s --2025-02-19 11:02:55-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=11&graph_template_id=5 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=11&graph_template_id=5’ 225s 225s 0K .......... .......... .......... .. 4.06G=0s 225s 225s 2025-02-19 11:02:56 (4.06 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=11&graph_template_id=5’ saved [32803] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 3.80G 225s 50K .......... .......... .......... .......... .......... 135M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=3’ saved [120578] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=13&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=13&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 2.84G 225s 50K .......... .......... .......... .......... .......... 44.6M 225s 100K .......... ....... 33.1T=0.001s 225s 225s 2025-02-19 11:02:56 (103 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=13&graph_template_id=3’ saved [120621] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=13&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=13&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 3.86G 225s 50K .......... .......... 23.4M=0.001s 225s 225s 2025-02-19 11:02:56 (80.4 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=13&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=14&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=14&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 3.67G 225s 50K .......... .......... .......... .......... .......... 113M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (259 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=14&graph_template_id=3’ saved [120601] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=14&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=14&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 3.96G 225s 50K .......... .......... 351M=0s 225s 225s 2025-02-19 11:02:56 (1007 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=14&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=14&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=14&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.91G 225s 50K .......... .......... 393M=0s 225s 225s 2025-02-19 11:02:56 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=14&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=15&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=15&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.86G 225s 50K .......... .......... .......... .......... .......... 910M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (1.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=15&graph_template_id=3’ saved [120601] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=15&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=15&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.65G 225s 50K .......... .......... 394M=0s 225s 225s 2025-02-19 11:02:56 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=15&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=15&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=15&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.60G 225s 50K .......... .......... 397M=0s 225s 225s 2025-02-19 11:02:56 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=15&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=16&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=16&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.78G 225s 50K .......... .......... .......... .......... .......... 927M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (1.79 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=16&graph_template_id=3’ saved [120608] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=16&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=16&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.48G 225s 50K .......... .......... 227M=0s 225s 225s 2025-02-19 11:02:56 (706 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=16&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=16&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=16&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.66G 225s 50K .......... .......... 261M=0s 225s 225s 2025-02-19 11:02:56 (842 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=16&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=17&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=17&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.13G 225s 50K .......... .......... .......... .......... .......... 645M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (1.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=17&graph_template_id=3’ saved [120622] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=17&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=17&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.69G 225s 50K .......... .......... 315M=0s 225s 225s 2025-02-19 11:02:56 (999 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=17&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=17&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=17&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.26G 225s 50K .......... .......... 310M=0s 225s 225s 2025-02-19 11:02:56 (978 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=17&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=18&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=18&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 6.36G 225s 50K .......... .......... .......... .......... .......... 584M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (1.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=18&graph_template_id=3’ saved [120600] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=18&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=18&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 4.70G 225s 50K .......... .......... 49.4M=0s 225s 225s 2025-02-19 11:02:56 (168 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=18&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=18&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=18&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 6.78G 225s 50K .......... .......... 55.7M=0s 225s 225s 2025-02-19 11:02:56 (190 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=18&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=19&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=19&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.00G 225s 50K .......... .......... .......... .......... .......... 122M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (284 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=19&graph_template_id=3’ saved [120600] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=19&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=19&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 6.75G 225s 50K .......... .......... 49.3M=0s 225s 225s 2025-02-19 11:02:56 (169 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=19&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=19&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=19&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 2.31G 225s 50K .......... .......... 50.1M=0s 225s 225s 2025-02-19 11:02:56 (166 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=19&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=20&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=20&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.58G 225s 50K .......... .......... .......... .......... .......... 120M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (279 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=20&graph_template_id=3’ saved [120607] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=20&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=20&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.56G 225s 50K .......... .......... 53.1M=0s 225s 225s 2025-02-19 11:02:56 (182 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=20&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=20&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=20&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.56G 225s 50K .......... .......... 48.8M=0s 225s 225s 2025-02-19 11:02:56 (168 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=20&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=21&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=21&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.65G 225s 50K .......... .......... .......... .......... .......... 127M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (294 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=21&graph_template_id=3’ saved [120616] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=21&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=21&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.55G 225s 50K .......... .......... 51.2M=0s 225s 225s 2025-02-19 11:02:56 (176 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=21&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=21&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=21&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 6.98G 225s 50K .......... .......... 57.7M=0s 225s 225s 2025-02-19 11:02:56 (197 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=21&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=22&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=22&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.49G 225s 50K .......... .......... .......... .......... .......... 130M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (302 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=22&graph_template_id=3’ saved [120602] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=22&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=22&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 1.45G 225s 50K .......... .......... 56.0M=0s 225s 225s 2025-02-19 11:02:56 (178 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=22&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=22&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=22&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 5.81G 225s 50K .......... .......... 51.4M=0s 225s 225s 2025-02-19 11:02:56 (176 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=22&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=23&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=23&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 5.92G 225s 50K .......... .......... .......... .......... .......... 121M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (280 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=23&graph_template_id=3’ saved [120602] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=23&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=23&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.33G 225s 50K .......... .......... 309M=0s 225s 225s 2025-02-19 11:02:56 (977 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=23&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=23&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=23&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 7.56G 225s 50K .......... .......... 309M=0s 225s 225s 2025-02-19 11:02:56 (981 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=23&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=24&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=24&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 6.16G 225s 50K .......... .......... .......... .......... .......... 274M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (618 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=24&graph_template_id=3’ saved [120609] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=24&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=24&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 2.44G 225s 50K .......... .......... 52.6M=0s 225s 225s 2025-02-19 11:02:56 (174 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=24&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=24&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=24&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 5.50G 225s 50K .......... .......... 45.1M=0s 225s 225s 2025-02-19 11:02:56 (154 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=24&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=25&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=25&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 5.54G 225s 50K .......... .......... .......... .......... .......... 113M 225s 100K .......... ....... 33.1T=0s 225s 225s 2025-02-19 11:02:56 (262 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=25&graph_template_id=3’ saved [120617] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=25&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Connecting to localhost (localhost)|::1|:80... connected. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=25&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 3.21G 225s 50K .......... .......... 60.8M=0s 225s 225s 2025-02-19 11:02:56 (203 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=25&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=25&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 302 Found 225s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 225s Reusing existing connection to [localhost]:80. 225s HTTP request sent, awaiting response... 200 OK 225s Length: unspecified [text/html] 225s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=25&graph_template_id=3’ 225s 225s 0K .......... .......... .......... .......... .......... 6.49G 225s 50K .......... .......... 47.9M=0s 225s 225s 2025-02-19 11:02:56 (164 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=25&graph_template_id=3’ saved [71782] 225s 225s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=26&graph_template_id=3 225s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=26&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 2.62G 226s 50K .......... .......... .......... .......... .......... 138M 226s 100K .......... ....... 33.1T=0s 226s 226s 2025-02-19 11:02:56 (309 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=26&graph_template_id=3’ saved [120601] 226s 226s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=26&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 226s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=26&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 4.43G 226s 50K .......... .......... 50.3M=0s 226s 226s 2025-02-19 11:02:56 (171 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=26&graph_template_id=3’ saved [71782] 226s 226s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=26&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 226s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=26&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 6.30G 226s 50K .......... .......... 46.7M=0s 226s 226s 2025-02-19 11:02:56 (160 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=26&graph_template_id=3’ saved [71782] 226s 226s --2025-02-19 11:02:56-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=27&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=27&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 5.59G 226s 50K .......... .......... .......... .......... .......... 123M 226s 100K .......... ....... 33.1T=0s 226s 226s 2025-02-19 11:02:57 (283 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=27&graph_template_id=3’ saved [120601] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=27&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=27&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 6.91G 226s 50K .......... .......... 57.3M=0s 226s 226s 2025-02-19 11:02:57 (196 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=27&graph_template_id=3’ saved [71782] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=27&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=27&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 2.34G 226s 50K .......... .......... 52.7M=0s 226s 226s 2025-02-19 11:02:57 (174 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=27&graph_template_id=3’ saved [71782] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=28&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=28&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 2.74G 226s 50K .......... .......... .......... .......... .......... 128M 226s 100K .......... ....... 33.1T=0s 226s 226s 2025-02-19 11:02:57 (289 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=28&graph_template_id=3’ saved [120608] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=28&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=28&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .......... .......... 5.04G 226s 50K .......... .......... 47.1M=0s 226s 226s 2025-02-19 11:02:57 (161 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=28&graph_template_id=3’ saved [71782] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .... 7.19G=0s 226s 226s 2025-02-19 11:02:57 (7.19 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=3’ saved [35567] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=6&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=6&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .... 7.14G=0s 226s 226s 2025-02-19 11:02:57 (7.14 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=6&graph_template_id=3’ saved [35629] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=5&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=5&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .... 3.41G=0s 226s 226s 2025-02-19 11:02:57 (3.41 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=5&graph_template_id=3’ saved [35631] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=4&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=4&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .... 6.48G=0s 226s 226s 2025-02-19 11:02:57 (6.48 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=4&graph_template_id=3’ saved [35632] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=7&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=7&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .... 6.09G=0s 226s 226s 2025-02-19 11:02:57 (6.09 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=7&graph_template_id=3’ saved [35600] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=8&graph_template_id=3 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=8&graph_template_id=3’ 226s 226s 0K .......... .......... .......... .... 5.74G=0s 226s 226s 2025-02-19 11:02:57 (5.74 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=8&graph_template_id=3’ saved [35630] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 4.78G 226s 50K .......... .......... .......... .......... .......... 120M 226s 100K .......... ....... 32.2T=0s 226s 226s 2025-02-19 11:02:57 (274 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=7’ saved [120108] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=45&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=45&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 2.27G 226s 50K .......... .......... .......... .......... .......... 124M 226s 100K .......... ....... 32.3T=0s 226s 226s 2025-02-19 11:02:57 (275 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=45&graph_template_id=7’ saved [120158] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=45&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=45&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 5.34G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (6.55 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=45&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=46&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=46&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 4.46G 226s 50K .......... .......... .......... .......... .......... 368M 226s 100K .......... ....... 32.3T=0s 226s 226s 2025-02-19 11:02:57 (799 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=46&graph_template_id=7’ saved [120140] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=46&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=46&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 8.10G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (9.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=46&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=46&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=46&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 7.36G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (9.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=46&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=47&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=47&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 6.16G 226s 50K .......... .......... .......... .......... .......... 125M 226s 100K .......... ....... 32.3T=0s 226s 226s 2025-02-19 11:02:57 (288 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=47&graph_template_id=7’ saved [120140] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=47&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=47&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 3.99G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (4.88 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=47&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=47&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=47&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 2.54G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (3.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=47&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=48&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=48&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 2.58G 226s 50K .......... .......... .......... .......... .......... 126M 226s 100K .......... ....... 32.3T=0s 226s 226s 2025-02-19 11:02:57 (282 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=48&graph_template_id=7’ saved [120147] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=48&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=48&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 2.66G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (3.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=48&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=48&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=48&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 6.48G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (7.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=48&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=49&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=49&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 5.50G 226s 50K .......... .......... .......... .......... .......... 115M 226s 100K .......... ....... 32.2T=0s 226s 226s 2025-02-19 11:02:57 (264 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=49&graph_template_id=7’ saved [120129] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=49&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=49&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 6.35G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (7.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=49&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=49&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=49&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 6.45G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (7.91 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=49&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=50&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=50&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 5.84G 226s 50K .......... .......... .......... .......... .......... 122M 226s 100K .......... ....... 32.2T=0s 226s 226s 2025-02-19 11:02:57 (282 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=50&graph_template_id=7’ saved [120119] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=50&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=50&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 6.79G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (8.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=50&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=50&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=50&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 7.54G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (9.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=50&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=51&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=51&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 2.45G 226s 50K .......... .......... .......... .......... .......... 122M 226s 100K .......... ....... 32.2T=0s 226s 226s 2025-02-19 11:02:57 (272 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=51&graph_template_id=7’ saved [120119] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=51&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=51&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 4.77G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (5.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=51&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=51&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=51&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 6.98G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (8.55 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=51&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=52&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=52&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 4.75G 226s 50K .......... .......... .......... .......... .......... 137M 226s 100K .......... ....... 32.2T=0s 226s 226s 2025-02-19 11:02:57 (312 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=52&graph_template_id=7’ saved [120126] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=52&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=52&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .......... .......... 5.64G 226s 50K .......... . 21.0T=0s 226s 226s 2025-02-19 11:02:57 (6.91 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=52&graph_template_id=7’ saved [62731] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=7’ 226s 226s 0K .......... .......... .......... . 5.45G=0s 226s 226s 2025-02-19 11:02:57 (5.45 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=7’ saved [32710] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=15&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=15&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .. 5.80G=0s 226s 226s 2025-02-19 11:02:57 (5.80 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=15&graph_template_id=7’ saved [32769] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=13&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=13&graph_template_id=7’ 226s 226s 0K .......... .......... .......... .. 3.19G=0s 226s 226s 2025-02-19 11:02:57 (3.19 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=13&graph_template_id=7’ saved [32779] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=14&graph_template_id=7 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=14&graph_template_id=7’ 226s 226s 0K .......... .......... .......... . 5.93G=0s 226s 226s 2025-02-19 11:02:57 (5.93 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=14&graph_template_id=7’ saved [32745] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=4’ 226s 226s 0K .......... .......... .......... .......... .......... 4.65G 226s 50K .......... .......... .......... .......... .......... 115M 226s 100K .......... ....... 32.2T=0s 226s 226s 2025-02-19 11:02:57 (264 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=4’ saved [120125] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=29&graph_template_id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=29&graph_template_id=4’ 226s 226s 0K .......... .......... .......... .......... .......... 6.83G 226s 50K .......... .......... .......... .......... .......... 115M 226s 100K .......... ....... 32.3T=0s 226s 226s 2025-02-19 11:02:57 (265 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=29&graph_template_id=4’ saved [120159] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=29&graph_template_id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=29&graph_template_id=4’ 226s 226s 0K .......... .......... .......... .......... .......... 6.78G 226s 50K ...... 12.3T=0s 226s 226s 2025-02-19 11:02:57 (7.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=29&graph_template_id=4’ saved [57971] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=30&graph_template_id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=30&graph_template_id=4’ 226s 226s 0K .......... .......... .......... .......... .......... 4.62G 226s 50K .......... .......... .......... .......... .......... 340M 226s 100K .......... ....... 32.3T=0s 226s 226s 2025-02-19 11:02:57 (744 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=30&graph_template_id=4’ saved [120148] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=30&graph_template_id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 200 OK 226s Length: unspecified [text/html] 226s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=30&graph_template_id=4’ 226s 226s 0K .......... .......... .......... .......... .......... 4.16G 226s 50K ...... 12.3T=0s 226s 226s 2025-02-19 11:02:57 (4.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=30&graph_template_id=4’ saved [57971] 226s 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=30&graph_template_id=4 226s Reusing existing connection to [localhost]:80. 226s HTTP request sent, awaiting response... 302 Found 226s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 226s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 226s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=30&graph_template_id=4’ 227s 227s 0K .......... .......... .......... .......... .......... 6.94G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:57 (7.86 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=30&graph_template_id=4’ saved [57971] 227s 227s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=31&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=31&graph_template_id=4’ 227s 227s 0K .......... .......... .......... .......... .......... 4.56G 227s 50K .......... .......... .......... .......... .......... 758M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:57 (1.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=31&graph_template_id=4’ saved [120148] 227s 227s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=31&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 227s --2025-02-19 11:02:57-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=31&graph_template_id=4’ 227s 227s 0K .......... .......... .......... .......... .......... 4.78G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (5.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=31&graph_template_id=4’ saved [57971] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=31&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=31&graph_template_id=4’ 227s 227s 0K .......... .......... .......... .......... .......... 5.97G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (6.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=31&graph_template_id=4’ saved [57971] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=32&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=32&graph_template_id=4’ 227s 227s 0K .......... .......... .......... .......... .......... 4.00G 227s 50K .......... .......... .......... .......... .......... 1024M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.88 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=32&graph_template_id=4’ saved [120155] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=32&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=32&graph_template_id=4’ 227s 227s 0K .......... .......... .......... .......... .......... 5.14G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (5.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=32&graph_template_id=4’ saved [57971] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=4’ 227s 227s 0K .......... .......... .......... 3.66G=0s 227s 227s 2025-02-19 11:02:58 (3.66 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=4’ saved [31297] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=9&graph_template_id=4 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=9&graph_template_id=4’ 227s 227s 0K .......... .......... .......... 4.26G=0s 227s 227s 2025-02-19 11:02:58 (4.26 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=9&graph_template_id=4’ saved [31367] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 3.81G 227s 50K .......... .......... .......... .......... .......... 191M 227s 100K .......... ....... 32.2T=0s 227s 227s 2025-02-19 11:02:58 (426 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=1’ saved [120115] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=1&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=1&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 4.18G 227s 50K .......... .......... .......... .......... .......... 48.3M 227s 100K .......... ....... 32.3T=0.001s 227s 227s 2025-02-19 11:02:58 (112 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=1&graph_template_id=1’ saved [120150] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=1&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=1&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 4.96G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (5.62 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=1&graph_template_id=1’ saved [57968] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=2&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=2&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 3.85G 227s 50K .......... .......... .......... .......... .......... 586M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=2&graph_template_id=1’ saved [120136] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=2&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=2&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 3.96G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (4.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=2&graph_template_id=1’ saved [57968] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=2&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=2&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 6.32G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (7.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=2&graph_template_id=1’ saved [57968] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=3&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=3&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 5.08G 227s 50K .......... .......... .......... .......... .......... 811M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=3&graph_template_id=1’ saved [120136] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=3&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=3&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 8.67G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (9.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=3&graph_template_id=1’ saved [57968] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=3&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=3&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 8.59G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (9.72 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=3&graph_template_id=1’ saved [57968] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=4&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=4&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 6.09G 227s 50K .......... .......... .......... .......... .......... 826M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=4&graph_template_id=1’ saved [120143] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=4&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=4&graph_template_id=1’ 227s 227s 0K .......... .......... .......... .......... .......... 7.73G 227s 50K ...... 12.3T=0s 227s 227s 2025-02-19 11:02:58 (8.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=4&graph_template_id=1’ saved [57968] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=1’ 227s 227s 0K .......... .......... .......... 6.85G=0s 227s 227s 2025-02-19 11:02:58 (6.85 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=1’ saved [31277] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=1&graph_template_id=1 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=1&graph_template_id=1’ 227s 227s 0K .......... .......... .......... 7.01G=0s 227s 227s 2025-02-19 11:02:58 (7.01 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=1&graph_template_id=1’ saved [31336] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=14 227s Connecting to localhost (localhost)|::1|:80... connected. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 2.86G 227s 50K .......... .......... .......... .......... .......... 808M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=14’ saved [120137] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=110&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=110&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 6.34G 227s 50K .......... .......... .......... .......... .......... 863M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=110&graph_template_id=14’ saved [120177] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=110&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=110&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 7.68G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (9.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=110&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=111&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=111&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.97G 227s 50K .......... .......... .......... .......... .......... 728M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=111&graph_template_id=14’ saved [120161] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=111&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=111&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 6.04G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (7.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=111&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=111&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=111&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 6.68G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (7.86 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=111&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=112&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=112&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.85G 227s 50K .......... .......... .......... .......... .......... 780M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=112&graph_template_id=14’ saved [120157] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=112&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=112&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 4.67G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (5.50 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=112&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=112&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=112&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.71G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (6.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=112&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=113&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=113&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.17G 227s 50K .......... .......... .......... .......... .......... 796M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=113&graph_template_id=14’ saved [120157] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=113&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=113&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.50G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (6.48 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=113&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=113&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=113&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.96G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (7.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=113&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=114&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=114&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 4.53G 227s 50K .......... .......... .......... .......... .......... 668M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=114&graph_template_id=14’ saved [120164] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=114&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=114&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 6.13G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (7.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=114&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=114&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=114&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.74G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (6.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=114&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=115&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=115&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.15G 227s 50K .......... .......... .......... .......... .......... 823M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.63 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=115&graph_template_id=14’ saved [120168] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=115&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=115&graph_template_id=14’ 227s 227s 0K .......... .......... .......... .......... .......... 5.37G 227s 50K ........ 16.6T=0s 227s 227s 2025-02-19 11:02:58 (6.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=115&graph_template_id=14’ saved [60318] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=14’ 227s 227s 0K .......... .......... .......... . 5.32G=0s 227s 227s 2025-02-19 11:02:58 (5.32 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=14’ saved [32051] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=23&graph_template_id=14 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=23&graph_template_id=14’ 227s 227s 0K .......... .......... .......... . 4.90G=0s 227s 227s 2025-02-19 11:02:58 (4.90 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=23&graph_template_id=14’ saved [32137] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=15 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=15’ 227s 227s 0K .......... .......... .......... .......... .......... 4.13G 227s 50K .......... .......... .......... .......... .......... 838M 227s 100K .......... ....... 32.2T=0s 227s 227s 2025-02-19 11:02:58 (1.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=15’ saved [120125] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=116&graph_template_id=15 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=116&graph_template_id=15’ 227s 227s 0K .......... .......... .......... .......... .......... 4.02G 227s 50K .......... .......... .......... .......... .......... 990M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.83 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=116&graph_template_id=15’ saved [120165] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=116&graph_template_id=15 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=116&graph_template_id=15’ 227s 227s 0K .......... .......... .......... .......... .......... 4.92G 227s 50K ........ 16.3T=0s 227s 227s 2025-02-19 11:02:58 (5.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=116&graph_template_id=15’ saved [60185] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=117&graph_template_id=15 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 200 OK 227s Length: unspecified [text/html] 227s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=117&graph_template_id=15’ 227s 227s 0K .......... .......... .......... .......... .......... 4.65G 227s 50K .......... .......... .......... .......... .......... 602M 227s 100K .......... ....... 32.3T=0s 227s 227s 2025-02-19 11:02:58 (1.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=117&graph_template_id=15’ saved [120149] 227s 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=117&graph_template_id=15 227s Reusing existing connection to [localhost]:80. 227s HTTP request sent, awaiting response... 302 Found 227s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 227s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 227s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=117&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 5.29G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:58 (6.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=117&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=117&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=117&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 5.35G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:58 (6.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=117&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:58-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=118&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=118&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 4.31G 228s 50K .......... .......... .......... .......... .......... 213M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (477 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=118&graph_template_id=15’ saved [120145] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=118&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=118&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 4.57G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (5.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=118&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=118&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=118&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 5.18G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (6.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=118&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=119&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=119&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 3.10G 228s 50K .......... .......... .......... .......... .......... 987M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (1.72 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=119&graph_template_id=15’ saved [120145] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=119&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=119&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 3.90G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (4.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=119&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=119&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=119&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 4.03G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (4.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=119&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=120&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=120&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 3.84G 228s 50K .......... .......... .......... .......... .......... 1.01G 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (1.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=120&graph_template_id=15’ saved [120152] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=120&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=120&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 3.86G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (4.54 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=120&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=120&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=120&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 4.62G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (5.44 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=120&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=121&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=121&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 4.34G 228s 50K .......... .......... .......... .......... .......... 1.06G 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (2.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=121&graph_template_id=15’ saved [120156] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=121&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=121&graph_template_id=15’ 228s 228s 0K .......... .......... .......... .......... .......... 4.75G 228s 50K ........ 16.3T=0s 228s 228s 2025-02-19 11:02:59 (5.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=121&graph_template_id=15’ saved [60185] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=15’ 228s 228s 0K .......... .......... .......... . 3.90G=0s 228s 228s 2025-02-19 11:02:59 (3.90 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=15’ saved [32047] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=24&graph_template_id=15 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=24&graph_template_id=15’ 228s 228s 0K .......... .......... .......... . 5.09G=0s 228s 228s 2025-02-19 11:02:59 (5.09 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=24&graph_template_id=15’ saved [32129] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.48G 228s 50K .......... .......... .......... .......... .......... 158M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (360 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=12’ saved [120132] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=89&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=89&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.68G 228s 50K .......... .......... .......... .......... .......... 119M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (273 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=89&graph_template_id=12’ saved [120169] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=89&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=89&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 4.33G 228s 50K .......... ........ 54.5M=0s 228s 228s 2025-02-19 11:02:59 (198 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=89&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=90&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=90&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 3.87G 228s 50K .......... .......... .......... .......... .......... 259M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (570 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=90&graph_template_id=12’ saved [120155] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=90&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=90&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.69G 228s 50K .......... ........ 229M=0s 228s 228s 2025-02-19 11:02:59 (776 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=90&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=90&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=90&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.54G 228s 50K .......... ........ 158M=0s 228s 228s 2025-02-19 11:02:59 (557 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=90&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=91&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=91&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.68G 228s 50K .......... .......... .......... .......... .......... 267M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (599 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=91&graph_template_id=12’ saved [120151] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=91&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=91&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.27G 228s 50K .......... ........ 290M=0s 228s 228s 2025-02-19 11:02:59 (967 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=91&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=91&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=91&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.18G 228s 50K .......... ........ 158M=0s 228s 228s 2025-02-19 11:02:59 (547 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=91&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=92&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=92&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.17G 228s 50K .......... .......... .......... .......... .......... 518M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=92&graph_template_id=12’ saved [120151] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=92&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=92&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 7.81G 228s 50K .......... ........ 48.1M=0s 228s 228s 2025-02-19 11:02:59 (178 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=92&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=92&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=92&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 7.35G 228s 50K .......... ........ 45.1M=0s 228s 228s 2025-02-19 11:02:59 (166 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=92&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=93&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=93&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 7.09G 228s 50K .......... .......... .......... .......... .......... 125M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (288 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=93&graph_template_id=12’ saved [120158] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=93&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=93&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.37G 228s 50K .......... ........ 45.3M=0s 228s 228s 2025-02-19 11:02:59 (167 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=93&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=93&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=93&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 4.97G 228s 50K .......... ........ 51.3M=0s 228s 228s 2025-02-19 11:02:59 (187 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=93&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=94&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=94&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.80G 228s 50K .......... .......... .......... .......... .......... 118M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (272 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=94&graph_template_id=12’ saved [120162] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=94&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=94&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.64G 228s 50K .......... ........ 22.6M=0.001s 228s 228s 2025-02-19 11:02:59 (83.9 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=94&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=94&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=94&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.25G 228s 50K .......... ........ 101M=0s 228s 228s 2025-02-19 11:02:59 (359 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=94&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=95&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=95&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.41G 228s 50K .......... .......... .......... .......... .......... 660M 228s 100K .......... ....... 32.3T=0s 228s 228s 2025-02-19 11:02:59 (1.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=95&graph_template_id=12’ saved [120154] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=95&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=95&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.56G 228s 50K .......... ........ 21.6M=0.001s 228s 228s 2025-02-19 11:02:59 (80.3 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=95&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=95&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=95&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.15G 228s 50K .......... ........ 121M=0s 228s 228s 2025-02-19 11:02:59 (428 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=95&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=96&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=96&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.25G 228s 50K .......... .......... .......... .......... .......... 660M 228s 100K .......... ....... 32.4T=0s 228s 228s 2025-02-19 11:02:59 (1.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=96&graph_template_id=12’ saved [120200] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=96&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=96&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.63G 228s 50K .......... ........ 22.5M=0.001s 228s 228s 2025-02-19 11:02:59 (83.6 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=96&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=96&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=96&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.97G 228s 50K .......... ........ 99.0M=0s 228s 228s 2025-02-19 11:02:59 (355 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=96&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=97&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=97&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 6.03G 228s 50K .......... .......... .......... .......... .......... 377M 228s 100K .......... ....... 32.4T=0s 228s 228s 2025-02-19 11:02:59 (834 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=97&graph_template_id=12’ saved [120201] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=97&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=97&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.03G 228s 50K .......... ........ 22.2M=0.001s 228s 228s 2025-02-19 11:02:59 (82.4 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=97&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=97&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Connecting to localhost (localhost)|::1|:80... connected. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=97&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 2.95G 228s 50K .......... ........ 178M=0s 228s 228s 2025-02-19 11:02:59 (574 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=97&graph_template_id=12’ saved [69819] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=98&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 200 OK 228s Length: unspecified [text/html] 228s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=98&graph_template_id=12’ 228s 228s 0K .......... .......... .......... .......... .......... 5.02G 228s 50K .......... .......... .......... .......... .......... 1.09G 228s 100K .......... ....... 32.4T=0s 228s 228s 2025-02-19 11:02:59 (2.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=98&graph_template_id=12’ saved [120200] 228s 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=98&graph_template_id=12 228s Reusing existing connection to [localhost]:80. 228s HTTP request sent, awaiting response... 302 Found 228s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 228s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 228s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=98&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.51G 229s 50K .......... ........ 20.5M=0.001s 229s 229s 2025-02-19 11:02:59 (76.0 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=98&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=98&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=98&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.37G 229s 50K .......... ........ 170M=0s 229s 229s 2025-02-19 11:02:59 (578 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=98&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:02:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=99&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=99&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.51G 229s 50K .......... .......... .......... .......... .......... 1.08G 229s 100K .......... ....... 32.4T=0s 229s 229s 2025-02-19 11:03:00 (2.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=99&graph_template_id=12’ saved [120201] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=99&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=99&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.07G 229s 50K .......... ........ 22.2M=0.001s 229s 229s 2025-02-19 11:03:00 (82.2 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=99&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=99&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=99&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.49G 229s 50K .......... ........ 138M=0s 229s 229s 2025-02-19 11:03:00 (477 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=99&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=100&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=100&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.42G 229s 50K .......... .......... .......... .......... .......... 846M 229s 100K .......... ....... 32.4T=0s 229s 229s 2025-02-19 11:03:00 (1.63 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=100&graph_template_id=12’ saved [120201] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=100&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=100&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.67G 229s 50K .......... ........ 21.4M=0.001s 229s 229s 2025-02-19 11:03:00 (79.4 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=100&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=100&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=100&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.47G 229s 50K .......... ........ 194M=0s 229s 229s 2025-02-19 11:03:00 (652 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=100&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=101&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=101&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.69G 229s 50K .......... .......... .......... .......... .......... 1003M 229s 100K .......... ....... 32.4T=0s 229s 229s 2025-02-19 11:03:00 (1.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=101&graph_template_id=12’ saved [120203] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=101&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=101&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.28G 229s 50K .......... ........ 21.7M=0.001s 229s 229s 2025-02-19 11:03:00 (80.3 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=101&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=101&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=101&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 3.55G 229s 50K .......... ........ 224M=0s 229s 229s 2025-02-19 11:03:00 (718 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=101&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=102&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=102&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.03G 229s 50K .......... .......... .......... .......... .......... 884M 229s 100K .......... ....... 32.4T=0s 229s 229s 2025-02-19 11:03:00 (1.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=102&graph_template_id=12’ saved [120199] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=102&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=102&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 3.70G 229s 50K .......... ........ 20.8M=0.001s 229s 229s 2025-02-19 11:03:00 (76.8 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=102&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=102&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=102&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.77G 229s 50K .......... ........ 118M=0s 229s 229s 2025-02-19 11:03:00 (414 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=102&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=103&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=103&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.89G 229s 50K .......... .......... .......... .......... .......... 770M 229s 100K .......... ....... 32.4T=0s 229s 229s 2025-02-19 11:03:00 (1.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=103&graph_template_id=12’ saved [120201] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=103&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=103&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .......... .......... 4.68G 229s 50K .......... ........ 19.3M=0.001s 229s 229s 2025-02-19 11:03:00 (71.6 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=103&graph_template_id=12’ saved [69819] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .... 5.44G=0s 229s 229s 2025-02-19 11:03:00 (5.44 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=12’ saved [35382] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=21&graph_template_id=12 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=21&graph_template_id=12’ 229s 229s 0K .......... .......... .......... .... 5.32G=0s 229s 229s 2025-02-19 11:03:00 (5.32 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=21&graph_template_id=12’ saved [35530] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.70G 229s 50K .......... .......... .......... .......... .......... 1.00G 229s 100K .......... ....... 32.2T=0s 229s 229s 2025-02-19 11:03:00 (1.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=13’ saved [120120] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=104&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=104&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.94G 229s 50K .......... .......... .......... .......... .......... 1.05G 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (2.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=104&graph_template_id=13’ saved [120158] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=104&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=104&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.84G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (5.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=104&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=105&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=105&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.45G 229s 50K .......... .......... .......... .......... .......... 141M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (322 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=105&graph_template_id=13’ saved [120144] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=105&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=105&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.87G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (5.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=105&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=105&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=105&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 5.28G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (6.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=105&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=106&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=106&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.36G 229s 50K .......... .......... .......... .......... .......... 858M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (1.65 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=106&graph_template_id=13’ saved [120140] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=106&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=106&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 5.04G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (5.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=106&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=106&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=106&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 5.41G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (6.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=106&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=107&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=107&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.56G 229s 50K .......... .......... .......... .......... .......... 773M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (1.52 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=107&graph_template_id=13’ saved [120140] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=107&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=107&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.91G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (5.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=107&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=107&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=107&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.95G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (5.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=107&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=108&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=108&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 4.28G 229s 50K .......... .......... .......... .......... .......... 675M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (1.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=108&graph_template_id=13’ saved [120147] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=108&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=108&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 6.19G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (7.27 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=108&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=108&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=108&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 6.40G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (7.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=108&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=109&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=109&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 5.54G 229s 50K .......... .......... .......... .......... .......... 839M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (1.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=109&graph_template_id=13’ saved [120151] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=109&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=109&graph_template_id=13’ 229s 229s 0K .......... .......... .......... .......... .......... 6.94G 229s 50K ........ 16.3T=0s 229s 229s 2025-02-19 11:03:00 (8.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=109&graph_template_id=13’ saved [60187] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=13’ 229s 229s 0K .......... .......... .......... . 2.89G=0s 229s 229s 2025-02-19 11:03:00 (2.89 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=13’ saved [32045] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=22&graph_template_id=13 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=22&graph_template_id=13’ 229s 229s 0K .......... .......... .......... . 4.42G=0s 229s 229s 2025-02-19 11:03:00 (4.42 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=22&graph_template_id=13’ saved [32126] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 3.83G 229s 50K .......... .......... .......... .......... .......... 155M 229s 100K .......... ....... 32.2T=0s 229s 229s 2025-02-19 11:03:00 (349 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=11’ saved [120119] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=74&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=74&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 4.00G 229s 50K .......... .......... .......... .......... .......... 104M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (239 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=74&graph_template_id=11’ saved [120157] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=74&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=74&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 4.39G 229s 50K .......... ........ 331M=0s 229s 229s 2025-02-19 11:03:00 (1.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=74&graph_template_id=11’ saved [69759] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=75&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=75&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 6.88G 229s 50K .......... .......... .......... .......... .......... 869M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (1.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=75&graph_template_id=11’ saved [120142] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=75&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=75&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 6.46G 229s 50K .......... ........ 338M=0s 229s 229s 2025-02-19 11:03:00 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=75&graph_template_id=11’ saved [69759] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=75&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=75&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 6.98G 229s 50K .......... ........ 372M=0s 229s 229s 2025-02-19 11:03:00 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=75&graph_template_id=11’ saved [69759] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=76&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=76&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 7.88G 229s 50K .......... .......... .......... .......... .......... 429M 229s 100K .......... ....... 32.3T=0s 229s 229s 2025-02-19 11:03:00 (957 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=76&graph_template_id=11’ saved [120138] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=76&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 302 Found 229s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 229s Reusing existing connection to [localhost]:80. 229s HTTP request sent, awaiting response... 200 OK 229s Length: unspecified [text/html] 229s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=76&graph_template_id=11’ 229s 229s 0K .......... .......... .......... .......... .......... 7.00G 229s 50K .......... ........ 410M=0s 229s 229s 2025-02-19 11:03:00 (1.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=76&graph_template_id=11’ saved [69759] 229s 229s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=76&graph_template_id=11 229s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=76&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.49G 230s 50K .......... ........ 367M=0s 230s 230s 2025-02-19 11:03:00 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=76&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=77&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=77&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.04G 230s 50K .......... .......... .......... .......... .......... 831M 230s 100K .......... ....... 32.3T=0s 230s 230s 2025-02-19 11:03:00 (1.64 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=77&graph_template_id=11’ saved [120138] 230s 230s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=77&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=77&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.85G 230s 50K .......... ........ 352M=0s 230s 230s 2025-02-19 11:03:01 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=77&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=77&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=77&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.58G 230s 50K .......... ........ 337M=0s 230s 230s 2025-02-19 11:03:01 (1.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=77&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=78&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=78&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.71G 230s 50K .......... .......... .......... .......... .......... 858M 230s 100K .......... ....... 32.3T=0s 230s 230s 2025-02-19 11:03:01 (1.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=78&graph_template_id=11’ saved [120145] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=78&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=78&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.02G 230s 50K .......... ........ 303M=0s 230s 230s 2025-02-19 11:03:01 (1002 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=78&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=78&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=78&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 3.93G 230s 50K .......... ........ 389M=0s 230s 230s 2025-02-19 11:03:01 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=78&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=79&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=79&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.80G 230s 50K .......... .......... .......... .......... .......... 1.05G 230s 100K .......... ....... 32.3T=0s 230s 230s 2025-02-19 11:03:01 (2.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=79&graph_template_id=11’ saved [120149] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=79&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=79&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 3.98G 230s 50K .......... ........ 17.1M=0.001s 230s 230s 2025-02-19 11:03:01 (63.7 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=79&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=79&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=79&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.48G 230s 50K .......... ........ 449M=0s 230s 230s 2025-02-19 11:03:01 (1.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=79&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=80&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=80&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.82G 230s 50K .......... .......... .......... .......... .......... 1.01G 230s 100K .......... ....... 32.3T=0s 230s 230s 2025-02-19 11:03:01 (1.97 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=80&graph_template_id=11’ saved [120141] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=80&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=80&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.12G 230s 50K .......... ........ 23.3M=0.001s 230s 230s 2025-02-19 11:03:01 (86.1 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=80&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=80&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=80&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.00G 230s 50K .......... ........ 213M=0s 230s 230s 2025-02-19 11:03:01 (700 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=80&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=81&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=81&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.68G 230s 50K .......... .......... .......... .......... .......... 1.04G 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (2.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=81&graph_template_id=11’ saved [120187] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=81&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=81&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 3.94G 230s 50K .......... ........ 23.9M=0.001s 230s 230s 2025-02-19 11:03:01 (88.3 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=81&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=81&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=81&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 3.87G 230s 50K .......... ........ 163M=0s 230s 230s 2025-02-19 11:03:01 (551 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=81&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=82&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=82&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 4.38G 230s 50K .......... .......... .......... .......... .......... 1.03G 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (1.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=82&graph_template_id=11’ saved [120188] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=82&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Connecting to localhost (localhost)|::1|:80... connected. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=82&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 81.1M 230s 50K .......... ........ 33.8T=0.001s 230s 230s 2025-02-19 11:03:01 (110 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=82&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=82&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=82&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.08G 230s 50K .......... ........ 111M=0s 230s 230s 2025-02-19 11:03:01 (392 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=82&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=83&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=83&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.08G 230s 50K .......... .......... .......... .......... .......... 649M 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=83&graph_template_id=11’ saved [120187] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=83&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=83&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.54G 230s 50K .......... ........ 25.1M=0.001s 230s 230s 2025-02-19 11:03:01 (93.4 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=83&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=83&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=83&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.35G 230s 50K .......... ........ 117M=0s 230s 230s 2025-02-19 11:03:01 (415 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=83&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=84&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=84&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 7.01G 230s 50K .......... .......... .......... .......... .......... 663M 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (1.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=84&graph_template_id=11’ saved [120188] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=84&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=84&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.17G 230s 50K .......... ........ 24.5M=0.001s 230s 230s 2025-02-19 11:03:01 (91.0 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=84&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=84&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=84&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.58G 230s 50K .......... ........ 97.0M=0s 230s 230s 2025-02-19 11:03:01 (348 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=84&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=85&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=85&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.57G 230s 50K .......... .......... .......... .......... .......... 627M 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (1.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=85&graph_template_id=11’ saved [120187] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=85&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=85&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.93G 230s 50K .......... ........ 21.6M=0.001s 230s 230s 2025-02-19 11:03:01 (80.5 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=85&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=85&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=85&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.82G 230s 50K .......... ........ 140M=0s 230s 230s 2025-02-19 11:03:01 (495 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=85&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=86&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=86&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.26G 230s 50K .......... .......... .......... .......... .......... 624M 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (1.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=86&graph_template_id=11’ saved [120189] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=86&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=86&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.40G 230s 50K .......... ........ 257M=0s 230s 230s 2025-02-19 11:03:01 (871 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=86&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=86&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=86&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.86G 230s 50K .......... ........ 242M=0s 230s 230s 2025-02-19 11:03:01 (830 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=86&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=87&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=87&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.42G 230s 50K .......... .......... .......... .......... .......... 622M 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (1.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=87&graph_template_id=11’ saved [120185] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=87&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=87&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.25G 230s 50K .......... ........ 22.3M=0.001s 230s 230s 2025-02-19 11:03:01 (82.8 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=87&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=87&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=87&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.96G 230s 50K .......... ........ 98.1M=0s 230s 230s 2025-02-19 11:03:01 (353 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=87&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=88&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=88&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 6.13G 230s 50K .......... .......... .......... .......... .......... 364M 230s 100K .......... ....... 32.4T=0s 230s 230s 2025-02-19 11:03:01 (807 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=88&graph_template_id=11’ saved [120187] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=88&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 302 Found 230s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=88&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .......... .......... 5.39G 230s 50K .......... ........ 23.6M=0.001s 230s 230s 2025-02-19 11:03:01 (87.7 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=88&graph_template_id=11’ saved [69759] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .... 4.57G=0s 230s 230s 2025-02-19 11:03:01 (4.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=11’ saved [35359] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=20&graph_template_id=11 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=20&graph_template_id=11’ 230s 230s 0K .......... .......... .......... .... 5.82G=0s 230s 230s 2025-02-19 11:03:01 (5.82 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=20&graph_template_id=11’ saved [35507] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=10 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=10’ 230s 230s 0K .......... .......... .......... .......... .......... 4.66G 230s 50K .......... .......... .......... .......... .......... 327M 230s 100K .......... ....... 32.2T=0s 230s 230s 2025-02-19 11:03:01 (718 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=10’ saved [120123] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=59&graph_template_id=10 230s Reusing existing connection to [localhost]:80. 230s HTTP request sent, awaiting response... 200 OK 230s Length: unspecified [text/html] 230s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=59&graph_template_id=10’ 230s 230s 0K .......... .......... .......... .......... .......... 5.16G 230s 50K .......... .......... .......... .......... .......... 260M 230s 100K .......... ....... 32.3T=0s 230s 230s 2025-02-19 11:03:01 (581 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=59&graph_template_id=10’ saved [120164] 230s 230s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=59&graph_template_id=10 230s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=59&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 6.36G 231s 50K .......... ........ 242M=0s 231s 231s 2025-02-19 11:03:01 (825 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=59&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=60&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=60&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.34G 231s 50K .......... .......... .......... .......... .......... 86.4M 231s 100K .......... ....... 32.3T=0.001s 231s 231s 2025-02-19 11:03:01 (200 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=60&graph_template_id=10’ saved [120146] 231s 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=60&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=60&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.40G 231s 50K .......... ........ 56.9M=0s 231s 231s 2025-02-19 11:03:01 (208 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=60&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=60&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=60&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.42G 231s 50K .......... ........ 78.4M=0s 231s 231s 2025-02-19 11:03:01 (283 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=60&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=61&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=61&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.48G 231s 50K .......... .......... .......... .......... .......... 158M 231s 100K .......... ....... 32.3T=0s 231s 231s 2025-02-19 11:03:02 (361 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=61&graph_template_id=10’ saved [120142] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=61&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=61&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.95G 231s 50K .......... ........ 21.1M=0.001s 231s 231s 2025-02-19 11:03:02 (78.3 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=61&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=61&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=61&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.77G 231s 50K .......... ........ 104M=0s 231s 231s 2025-02-19 11:03:02 (370 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=61&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=62&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=62&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.24G 231s 50K .......... .......... .......... .......... .......... 621M 231s 100K .......... ....... 32.3T=0s 231s 231s 2025-02-19 11:03:02 (1.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=62&graph_template_id=10’ saved [120142] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=62&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=62&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 6.74G 231s 50K .......... ........ 453M=0s 231s 231s 2025-02-19 11:03:02 (1.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=62&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=62&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=62&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 6.08G 231s 50K .......... ........ 427M=0s 231s 231s 2025-02-19 11:03:02 (1.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=62&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=63&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=63&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.12G 231s 50K .......... .......... .......... .......... .......... 840M 231s 100K .......... ....... 32.3T=0s 231s 231s 2025-02-19 11:03:02 (1.66 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=63&graph_template_id=10’ saved [120149] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=63&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=63&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 2.29G 231s 50K .......... ........ 170M=0s 231s 231s 2025-02-19 11:03:02 (533 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=63&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=63&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=63&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.40G 231s 50K .......... ........ 361M=0s 231s 231s 2025-02-19 11:03:02 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=63&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=64&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=64&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.62G 231s 50K .......... .......... .......... .......... .......... 972M 231s 100K .......... ....... 32.3T=0s 231s 231s 2025-02-19 11:03:02 (1.91 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=64&graph_template_id=10’ saved [120153] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=64&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=64&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.82G 231s 50K .......... ........ 370M=0s 231s 231s 2025-02-19 11:03:02 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=64&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=64&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=64&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 2.03G 231s 50K .......... ........ 209M=0s 231s 231s 2025-02-19 11:03:02 (613 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=64&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=65&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=65&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.95G 231s 50K .......... .......... .......... .......... .......... 783M 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (1.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=65&graph_template_id=10’ saved [120187] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=65&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=65&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.72G 231s 50K .......... ........ 308M=0s 231s 231s 2025-02-19 11:03:02 (985 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=65&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=65&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=65&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 521M 231s 50K .......... ........ 354M=0s 231s 231s 2025-02-19 11:03:02 (463 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=65&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=66&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=66&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.20G 231s 50K .......... .......... .......... .......... .......... 388M 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (849 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=66&graph_template_id=10’ saved [120188] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=66&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=66&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.05G 231s 50K .......... ........ 19.1M=0.001s 231s 231s 2025-02-19 11:03:02 (71.0 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=66&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=66&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=66&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.55G 231s 50K .......... ........ 391M=0s 231s 231s 2025-02-19 11:03:02 (1.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=66&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=67&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=67&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.88G 231s 50K .......... .......... .......... .......... .......... 1.08G 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (2.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=67&graph_template_id=10’ saved [120186] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=67&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=67&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.17G 231s 50K .......... ........ 23.5M=0.001s 231s 231s 2025-02-19 11:03:02 (87.0 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=67&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=67&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=67&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.41G 231s 50K .......... ........ 148M=0s 231s 231s 2025-02-19 11:03:02 (518 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=67&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=68&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=68&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 3.26G 231s 50K .......... .......... .......... .......... .......... 856M 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (1.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=68&graph_template_id=10’ saved [120188] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=68&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=68&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.90G 231s 50K .......... ........ 21.9M=0.001s 231s 231s 2025-02-19 11:03:02 (81.1 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=68&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=68&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=68&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.90G 231s 50K .......... ........ 226M=0s 231s 231s 2025-02-19 11:03:02 (770 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=68&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=69&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=69&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 6.43G 231s 50K .......... .......... .......... .......... .......... 1.15G 231s 100K .......... ....... 32.3T=0s 231s 231s 2025-02-19 11:03:02 (2.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=69&graph_template_id=10’ saved [120146] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=69&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=69&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.03G 231s 50K .......... ........ 25.9M=0.001s 231s 231s 2025-02-19 11:03:02 (95.9 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=69&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=69&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=69&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.80G 231s 50K .......... ........ 410M=0s 231s 231s 2025-02-19 11:03:02 (1.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=69&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=70&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=70&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.15G 231s 50K .......... .......... .......... .......... .......... 551M 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=70&graph_template_id=10’ saved [120186] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=70&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=70&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.10G 231s 50K .......... ........ 29.6M=0.001s 231s 231s 2025-02-19 11:03:02 (109 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=70&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=70&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=70&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.06G 231s 50K .......... ........ 155M=0s 231s 231s 2025-02-19 11:03:02 (538 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=70&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=71&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=71&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 6.14G 231s 50K .......... .......... .......... .......... .......... 1.20G 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (2.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=71&graph_template_id=10’ saved [120188] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=71&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=71&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.36G 231s 50K .......... ........ 26.8M=0.001s 231s 231s 2025-02-19 11:03:02 (98.9 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=71&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=71&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=71&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.16G 231s 50K .......... ........ 143M=0s 231s 231s 2025-02-19 11:03:02 (501 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=71&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=72&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=72&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 6.56G 231s 50K .......... .......... .......... .......... .......... 1.19G 231s 100K .......... ....... 32.3T=0s 231s 231s 2025-02-19 11:03:02 (2.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=72&graph_template_id=10’ saved [120184] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=72&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=72&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.49G 231s 50K .......... ........ 26.8M=0.001s 231s 231s 2025-02-19 11:03:02 (99.2 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=72&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=72&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Connecting to localhost (localhost)|::1|:80... connected. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=72&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.08G 231s 50K .......... ........ 229M=0s 231s 231s 2025-02-19 11:03:02 (766 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=72&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=73&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=73&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 5.18G 231s 50K .......... .......... .......... .......... .......... 1.06G 231s 100K .......... ....... 32.4T=0s 231s 231s 2025-02-19 11:03:02 (2.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=73&graph_template_id=10’ saved [120186] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=73&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 302 Found 231s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=73&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .......... .......... 4.31G 231s 50K .......... ........ 22.7M=0.001s 231s 231s 2025-02-19 11:03:02 (83.9 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=73&graph_template_id=10’ saved [69800] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .... 4.75G=0s 231s 231s 2025-02-19 11:03:02 (4.75 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=10’ saved [35362] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=19&graph_template_id=10 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=19&graph_template_id=10’ 231s 231s 0K .......... .......... .......... .... 3.48G=0s 231s 231s 2025-02-19 11:03:02 (3.48 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=19&graph_template_id=10’ saved [35508] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=49 231s Reusing existing connection to [localhost]:80. 231s HTTP request sent, awaiting response... 200 OK 231s Length: unspecified [text/html] 231s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=49’ 231s 231s 0K .......... .......... .......... .......... .......... 4.37G 231s 50K .......... .......... .......... .......... .......... 92.8M 231s 100K .......... ....... 32.3T=0.001s 231s 231s 2025-02-19 11:03:02 (213 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=49’ saved [120145] 231s 231s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=445&graph_template_id=49 231s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=445&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.83G 232s 50K .......... .......... .......... .......... .......... 1.06G 232s 100K .......... ....... 32.4T=0s 232s 232s 2025-02-19 11:03:02 (2.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=445&graph_template_id=49’ saved [120185] 232s 232s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=445&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 232s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=445&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 6.27G 232s 50K ...... 12.7T=0s 232s 232s 2025-02-19 11:03:02 (7.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=445&graph_template_id=49’ saved [58175] 232s 232s --2025-02-19 11:03:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=446&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=446&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.66G 232s 50K .......... .......... .......... .......... .......... 154M 232s 100K .......... ....... 32.3T=0s 232s 232s 2025-02-19 11:03:03 (352 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=446&graph_template_id=49’ saved [120169] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=446&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=446&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 6.22G 232s 50K ...... 12.7T=0s 232s 232s 2025-02-19 11:03:03 (7.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=446&graph_template_id=49’ saved [58175] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=446&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=446&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 6.70G 232s 50K ...... 12.7T=0s 232s 232s 2025-02-19 11:03:03 (7.62 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=446&graph_template_id=49’ saved [58175] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=447&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=447&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.91G 232s 50K .......... .......... .......... .......... .......... 1.21G 232s 100K .......... ....... 32.3T=0s 232s 232s 2025-02-19 11:03:03 (2.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=447&graph_template_id=49’ saved [120169] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=447&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=447&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.56G 232s 50K ...... 12.7T=0s 232s 232s 2025-02-19 11:03:03 (6.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=447&graph_template_id=49’ saved [58175] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=447&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=447&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.94G 232s 50K ...... 12.7T=0s 232s 232s 2025-02-19 11:03:03 (6.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=447&graph_template_id=49’ saved [58175] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=448&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=448&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.01G 232s 50K .......... .......... .......... .......... .......... 1.04G 232s 100K .......... ....... 32.3T=0s 232s 232s 2025-02-19 11:03:03 (2.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=448&graph_template_id=49’ saved [120176] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=448&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=448&graph_template_id=49’ 232s 232s 0K .......... .......... .......... .......... .......... 5.22G 232s 50K ...... 12.7T=0s 232s 232s 2025-02-19 11:03:03 (5.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=448&graph_template_id=49’ saved [58175] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=49’ 232s 232s 0K .......... .......... .......... 3.89G=0s 232s 232s 2025-02-19 11:03:03 (3.89 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=49’ saved [31325] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=88&graph_template_id=49 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=88&graph_template_id=49’ 232s 232s 0K .......... .......... .......... 3.72G=0s 232s 232s 2025-02-19 11:03:03 (3.72 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=88&graph_template_id=49’ saved [31401] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 3.11G 232s 50K .......... .......... .......... .......... .......... 148M 232s 100K .......... ....... 32.4T=0s 232s 232s 2025-02-19 11:03:03 (332 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=50’ saved [120217] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=449&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=449&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.14G 232s 50K .......... .......... .......... .......... .......... 47.2M 232s 100K .......... ....... 32.5T=0.001s 232s 232s 2025-02-19 11:03:03 (110 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=449&graph_template_id=50’ saved [120252] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=449&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=449&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.42G 232s 50K .......... ..... 25.1M=0.001s 232s 232s 2025-02-19 11:03:03 (106 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=449&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=450&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=450&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.80G 232s 50K .......... .......... .......... .......... .......... 99.8M 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (230 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=450&graph_template_id=50’ saved [120241] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=450&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=450&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.06G 232s 50K .......... ..... 13.9M=0.001s 232s 232s 2025-02-19 11:03:03 (58.8 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=450&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=450&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=450&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.18G 232s 50K .......... ..... 397M=0s 232s 232s 2025-02-19 11:03:03 (1.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=450&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=451&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=451&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.79G 232s 50K .......... .......... .......... .......... .......... 1.11G 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (2.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=451&graph_template_id=50’ saved [120241] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=451&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=451&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.45G 232s 50K .......... ..... 19.1M=0.001s 232s 232s 2025-02-19 11:03:03 (80.6 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=451&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=451&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=451&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.44G 232s 50K .......... ..... 180M=0s 232s 232s 2025-02-19 11:03:03 (684 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=451&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=452&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=452&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.08G 232s 50K .......... .......... .......... .......... .......... 1.08G 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (2.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=452&graph_template_id=50’ saved [120248] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=452&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=452&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.17G 232s 50K .......... ..... 18.8M=0.001s 232s 232s 2025-02-19 11:03:03 (79.5 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=452&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=452&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=452&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 3.59G 232s 50K .......... ..... 206M=0s 232s 232s 2025-02-19 11:03:03 (745 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=452&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=453&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=453&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.39G 232s 50K .......... .......... .......... .......... .......... 542M 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=453&graph_template_id=50’ saved [120252] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=453&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=453&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.02G 232s 50K .......... ..... 21.5M=0.001s 232s 232s 2025-02-19 11:03:03 (90.9 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=453&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=453&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=453&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.64G 232s 50K .......... ..... 135M=0s 232s 232s 2025-02-19 11:03:03 (528 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=453&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=454&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=454&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.21G 232s 50K .......... .......... .......... .......... .......... 1.09G 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (2.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=454&graph_template_id=50’ saved [120241] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=454&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=454&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.30G 232s 50K .......... ..... 22.5M=0.001s 232s 232s 2025-02-19 11:03:03 (95.1 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=454&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=454&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=454&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.80G 232s 50K .......... ..... 115M=0s 232s 232s 2025-02-19 11:03:03 (458 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=454&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=455&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=455&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.98G 232s 50K .......... .......... .......... .......... .......... 1.11G 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (2.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=455&graph_template_id=50’ saved [120241] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=455&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=455&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.97G 232s 50K .......... ..... 22.8M=0.001s 232s 232s 2025-02-19 11:03:03 (96.4 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=455&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=455&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=455&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.09G 232s 50K .......... ..... 141M=0s 232s 232s 2025-02-19 11:03:03 (556 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=455&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=456&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=456&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.17G 232s 50K .......... .......... .......... .......... .......... 951M 232s 100K .......... ....... 32.5T=0s 232s 232s 2025-02-19 11:03:03 (1.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=456&graph_template_id=50’ saved [120248] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=456&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=456&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.14G 232s 50K .......... ..... 191M=0s 232s 232s 2025-02-19 11:03:03 (743 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=456&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=456&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=456&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.15G 232s 50K .......... ..... 223M=0s 232s 232s 2025-02-19 11:03:03 (855 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=456&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=457&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=457&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 7.01G 232s 50K .......... .......... .......... .......... .......... 583M 232s 100K .......... ....... 32.2T=0s 232s 232s 2025-02-19 11:03:03 (1.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=457&graph_template_id=50’ saved [120102] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=457&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=457&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 4.40G 232s 50K .......... ..... 44.1M=0s 232s 232s 2025-02-19 11:03:03 (183 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=457&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=457&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=457&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 5.04G 232s 50K .......... ..... 42.1M=0s 232s 232s 2025-02-19 11:03:03 (176 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=457&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=458&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=458&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.57G 232s 50K .......... .......... .......... .......... .......... 131M 232s 100K .......... ....... 32.2T=0s 232s 232s 2025-02-19 11:03:03 (301 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=458&graph_template_id=50’ saved [120090] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=458&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=458&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.04G 232s 50K .......... ..... 41.9M=0s 232s 232s 2025-02-19 11:03:03 (175 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=458&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=458&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=458&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.24G 232s 50K .......... ..... 40.8M=0s 232s 232s 2025-02-19 11:03:03 (171 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=458&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=459&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=459&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 6.91G 232s 50K .......... .......... .......... .......... .......... 139M 232s 100K .......... ....... 32.2T=0s 232s 232s 2025-02-19 11:03:03 (319 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=459&graph_template_id=50’ saved [120090] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=459&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 302 Found 232s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 232s Reusing existing connection to [localhost]:80. 232s HTTP request sent, awaiting response... 200 OK 232s Length: unspecified [text/html] 232s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=459&graph_template_id=50’ 232s 232s 0K .......... .......... .......... .......... .......... 7.15G 232s 50K .......... ..... 42.6M=0s 232s 232s 2025-02-19 11:03:03 (179 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=459&graph_template_id=50’ saved [66804] 232s 232s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=459&graph_template_id=50 232s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 233s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=459&graph_template_id=50’ 233s 233s 0K .......... .......... .......... .......... .......... 7.07G 233s 50K .......... ..... 43.9M=0s 233s 233s 2025-02-19 11:03:03 (184 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=459&graph_template_id=50’ saved [66804] 233s 233s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=460&graph_template_id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=460&graph_template_id=50’ 233s 233s 0K .......... .......... .......... .......... .......... 6.86G 233s 50K .......... .......... .......... .......... .......... 140M 233s 100K .......... ....... 32.2T=0s 233s 233s 2025-02-19 11:03:03 (322 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=460&graph_template_id=50’ saved [120097] 233s 233s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=460&graph_template_id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 233s --2025-02-19 11:03:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=460&graph_template_id=50’ 233s 233s 0K .......... .......... .......... .......... .......... 5.49G 233s 50K .......... ..... 223M=0s 233s 233s 2025-02-19 11:03:04 (844 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=460&graph_template_id=50’ saved [66804] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=50’ 233s 233s 0K .......... .......... .......... ... 7.29G=0s 233s 233s 2025-02-19 11:03:04 (7.29 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=50’ saved [34213] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=90&graph_template_id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=90&graph_template_id=50’ 233s 233s 0K .......... .......... .......... ... 4.94G=0s 233s 233s 2025-02-19 11:03:04 (4.94 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=90&graph_template_id=50’ saved [34289] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=89&graph_template_id=50 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=89&graph_template_id=50’ 233s 233s 0K .......... .......... .......... ... 5.27G=0s 233s 233s 2025-02-19 11:03:04 (5.27 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=89&graph_template_id=50’ saved [34289] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 3.91G 233s 50K .......... .......... .......... .......... .......... 240M 233s 100K .......... ....... 32.4T=0s 233s 233s 2025-02-19 11:03:04 (532 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=52’ saved [120219] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=501&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=501&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 4.39G 233s 50K .......... .......... .......... .......... .......... 64.0M 233s 100K .......... ....... 32.2T=0.001s 233s 233s 2025-02-19 11:03:04 (148 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=501&graph_template_id=52’ saved [120084] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=501&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=501&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.20G 233s 50K .......... .......... .. 135M=0s 233s 233s 2025-02-19 11:03:04 (414 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=501&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=502&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=502&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.60G 233s 50K .......... .......... .......... .......... .......... 95.3M 233s 100K .......... ....... 32.2T=0.001s 233s 233s 2025-02-19 11:03:04 (220 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=502&graph_template_id=52’ saved [120084] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=502&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=502&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.22G 233s 50K .......... .......... .. 409M=0s 233s 233s 2025-02-19 11:03:04 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=502&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=502&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=502&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.22G 233s 50K .......... .......... .. 48.7M=0s 233s 233s 2025-02-19 11:03:04 (155 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=502&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=503&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=503&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.22G 233s 50K .......... .......... .......... .......... .......... 298M 233s 100K .......... ....... 32.2T=0s 233s 233s 2025-02-19 11:03:04 (662 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=503&graph_template_id=52’ saved [120084] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=503&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=503&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 3.81G 233s 50K .......... .......... .. 21.3M=0.001s 233s 233s 2025-02-19 11:03:04 (68.5 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=503&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=503&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=503&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 2.73G 233s 50K .......... .......... .. 328M=0s 233s 233s 2025-02-19 11:03:04 (843 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=503&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=504&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=504&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 4.55G 233s 50K .......... .......... .......... .......... .......... 206M 233s 100K .......... ....... 32.2T=0s 233s 233s 2025-02-19 11:03:04 (462 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=504&graph_template_id=52’ saved [120084] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=504&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Connecting to localhost (localhost)|::1|:80... connected. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=504&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.34G 233s 50K .......... .......... .. 65.9M=0s 233s 233s 2025-02-19 11:03:04 (210 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=504&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=504&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=504&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.06G 233s 50K .......... .......... .. 59.8M=0s 233s 233s 2025-02-19 11:03:04 (190 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=504&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=505&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=505&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.23G 233s 50K .......... .......... .......... .......... .......... 161M 233s 100K .......... ....... 32.2T=0s 233s 233s 2025-02-19 11:03:04 (368 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=505&graph_template_id=52’ saved [120084] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=505&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=505&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 4.77G 233s 50K .......... .......... .. 60.4M=0s 233s 233s 2025-02-19 11:03:04 (191 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=505&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=505&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=505&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.20G 233s 50K .......... .......... .. 61.3M=0s 233s 233s 2025-02-19 11:03:04 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=505&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=506&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=506&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 3.53G 233s 50K .......... .......... .......... .......... .......... 77.3M 233s 100K .......... ....... 32.2T=0.001s 233s 233s 2025-02-19 11:03:04 (178 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=506&graph_template_id=52’ saved [120091] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=506&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=506&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 3.62G 233s 50K .......... .......... .. 42.3M=0.001s 233s 233s 2025-02-19 11:03:04 (134 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=506&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=506&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=506&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 7.79G 233s 50K .......... .......... .. 67.5M=0s 233s 233s 2025-02-19 11:03:04 (215 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=506&graph_template_id=52’ saved [73943] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=507&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=507&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 7.03G 233s 50K .......... .......... .......... .......... .......... 135M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (312 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=507&graph_template_id=52’ saved [120261] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=507&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=507&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.37G 233s 50K .......... .......... .. 61.8M=0s 233s 233s 2025-02-19 11:03:04 (197 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=507&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=507&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=507&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.33G 233s 50K .......... .......... .. 61.1M=0s 233s 233s 2025-02-19 11:03:04 (194 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=507&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=508&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=508&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.58G 233s 50K .......... .......... .......... .......... .......... 133M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (305 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=508&graph_template_id=52’ saved [120251] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=508&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=508&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.75G 233s 50K .......... .......... .. 61.4M=0s 233s 233s 2025-02-19 11:03:04 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=508&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=508&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=508&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.22G 233s 50K .......... .......... .. 61.2M=0s 233s 233s 2025-02-19 11:03:04 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=508&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=509&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=509&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.00G 233s 50K .......... .......... .......... .......... .......... 133M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=509&graph_template_id=52’ saved [120243] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=509&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=509&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.64G 233s 50K .......... .......... .. 57.5M=0s 233s 233s 2025-02-19 11:03:04 (183 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=509&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=509&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=509&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.27G 233s 50K .......... .......... .. 62.2M=0s 233s 233s 2025-02-19 11:03:04 (198 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=509&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=510&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=510&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.58G 233s 50K .......... .......... .......... .......... .......... 134M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (309 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=510&graph_template_id=52’ saved [120250] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=510&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=510&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 7.24G 233s 50K .......... .......... .. 60.0M=0s 233s 233s 2025-02-19 11:03:04 (191 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=510&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=510&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=510&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 5.39G 233s 50K .......... .......... .. 58.9M=0s 233s 233s 2025-02-19 11:03:04 (187 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=510&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=511&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=511&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.61G 233s 50K .......... .......... .......... .......... .......... 136M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (314 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=511&graph_template_id=52’ saved [120255] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=511&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=511&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 7.27G 233s 50K .......... .......... .. 60.4M=0s 233s 233s 2025-02-19 11:03:04 (193 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=511&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=511&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=511&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.59G 233s 50K .......... .......... .. 61.4M=0s 233s 233s 2025-02-19 11:03:04 (196 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=511&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=512&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=512&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.35G 233s 50K .......... .......... .......... .......... .......... 115M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (265 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=512&graph_template_id=52’ saved [120252] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=512&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=512&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.73G 233s 50K .......... .......... .. 62.7M=0s 233s 233s 2025-02-19 11:03:04 (200 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=512&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=512&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=512&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 6.50G 233s 50K .......... .......... .. 61.1M=0s 233s 233s 2025-02-19 11:03:04 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=512&graph_template_id=52’ saved [73946] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=513&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=513&graph_template_id=52’ 233s 233s 0K .......... .......... .......... .......... .......... 7.14G 233s 50K .......... .......... .......... .......... .......... 125M 233s 100K .......... ....... 32.5T=0s 233s 233s 2025-02-19 11:03:04 (289 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=513&graph_template_id=52’ saved [120244] 233s 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=513&graph_template_id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 302 Found 233s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 233s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 233s Reusing existing connection to [localhost]:80. 233s HTTP request sent, awaiting response... 200 OK 233s Length: unspecified [text/html] 233s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=513&graph_template_id=52’ 233s 234s 0K .......... .......... .......... .......... .......... 6.78G 234s 50K .......... .......... .. 64.2M=0s 234s 234s 2025-02-19 11:03:04 (205 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=513&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=513&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=513&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 6.28G 234s 50K .......... .......... .. 64.7M=0s 234s 234s 2025-02-19 11:03:04 (206 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=513&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=514&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=514&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 6.31G 234s 50K .......... .......... .......... .......... .......... 132M 234s 100K .......... ....... 32.5T=0s 234s 234s 2025-02-19 11:03:04 (303 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=514&graph_template_id=52’ saved [120251] 234s 234s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=514&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=514&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 6.35G 234s 50K .......... .......... .. 60.3M=0s 234s 234s 2025-02-19 11:03:05 (192 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=514&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=514&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=514&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 5.40G 234s 50K .......... .......... .. 60.1M=0s 234s 234s 2025-02-19 11:03:05 (191 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=514&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=515&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=515&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 2.75G 234s 50K .......... .......... .......... .......... .......... 129M 234s 100K .......... ....... 32.2T=0s 234s 234s 2025-02-19 11:03:05 (290 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=515&graph_template_id=52’ saved [120109] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=515&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=515&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 7.07G 234s 50K .......... .......... .. 64.0M=0s 234s 234s 2025-02-19 11:03:05 (204 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=515&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=515&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=515&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 3.57G 234s 50K .......... .......... .. 64.3M=0s 234s 234s 2025-02-19 11:03:05 (201 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=515&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=516&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=516&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 6.75G 234s 50K .......... .......... .......... .......... .......... 125M 234s 100K .......... ....... 32.2T=0s 234s 234s 2025-02-19 11:03:05 (289 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=516&graph_template_id=52’ saved [120093] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=516&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=516&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 5.54G 234s 50K .......... .......... .. 62.3M=0s 234s 234s 2025-02-19 11:03:05 (198 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=516&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=516&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=516&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 6.52G 234s 50K .......... .......... .. 61.3M=0s 234s 234s 2025-02-19 11:03:05 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=516&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=517&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=517&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 5.88G 234s 50K .......... .......... .......... .......... .......... 129M 234s 100K .......... ....... 32.2T=0s 234s 234s 2025-02-19 11:03:05 (296 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=517&graph_template_id=52’ saved [120100] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=517&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=517&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 7.06G 234s 50K .......... .......... .. 292M=0s 234s 234s 2025-02-19 11:03:05 (871 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=517&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=517&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=517&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 6.76G 234s 50K .......... .......... .. 316M=0s 234s 234s 2025-02-19 11:03:05 (933 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=517&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=518&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=518&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 4.95G 234s 50K .......... .......... .......... .......... .......... 511M 234s 100K .......... ....... 32.4T=0s 234s 234s 2025-02-19 11:03:05 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=518&graph_template_id=52’ saved [120237] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=518&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=518&graph_template_id=52’ 234s 234s 0K .......... .......... .......... .......... .......... 5.64G 234s 50K .......... .......... .. 58.1M=0s 234s 234s 2025-02-19 11:03:05 (185 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=518&graph_template_id=52’ saved [73946] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=52’ 234s 234s 0K .......... .......... .......... ..... 6.85G=0s 234s 234s 2025-02-19 11:03:05 (6.85 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=52’ saved [36476] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=101&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=101&graph_template_id=52’ 234s 234s 0K .......... .......... .......... ..... 7.70G=0s 234s 234s 2025-02-19 11:03:05 (7.70 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=101&graph_template_id=52’ saved [36553] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=102&graph_template_id=52 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=102&graph_template_id=52’ 234s 234s 0K .......... .......... .......... ..... 6.57G=0s 234s 234s 2025-02-19 11:03:05 (6.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=102&graph_template_id=52’ saved [36560] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 2.89G 234s 50K .......... .......... .......... .......... .......... 137M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (309 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=51’ saved [120691] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=461&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=461&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.42G 234s 50K .......... .......... .......... .......... .......... 135M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (311 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=461&graph_template_id=51’ saved [120729] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=461&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=461&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.29G 234s 50K .......... .......... .......... .......... ...... 133M=0s 234s 234s 2025-02-19 11:03:05 (268 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=461&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=462&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=462&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 4.67G 234s 50K .......... .......... .......... .......... .......... 137M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (314 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=462&graph_template_id=51’ saved [120715] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=462&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=462&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 7.02G 234s 50K .......... .......... .......... .......... ...... 120M=0s 234s 234s 2025-02-19 11:03:05 (245 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=462&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=462&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=462&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 7.04G 234s 50K .......... .......... .......... .......... ...... 118M=0s 234s 234s 2025-02-19 11:03:05 (241 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=462&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=463&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=463&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.93G 234s 50K .......... .......... .......... .......... .......... 127M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (293 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=463&graph_template_id=51’ saved [120715] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=463&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=463&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.50G 234s 50K .......... .......... .......... .......... ...... 124M=0s 234s 234s 2025-02-19 11:03:05 (251 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=463&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=463&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=463&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.30G 234s 50K .......... .......... .......... .......... ...... 128M=0s 234s 234s 2025-02-19 11:03:05 (260 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=463&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=464&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=464&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.38G 234s 50K .......... .......... .......... .......... .......... 136M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (314 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=464&graph_template_id=51’ saved [120722] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=464&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=464&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.40G 234s 50K .......... .......... .......... .......... ...... 129M=0s 234s 234s 2025-02-19 11:03:05 (262 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=464&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=464&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=464&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.43G 234s 50K .......... .......... .......... .......... ...... 125M=0s 234s 234s 2025-02-19 11:03:05 (254 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=464&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=465&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=465&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.74G 234s 50K .......... .......... .......... .......... .......... 136M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (315 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=465&graph_template_id=51’ saved [120731] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=465&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=465&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.48G 234s 50K .......... .......... .......... .......... ...... 129M=0s 234s 234s 2025-02-19 11:03:05 (262 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=465&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=465&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=465&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 6.42G 234s 50K .......... .......... .......... .......... ...... 126M=0s 234s 234s 2025-02-19 11:03:05 (257 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=465&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=466&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=466&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.57G 234s 50K .......... .......... .......... .......... .......... 131M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (302 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=466&graph_template_id=51’ saved [120715] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=466&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=466&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 3.41G 234s 50K .......... .......... .......... .......... ...... 59.9M=0.001s 234s 234s 2025-02-19 11:03:05 (122 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=466&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=466&graph_template_id=51 234s Connecting to localhost (localhost)|::1|:80... connected. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=466&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 3.93G 234s 50K .......... .......... .......... .......... ...... 700M=0s 234s 234s 2025-02-19 11:03:05 (1.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=466&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=467&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=467&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.08G 234s 50K .......... .......... .......... .......... .......... 587M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (1.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=467&graph_template_id=51’ saved [120715] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=467&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=467&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 4.90G 234s 50K .......... .......... .......... .......... ...... 48.6M=0.001s 234s 234s 2025-02-19 11:03:05 (100 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=467&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=467&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=467&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.81G 234s 50K .......... .......... .......... .......... ...... 696M=0s 234s 234s 2025-02-19 11:03:05 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=467&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=468&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=468&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 5.07G 234s 50K .......... .......... .......... .......... .......... 357M 234s 100K .......... ....... 33.3T=0s 234s 234s 2025-02-19 11:03:05 (787 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=468&graph_template_id=51’ saved [120722] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=468&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=468&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 4.64G 234s 50K .......... .......... .......... .......... ...... 70.5M=0.001s 234s 234s 2025-02-19 11:03:05 (144 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=468&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=468&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 302 Found 234s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=468&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 4.75G 234s 50K .......... .......... .......... .......... ...... 232M=0s 234s 234s 2025-02-19 11:03:05 (458 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=468&graph_template_id=51’ saved [98625] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=469&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 234s HTTP request sent, awaiting response... 200 OK 234s Length: unspecified [text/html] 234s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=469&graph_template_id=51’ 234s 234s 0K .......... .......... .......... .......... .......... 4.93G 234s 50K .......... .......... .......... .......... .......... 719M 234s 100K .......... ....... 33.4T=0s 234s 234s 2025-02-19 11:03:05 (1.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=469&graph_template_id=51’ saved [120737] 234s 234s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=469&graph_template_id=51 234s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=469&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.76G 235s 50K .......... .......... .......... .......... ...... 67.6M=0.001s 235s 235s 2025-02-19 11:03:05 (138 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=469&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=469&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=469&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.55G 235s 50K .......... .......... .......... .......... ...... 176M=0s 235s 235s 2025-02-19 11:03:06 (352 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=469&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=470&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=470&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.55G 235s 50K .......... .......... .......... .......... .......... 838M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.64 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=470&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=470&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=470&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.24G 235s 50K .......... .......... .......... .......... ...... 70.3M=0.001s 235s 235s 2025-02-19 11:03:06 (144 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=470&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=470&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=470&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.74G 235s 50K .......... .......... .......... .......... ...... 186M=0s 235s 235s 2025-02-19 11:03:06 (371 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=470&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=471&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=471&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.97G 235s 50K .......... .......... .......... .......... .......... 924M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.80 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=471&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=471&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=471&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.35G 235s 50K .......... .......... .......... .......... ...... 61.3M=0.001s 235s 235s 2025-02-19 11:03:06 (126 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=471&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=471&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=471&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.40G 235s 50K .......... .......... .......... .......... ...... 197M=0s 235s 235s 2025-02-19 11:03:06 (391 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=471&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=472&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=472&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 5.16G 235s 50K .......... .......... .......... .......... .......... 901M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=472&graph_template_id=51’ saved [120723] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=472&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=472&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.52G 235s 50K .......... .......... .......... .......... ...... 64.7M=0.001s 235s 235s 2025-02-19 11:03:06 (133 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=472&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=472&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=472&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.42G 235s 50K .......... .......... .......... .......... ...... 184M=0s 235s 235s 2025-02-19 11:03:06 (367 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=472&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=473&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=473&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 5.00G 235s 50K .......... .......... .......... .......... .......... 792M 235s 100K .......... ....... 33.4T=0s 235s 235s 2025-02-19 11:03:06 (1.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=473&graph_template_id=51’ saved [120736] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=473&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=473&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.94G 235s 50K .......... .......... .......... .......... ...... 66.4M=0.001s 235s 235s 2025-02-19 11:03:06 (136 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=473&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=473&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=473&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.26G 235s 50K .......... .......... .......... .......... ...... 295M=0s 235s 235s 2025-02-19 11:03:06 (560 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=473&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=474&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=474&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.99G 235s 50K .......... .......... .......... .......... .......... 914M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.72 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=474&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=474&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=474&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.29G 235s 50K .......... .......... .......... .......... ...... 48.3M=0.001s 235s 235s 2025-02-19 11:03:06 (99.0 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=474&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=474&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=474&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.42G 235s 50K .......... .......... .......... .......... ...... 251M=0s 235s 235s 2025-02-19 11:03:06 (484 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=474&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=475&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=475&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 5.35G 235s 50K .......... .......... .......... .......... .......... 879M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.74 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=475&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=475&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=475&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.13G 235s 50K .......... .......... .......... .......... ...... 50.0M=0.001s 235s 235s 2025-02-19 11:03:06 (102 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=475&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=475&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=475&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 2.95G 235s 50K .......... .......... .......... .......... ...... 250M=0s 235s 235s 2025-02-19 11:03:06 (477 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=475&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=476&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=476&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.76G 235s 50K .......... .......... .......... .......... .......... 834M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.64 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=476&graph_template_id=51’ saved [120723] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=476&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=476&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.12G 235s 50K .......... .......... .......... .......... ...... 70.3M=0.001s 235s 235s 2025-02-19 11:03:06 (143 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=476&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=476&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=476&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.29G 235s 50K .......... .......... .......... .......... ...... 229M=0s 235s 235s 2025-02-19 11:03:06 (444 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=476&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=477&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=477&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.50G 235s 50K .......... .......... .......... .......... .......... 231M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (512 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=477&graph_template_id=51’ saved [120734] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=477&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=477&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.23G 235s 50K .......... .......... .......... .......... ...... 61.1M=0.001s 235s 235s 2025-02-19 11:03:06 (125 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=477&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=477&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=477&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 2.91G 235s 50K .......... .......... .......... .......... ...... 316M=0s 235s 235s 2025-02-19 11:03:06 (590 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=477&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=478&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=478&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.28G 235s 50K .......... .......... .......... .......... .......... 256M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (560 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=478&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=478&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=478&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.42G 235s 50K .......... .......... .......... .......... ...... 57.3M=0.001s 235s 235s 2025-02-19 11:03:06 (117 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=478&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=478&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=478&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.70G 235s 50K .......... .......... .......... .......... ...... 421M=0s 235s 235s 2025-02-19 11:03:06 (781 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=478&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=479&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=479&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.50G 235s 50K .......... .......... .......... .......... .......... 220M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (489 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=479&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=479&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=479&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.62G 235s 50K .......... .......... .......... .......... ...... 56.2M=0.001s 235s 235s 2025-02-19 11:03:06 (115 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=479&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=479&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=479&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.69G 235s 50K .......... .......... .......... .......... ...... 323M=0s 235s 235s 2025-02-19 11:03:06 (615 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=479&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=480&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=480&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.83G 235s 50K .......... .......... .......... .......... .......... 229M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (511 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=480&graph_template_id=51’ saved [120723] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=480&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=480&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 3.37G 235s 50K .......... .......... .......... .......... ...... 39.9M=0.001s 235s 235s 2025-02-19 11:03:06 (82.1 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=480&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=480&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=480&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 4.35G 235s 50K .......... .......... .......... .......... ...... 444M=0s 235s 235s 2025-02-19 11:03:06 (833 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=480&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=481&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=481&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 5.63G 235s 50K .......... .......... .......... .......... .......... 520M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=481&graph_template_id=51’ saved [120733] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=481&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=481&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 5.46G 235s 50K .......... .......... .......... .......... ...... 50.4M=0.001s 235s 235s 2025-02-19 11:03:06 (104 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=481&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=481&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=481&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 6.59G 235s 50K .......... .......... .......... .......... ...... 484M=0s 235s 235s 2025-02-19 11:03:06 (934 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=481&graph_template_id=51’ saved [98625] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=482&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 200 OK 235s Length: unspecified [text/html] 235s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=482&graph_template_id=51’ 235s 235s 0K .......... .......... .......... .......... .......... 6.70G 235s 50K .......... .......... .......... .......... .......... 519M 235s 100K .......... ....... 33.3T=0s 235s 235s 2025-02-19 11:03:06 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=482&graph_template_id=51’ saved [120716] 235s 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=482&graph_template_id=51 235s Reusing existing connection to [localhost]:80. 235s HTTP request sent, awaiting response... 302 Found 235s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 235s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 235s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=482&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.07G 236s 50K .......... .......... .......... .......... ...... 58.8M=0.001s 236s 236s 2025-02-19 11:03:06 (121 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=482&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=482&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=482&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.59G 236s 50K .......... .......... .......... .......... ...... 272M=0s 236s 236s 2025-02-19 11:03:06 (538 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=482&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=483&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=483&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.26G 236s 50K .......... .......... .......... .......... .......... 340M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:06 (755 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=483&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=483&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=483&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.01G 236s 50K .......... .......... .......... .......... ...... 53.0M=0.001s 236s 236s 2025-02-19 11:03:07 (109 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=483&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=483&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=483&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.03G 236s 50K .......... .......... .......... .......... ...... 205M=0s 236s 236s 2025-02-19 11:03:07 (408 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=483&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=484&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=484&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.28G 236s 50K .......... .......... .......... .......... .......... 285M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (639 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=484&graph_template_id=51’ saved [120723] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=484&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=484&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 4.20G 236s 50K .......... .......... .......... .......... ...... 48.0M=0.001s 236s 236s 2025-02-19 11:03:07 (98.7 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=484&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=484&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=484&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.61G 236s 50K .......... .......... .......... .......... ...... 391M=0s 236s 236s 2025-02-19 11:03:07 (758 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=484&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=485&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=485&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.76G 236s 50K .......... .......... .......... .......... .......... 482M 236s 100K .......... ....... 33.4T=0s 236s 236s 2025-02-19 11:03:07 (1.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=485&graph_template_id=51’ saved [120741] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=485&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=485&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.36G 236s 50K .......... .......... .......... .......... ...... 48.3M=0.001s 236s 236s 2025-02-19 11:03:07 (99.6 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=485&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=485&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=485&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.05G 236s 50K .......... .......... .......... .......... ...... 307M=0s 236s 236s 2025-02-19 11:03:07 (606 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=485&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=486&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=486&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.45G 236s 50K .......... .......... .......... .......... .......... 475M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=486&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=486&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=486&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 4.73G 236s 50K .......... .......... .......... .......... ...... 41.1M=0.001s 236s 236s 2025-02-19 11:03:07 (84.7 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=486&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=486&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Connecting to localhost (localhost)|::1|:80... connected. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=486&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 1.86G 236s 50K .......... .......... .......... .......... ...... 497M=0s 236s 236s 2025-02-19 11:03:07 (807 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=486&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=487&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=487&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.18G 236s 50K .......... .......... .......... .......... .......... 285M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (638 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=487&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=487&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=487&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.34G 236s 50K .......... .......... .......... .......... ...... 55.4M=0.001s 236s 236s 2025-02-19 11:03:07 (113 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=487&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=487&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=487&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.92G 236s 50K .......... .......... .......... .......... ...... 560M=0s 236s 236s 2025-02-19 11:03:07 (1012 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=487&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=488&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=488&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 4.03G 236s 50K .......... .......... .......... .......... .......... 338M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (737 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=488&graph_template_id=51’ saved [120723] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=488&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=488&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.37G 236s 50K .......... .......... .......... .......... ...... 243M=0s 236s 236s 2025-02-19 11:03:07 (470 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=488&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=488&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=488&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.08G 236s 50K .......... .......... .......... .......... ...... 641M=0s 236s 236s 2025-02-19 11:03:07 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=488&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=489&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=489&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.63G 236s 50K .......... .......... .......... .......... .......... 669M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=489&graph_template_id=51’ saved [120730] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=489&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=489&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.28G 236s 50K .......... .......... .......... .......... ...... 581M=0s 236s 236s 2025-02-19 11:03:07 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=489&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=489&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=489&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.75G 236s 50K .......... .......... .......... .......... ...... 603M=0s 236s 236s 2025-02-19 11:03:07 (1.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=489&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=490&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=490&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 2.78G 236s 50K .......... .......... .......... .......... .......... 515M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=490&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=490&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=490&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.73G 236s 50K .......... .......... .......... .......... ...... 625M=0s 236s 236s 2025-02-19 11:03:07 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=490&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=490&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=490&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 7.53G 236s 50K .......... .......... .......... .......... ...... 631M=0s 236s 236s 2025-02-19 11:03:07 (1.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=490&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=491&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=491&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.73G 236s 50K .......... .......... .......... .......... .......... 646M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=491&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=491&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=491&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.74G 236s 50K .......... .......... .......... .......... ...... 777M=0s 236s 236s 2025-02-19 11:03:07 (1.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=491&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=491&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=491&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.37G 236s 50K .......... .......... .......... .......... ...... 835M=0s 236s 236s 2025-02-19 11:03:07 (1.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=491&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=492&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=492&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.92G 236s 50K .......... .......... .......... .......... .......... 888M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=492&graph_template_id=51’ saved [120723] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=492&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=492&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 6.16G 236s 50K .......... .......... .......... .......... ...... 48.1M=0.001s 236s 236s 2025-02-19 11:03:07 (99.2 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=492&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=492&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=492&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 2.15G 236s 50K .......... .......... .......... .......... ...... 565M=0s 236s 236s 2025-02-19 11:03:07 (920 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=492&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=493&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=493&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.88G 236s 50K .......... .......... .......... .......... .......... 830M 236s 100K .......... ....... 33.4T=0s 236s 236s 2025-02-19 11:03:07 (1.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=493&graph_template_id=51’ saved [120741] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=493&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=493&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 5.86G 236s 50K .......... .......... .......... .......... ...... 630M=0s 236s 236s 2025-02-19 11:03:07 (1.15 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=493&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=493&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=493&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 4.01G 236s 50K .......... .......... .......... .......... ...... 452M=0s 236s 236s 2025-02-19 11:03:07 (839 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=493&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=494&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=494&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.50G 236s 50K .......... .......... .......... .......... .......... 520M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=494&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=494&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=494&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.65G 236s 50K .......... .......... .......... .......... ...... 448M=0s 236s 236s 2025-02-19 11:03:07 (826 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=494&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=494&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=494&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.65G 236s 50K .......... .......... .......... .......... ...... 463M=0s 236s 236s 2025-02-19 11:03:07 (849 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=494&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=495&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=495&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 4.82G 236s 50K .......... .......... .......... .......... .......... 495M 236s 100K .......... ....... 33.3T=0s 236s 236s 2025-02-19 11:03:07 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=495&graph_template_id=51’ saved [120716] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=495&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=495&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 4.59G 236s 50K .......... .......... .......... .......... ...... 470M=0s 236s 236s 2025-02-19 11:03:07 (882 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=495&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=495&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 302 Found 236s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 236s Reusing existing connection to [localhost]:80. 236s HTTP request sent, awaiting response... 200 OK 236s Length: unspecified [text/html] 236s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=495&graph_template_id=51’ 236s 236s 0K .......... .......... .......... .......... .......... 3.36G 236s 50K .......... .......... .......... .......... ...... 417M=0s 236s 236s 2025-02-19 11:03:07 (767 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=495&graph_template_id=51’ saved [98625] 236s 236s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=496&graph_template_id=51 236s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=496&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 3.24G 237s 50K .......... .......... .......... .......... .......... 500M 237s 100K .......... ....... 33.3T=0s 237s 237s 2025-02-19 11:03:07 (1024 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=496&graph_template_id=51’ saved [120723] 237s 237s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=496&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=496&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.16G 237s 50K .......... .......... .......... .......... ...... 473M=0s 237s 237s 2025-02-19 11:03:07 (879 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=496&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=496&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=496&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.50G 237s 50K .......... .......... .......... .......... ...... 489M=0s 237s 237s 2025-02-19 11:03:08 (912 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=496&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=497&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=497&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.84G 237s 50K .......... .......... .......... .......... .......... 546M 237s 100K .......... ....... 33.4T=0s 237s 237s 2025-02-19 11:03:08 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=497&graph_template_id=51’ saved [120735] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=497&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=497&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 3.78G 237s 50K .......... .......... .......... .......... ...... 592M=0s 237s 237s 2025-02-19 11:03:08 (1.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=497&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=497&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=497&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.28G 237s 50K .......... .......... .......... .......... ...... 480M=0s 237s 237s 2025-02-19 11:03:08 (893 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=497&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=498&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=498&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.63G 237s 50K .......... .......... .......... .......... .......... 505M 237s 100K .......... ....... 33.3T=0s 237s 237s 2025-02-19 11:03:08 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=498&graph_template_id=51’ saved [120716] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=498&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=498&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.92G 237s 50K .......... .......... .......... .......... ...... 495M=0s 237s 237s 2025-02-19 11:03:08 (930 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=498&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=498&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=498&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.77G 237s 50K .......... .......... .......... .......... ...... 470M=0s 237s 237s 2025-02-19 11:03:08 (885 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=498&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=499&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=499&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 5.00G 237s 50K .......... .......... .......... .......... .......... 542M 237s 100K .......... ....... 33.3T=0s 237s 237s 2025-02-19 11:03:08 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=499&graph_template_id=51’ saved [120716] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=499&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=499&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.83G 237s 50K .......... .......... .......... .......... ...... 524M=0s 237s 237s 2025-02-19 11:03:08 (977 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=499&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=499&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=499&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.95G 237s 50K .......... .......... .......... .......... ...... 543M=0s 237s 237s 2025-02-19 11:03:08 (1012 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=499&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=500&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=500&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 4.59G 237s 50K .......... .......... .......... .......... .......... 461M 237s 100K .......... ....... 33.3T=0s 237s 237s 2025-02-19 11:03:08 (989 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=500&graph_template_id=51’ saved [120723] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=500&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=500&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... .......... 5.12G 237s 50K .......... .......... .......... .......... ...... 485M=0s 237s 237s 2025-02-19 11:03:08 (916 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=500&graph_template_id=51’ saved [98625] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 8.27G=0s 237s 237s 2025-02-19 11:03:08 (8.27 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=51’ saved [44357] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=99&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=99&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.24G=0s 237s 237s 2025-02-19 11:03:08 (5.24 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=99&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=94&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=94&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.59G=0s 237s 237s 2025-02-19 11:03:08 (5.59 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=94&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=96&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=96&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 4.75G=0s 237s 237s 2025-02-19 11:03:08 (4.75 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=96&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=100&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=100&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.87G=0s 237s 237s 2025-02-19 11:03:08 (5.87 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=100&graph_template_id=51’ saved [44422] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=92&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=92&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.11G=0s 237s 237s 2025-02-19 11:03:08 (5.11 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=92&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=98&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=98&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.34G=0s 237s 237s 2025-02-19 11:03:08 (5.34 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=98&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=97&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=97&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 4.80G=0s 237s 237s 2025-02-19 11:03:08 (4.80 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=97&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=95&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=95&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.16G=0s 237s 237s 2025-02-19 11:03:08 (5.16 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=95&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=91&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=91&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 5.16G=0s 237s 237s 2025-02-19 11:03:08 (5.16 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=91&graph_template_id=51’ saved [44421] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=93&graph_template_id=51 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=93&graph_template_id=51’ 237s 237s 0K .......... .......... .......... .......... ... 4.87G=0s 237s 237s 2025-02-19 11:03:08 (4.87 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=93&graph_template_id=51’ saved [44422] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 3.90G 237s 50K .......... .......... .......... .......... .......... 104M 237s 100K .......... ....... 32.3T=0s 237s 237s 2025-02-19 11:03:08 (237 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=48’ saved [120141] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=441&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=441&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.27G 237s 50K .......... .......... .......... .......... .......... 61.6M 237s 100K .......... ....... 32.3T=0.001s 237s 237s 2025-02-19 11:03:08 (142 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=441&graph_template_id=48’ saved [120180] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=441&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=441&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.74G 237s 50K ...... 12.5T=0s 237s 237s 2025-02-19 11:03:08 (5.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=441&graph_template_id=48’ saved [58075] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=442&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=442&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.39G 237s 50K .......... .......... .......... .......... .......... 448M 237s 100K .......... ....... 32.3T=0s 237s 237s 2025-02-19 11:03:08 (956 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=442&graph_template_id=48’ saved [120165] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=442&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=442&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 5.41G 237s 50K ...... 12.5T=0s 237s 237s 2025-02-19 11:03:08 (6.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=442&graph_template_id=48’ saved [58075] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=442&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=442&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 6.32G 237s 50K ...... 12.5T=0s 237s 237s 2025-02-19 11:03:08 (7.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=442&graph_template_id=48’ saved [58075] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=443&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=443&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.31G 237s 50K .......... .......... .......... .......... .......... 881M 237s 100K .......... ....... 32.3T=0s 237s 237s 2025-02-19 11:03:08 (1.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=443&graph_template_id=48’ saved [120165] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=443&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=443&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.97G 237s 50K ...... 12.5T=0s 237s 237s 2025-02-19 11:03:08 (5.64 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=443&graph_template_id=48’ saved [58075] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=443&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=443&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 5.13G 237s 50K ...... 12.5T=0s 237s 237s 2025-02-19 11:03:08 (5.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=443&graph_template_id=48’ saved [58075] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=444&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=444&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.72G 237s 50K .......... .......... .......... .......... .......... 843M 237s 100K .......... ....... 32.3T=0s 237s 237s 2025-02-19 11:03:08 (1.65 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=444&graph_template_id=48’ saved [120172] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=444&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=444&graph_template_id=48’ 237s 237s 0K .......... .......... .......... .......... .......... 4.03G 237s 50K ...... 12.5T=0s 237s 237s 2025-02-19 11:03:08 (4.57 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=444&graph_template_id=48’ saved [58075] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=48’ 237s 237s 0K .......... .......... .......... 5.36G=0s 237s 237s 2025-02-19 11:03:08 (5.36 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=48’ saved [31325] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=87&graph_template_id=48 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=87&graph_template_id=48’ 237s 237s 0K .......... .......... .......... 5.95G=0s 237s 237s 2025-02-19 11:03:08 (5.95 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=87&graph_template_id=48’ saved [31399] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=46’ 237s 237s 0K .......... .......... .......... .......... .......... 2.56G 237s 50K .......... .......... .......... .......... .......... 887M 237s 100K .......... ....... 32.3T=0s 237s 237s 2025-02-19 11:03:08 (1.52 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=46’ saved [120139] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=420&graph_template_id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=420&graph_template_id=46’ 237s 237s 0K .......... .......... .......... .......... .......... 5.02G 237s 50K .......... .......... .......... .......... .......... 113M 237s 100K .......... ....... 32.2T=0s 237s 237s 2025-02-19 11:03:08 (259 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=420&graph_template_id=46’ saved [120078] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=420&graph_template_id=46 237s Connecting to localhost (localhost)|::1|:80... connected. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=420&graph_template_id=46’ 237s 237s 0K .......... .......... .......... .......... .......... 4.48G 237s 50K .......... ......... 22.1M=0.001s 237s 237s 2025-02-19 11:03:08 (77.2 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=420&graph_template_id=46’ saved [71405] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=421&graph_template_id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=421&graph_template_id=46’ 237s 237s 0K .......... .......... .......... .......... .......... 2.59G 237s 50K .......... .......... .......... .......... .......... 644M 237s 100K .......... ....... 32.2T=0s 237s 237s 2025-02-19 11:03:08 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=421&graph_template_id=46’ saved [120078] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=421&graph_template_id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 200 OK 237s Length: unspecified [text/html] 237s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=421&graph_template_id=46’ 237s 237s 0K .......... .......... .......... .......... .......... 4.72G 237s 50K .......... ......... 80.2M=0s 237s 237s 2025-02-19 11:03:08 (272 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=421&graph_template_id=46’ saved [71405] 237s 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=421&graph_template_id=46 237s Reusing existing connection to [localhost]:80. 237s HTTP request sent, awaiting response... 302 Found 237s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 237s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 237s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=421&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.43G 238s 50K .......... ......... 100M=0s 238s 238s 2025-02-19 11:03:08 (339 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=421&graph_template_id=46’ saved [71405] 238s 238s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=422&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=422&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.17G 238s 50K .......... .......... .......... .......... .......... 146M 238s 100K .......... ....... 32.2T=0s 238s 238s 2025-02-19 11:03:08 (333 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=422&graph_template_id=46’ saved [120078] 238s 238s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=422&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=422&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.61G 238s 50K .......... ......... 22.7M=0.001s 238s 238s 2025-02-19 11:03:09 (79.6 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=422&graph_template_id=46’ saved [71405] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=422&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=422&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.77G 238s 50K .......... ......... 159M=0s 238s 238s 2025-02-19 11:03:09 (527 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=422&graph_template_id=46’ saved [71405] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=423&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=423&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.04G 238s 50K .......... .......... .......... .......... .......... 873M 238s 100K .......... ....... 32.2T=0s 238s 238s 2025-02-19 11:03:09 (1.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=423&graph_template_id=46’ saved [120078] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=423&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=423&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.11G 238s 50K .......... ......... 29.7M=0.001s 238s 238s 2025-02-19 11:03:09 (104 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=423&graph_template_id=46’ saved [71405] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=423&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=423&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.29G 238s 50K .......... ......... 142M=0s 238s 238s 2025-02-19 11:03:09 (471 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=423&graph_template_id=46’ saved [71405] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=424&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=424&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.35G 238s 50K .......... .......... .......... .......... .......... 918M 238s 100K .......... ....... 32.2T=0s 238s 238s 2025-02-19 11:03:09 (1.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=424&graph_template_id=46’ saved [120104] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=424&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=424&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 4.06G 238s 50K .......... ......... 51.9M=0s 238s 238s 2025-02-19 11:03:09 (178 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=424&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=424&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=424&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.86G 238s 50K .......... ......... 53.1M=0s 238s 238s 2025-02-19 11:03:09 (184 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=424&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=425&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=425&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.65G 238s 50K .......... .......... .......... .......... .......... 144M 238s 100K .......... ....... 32.2T=0s 238s 238s 2025-02-19 11:03:09 (329 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=425&graph_template_id=46’ saved [120086] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=425&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=425&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.08G 238s 50K .......... ......... 207M=0s 238s 238s 2025-02-19 11:03:09 (665 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=425&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=425&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=425&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 7.08G 238s 50K .......... ......... 242M=0s 238s 238s 2025-02-19 11:03:09 (787 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=425&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=426&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=426&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.83G 238s 50K .......... .......... .......... .......... .......... 389M 238s 100K .......... ....... 32.2T=0s 238s 238s 2025-02-19 11:03:09 (856 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=426&graph_template_id=46’ saved [120086] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=426&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=426&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.00G 238s 50K .......... ......... 42.5M=0s 238s 238s 2025-02-19 11:03:09 (147 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=426&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=426&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=426&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.89G 238s 50K .......... ......... 52.2M=0s 238s 238s 2025-02-19 11:03:09 (181 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=426&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=427&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=427&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 7.57G 238s 50K .......... .......... .......... .......... .......... 131M 238s 100K .......... ....... 32.2T=0s 238s 238s 2025-02-19 11:03:09 (303 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=427&graph_template_id=46’ saved [120093] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=427&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=427&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 7.85G 238s 50K .......... ......... 251M=0s 238s 238s 2025-02-19 11:03:09 (822 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=427&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=427&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=427&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.81G 238s 50K .......... ......... 219M=0s 238s 238s 2025-02-19 11:03:09 (716 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=427&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=428&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=428&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 7.17G 238s 50K .......... .......... .......... .......... .......... 473M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=428&graph_template_id=46’ saved [120181] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=428&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=428&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.78G 238s 50K .......... ......... 51.1M=0s 238s 238s 2025-02-19 11:03:09 (177 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=428&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=428&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=428&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.77G 238s 50K .......... ......... 54.6M=0s 238s 238s 2025-02-19 11:03:09 (189 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=428&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=429&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=429&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.21G 238s 50K .......... .......... .......... .......... .......... 143M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (329 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=429&graph_template_id=46’ saved [120168] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=429&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=429&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.77G 238s 50K .......... ......... 52.2M=0s 238s 238s 2025-02-19 11:03:09 (180 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=429&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=429&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=429&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.78G 238s 50K .......... ......... 55.2M=0s 238s 238s 2025-02-19 11:03:09 (190 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=429&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=430&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=430&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.20G 238s 50K .......... .......... .......... .......... .......... 139M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (318 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=430&graph_template_id=46’ saved [120168] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=430&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=430&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 4.66G 238s 50K .......... ......... 58.9M=0s 238s 238s 2025-02-19 11:03:09 (202 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=430&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=430&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=430&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.33G 238s 50K .......... ......... 56.7M=0s 238s 238s 2025-02-19 11:03:09 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=430&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=431&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=431&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.62G 238s 50K .......... .......... .......... .......... .......... 134M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=431&graph_template_id=46’ saved [120175] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=431&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=431&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.90G 238s 50K .......... ......... 199M=0s 238s 238s 2025-02-19 11:03:09 (650 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=431&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=431&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=431&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 4.81G 238s 50K .......... ......... 261M=0s 238s 238s 2025-02-19 11:03:09 (813 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=431&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=432&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=432&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.99G 238s 50K .......... .......... .......... .......... .......... 396M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (873 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=432&graph_template_id=46’ saved [120176] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=432&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=432&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 4.47G 238s 50K .......... ......... 51.5M=0s 238s 238s 2025-02-19 11:03:09 (177 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=432&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=432&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=432&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 4.80G 238s 50K .......... ......... 54.8M=0s 238s 238s 2025-02-19 11:03:09 (188 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=432&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=433&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=433&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 4.82G 238s 50K .......... .......... .......... .......... .......... 137M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (313 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=433&graph_template_id=46’ saved [120164] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=433&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=433&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 3.24G 238s 50K .......... ......... 55.6M=0s 238s 238s 2025-02-19 11:03:09 (188 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=433&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=433&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=433&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.01G 238s 50K .......... ......... 57.2M=0s 238s 238s 2025-02-19 11:03:09 (196 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=433&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=434&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=434&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.25G 238s 50K .......... .......... .......... .......... .......... 134M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=434&graph_template_id=46’ saved [120164] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=434&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=434&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.65G 238s 50K .......... ......... 229M=0s 238s 238s 2025-02-19 11:03:09 (736 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=434&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=434&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=434&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 6.02G 238s 50K .......... ......... 200M=0s 238s 238s 2025-02-19 11:03:09 (653 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=434&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=435&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=435&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.14G 238s 50K .......... .......... .......... .......... .......... 440M 238s 100K .......... ....... 32.3T=0s 238s 238s 2025-02-19 11:03:09 (953 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=435&graph_template_id=46’ saved [120171] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=435&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 302 Found 238s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=435&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .......... .......... 5.08G 238s 50K .......... ......... 53.8M=0s 238s 238s 2025-02-19 11:03:09 (185 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=435&graph_template_id=46’ saved [71403] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 238s HTTP request sent, awaiting response... 200 OK 238s Length: unspecified [text/html] 238s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=46’ 238s 238s 0K .......... .......... .......... .... 5.68G=0s 238s 238s 2025-02-19 11:03:09 (5.68 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=46’ saved [35710] 238s 238s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=85&graph_template_id=46 238s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=85&graph_template_id=46’ 239s 239s 0K .......... .......... .......... .... 7.12G=0s 239s 239s 2025-02-19 11:03:09 (7.12 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=85&graph_template_id=46’ saved [35784] 239s 239s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=84&graph_template_id=46 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=84&graph_template_id=46’ 239s 239s 0K .......... .......... .......... .... 6.16G=0s 239s 239s 2025-02-19 11:03:09 (6.16 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=84&graph_template_id=46’ saved [35786] 239s 239s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 4.97G 239s 50K .......... .......... .......... .......... .......... 128M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:09 (292 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=47’ saved [120134] 239s 239s --2025-02-19 11:03:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=436&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=436&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.56G 239s 50K .......... .......... .......... .......... .......... 134M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (308 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=436&graph_template_id=47’ saved [120158] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=436&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=436&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.46G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (7.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=436&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=437&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=437&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 5.82G 239s 50K .......... .......... .......... .......... .......... 139M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (319 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=437&graph_template_id=47’ saved [120158] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=437&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=437&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.63G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (7.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=437&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=437&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=437&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 7.94G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (9.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=437&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=438&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=438&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.19G 239s 50K .......... .......... .......... .......... .......... 138M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (317 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=438&graph_template_id=47’ saved [120165] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=438&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=438&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.54G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (7.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=438&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=438&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=438&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 7.98G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (9.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=438&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=439&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=439&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 5.50G 239s 50K .......... .......... .......... .......... .......... 363M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (801 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=439&graph_template_id=47’ saved [120175] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=439&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=439&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 7.55G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (8.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=439&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=439&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=439&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.55G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (7.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=439&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=440&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=440&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 5.52G 239s 50K .......... .......... .......... .......... .......... 140M 239s 100K .......... ....... 32.4T=0s 239s 239s 2025-02-19 11:03:10 (322 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=440&graph_template_id=47’ saved [120192] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=440&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=440&graph_template_id=47’ 239s 239s 0K .......... .......... .......... .......... .......... 6.92G 239s 50K ....... 14.8T=0s 239s 239s 2025-02-19 11:03:10 (8.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=440&graph_template_id=47’ saved [59351] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=47 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=47’ 239s 239s 0K .......... .......... .......... 4.78G=0s 239s 239s 2025-02-19 11:03:10 (4.78 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=47’ saved [31697] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=86&graph_template_id=47 239s Connecting to localhost (localhost)|::1|:80... connected. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=86&graph_template_id=47’ 239s 239s 0K .......... .......... .......... . 2.46G=0s 239s 239s 2025-02-19 11:03:10 (2.46 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=86&graph_template_id=47’ saved [31775] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 3.18G 239s 50K .......... .......... .......... .......... .......... 157M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (352 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=16’ saved [120136] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=122&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=122&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.25G 239s 50K .......... .......... .......... .......... .......... 701M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (1.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=122&graph_template_id=16’ saved [120175] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=122&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=122&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 3.13G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (3.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=122&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=123&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=123&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 3.87G 239s 50K .......... .......... .......... .......... .......... 85.0M 239s 100K .......... ....... 32.3T=0.001s 239s 239s 2025-02-19 11:03:10 (195 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=123&graph_template_id=16’ saved [120160] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=123&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=123&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.73G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (6.74 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=123&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=123&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=123&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.52G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (6.48 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=123&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=124&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=124&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.44G 239s 50K .......... .......... .......... .......... .......... 972M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (1.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=124&graph_template_id=16’ saved [120156] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=124&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=124&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.88G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (6.91 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=124&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=124&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=124&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.27G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (6.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=124&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=125&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=125&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.33G 239s 50K .......... .......... .......... .......... .......... 881M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (1.74 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=125&graph_template_id=16’ saved [120156] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=125&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=125&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 6.99G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (8.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=125&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=125&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=125&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 7.27G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (8.54 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=125&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=126&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=126&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 6.69G 239s 50K .......... .......... .......... .......... .......... 377M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (838 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=126&graph_template_id=16’ saved [120163] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=126&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=126&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 7.55G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (8.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=126&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=126&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=126&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 6.93G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (8.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=126&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=127&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=127&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 5.81G 239s 50K .......... .......... .......... .......... .......... 110M 239s 100K .......... ....... 32.3T=0s 239s 239s 2025-02-19 11:03:10 (254 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=127&graph_template_id=16’ saved [120167] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=127&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=127&graph_template_id=16’ 239s 239s 0K .......... .......... .......... .......... .......... 6.83G 239s 50K ........ 16.3T=0s 239s 239s 2025-02-19 11:03:10 (8.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=127&graph_template_id=16’ saved [60144] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=16’ 239s 239s 0K .......... .......... .......... . 6.94G=0s 239s 239s 2025-02-19 11:03:10 (6.94 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=16’ saved [32053] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=25&graph_template_id=16 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=25&graph_template_id=16’ 239s 239s 0K .......... .......... .......... . 6.88G=0s 239s 239s 2025-02-19 11:03:10 (6.88 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=25&graph_template_id=16’ saved [32136] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 5.82G 239s 50K .......... .......... .......... .......... .......... 133M 239s 100K .......... ....... 32.4T=0s 239s 239s 2025-02-19 11:03:10 (305 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=26’ saved [120209] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=186&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=186&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 6.88G 239s 50K .......... .......... .......... .......... .......... 131M 239s 100K .......... ....... 32.5T=0s 239s 239s 2025-02-19 11:03:10 (301 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=186&graph_template_id=26’ saved [120247] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=186&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=186&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 7.12G 239s 50K .......... ... 24.4T=0s 239s 239s 2025-02-19 11:03:10 (8.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=186&graph_template_id=26’ saved [64625] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=187&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=187&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 6.30G 239s 50K .......... .......... .......... .......... .......... 137M 239s 100K .......... ....... 32.4T=0s 239s 239s 2025-02-19 11:03:10 (315 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=187&graph_template_id=26’ saved [120233] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=187&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=187&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 6.35G 239s 50K .......... ... 24.4T=0s 239s 239s 2025-02-19 11:03:10 (8.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=187&graph_template_id=26’ saved [64625] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=187&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 302 Found 239s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=187&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 6.53G 239s 50K .......... ... 24.4T=0s 239s 239s 2025-02-19 11:03:10 (8.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=187&graph_template_id=26’ saved [64625] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=188&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 239s HTTP request sent, awaiting response... 200 OK 239s Length: unspecified [text/html] 239s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=188&graph_template_id=26’ 239s 239s 0K .......... .......... .......... .......... .......... 6.09G 239s 50K .......... .......... .......... .......... .......... 133M 239s 100K .......... ....... 32.4T=0s 239s 239s 2025-02-19 11:03:10 (306 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=188&graph_template_id=26’ saved [120229] 239s 239s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=188&graph_template_id=26 239s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=188&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 5.38G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:10 (6.79 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=188&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=188&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=188&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 5.12G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:10 (6.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=188&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=189&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=189&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 6.03G 240s 50K .......... .......... .......... .......... .......... 140M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (321 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=189&graph_template_id=26’ saved [120229] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=189&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=189&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.04G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (8.88 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=189&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=189&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=189&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.87G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=189&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=190&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=190&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 1.28G 240s 50K .......... .......... .......... .......... .......... 123M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (264 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=190&graph_template_id=26’ saved [120237] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=190&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=190&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.32G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=190&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=190&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=190&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.86G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=190&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=191&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=191&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 6.78G 240s 50K .......... .......... .......... .......... .......... 124M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (287 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=191&graph_template_id=26’ saved [120247] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=191&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=191&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.30G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=191&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=191&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=191&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 6.40G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (8.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=191&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=192&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=192&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.23G 240s 50K .......... .......... .......... .......... .......... 133M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=192&graph_template_id=26’ saved [120233] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=192&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=192&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.64G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.65 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=192&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=192&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=192&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 4.99G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (6.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=192&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=193&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=193&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 5.10G 240s 50K .......... .......... .......... .......... .......... 248M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (557 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=193&graph_template_id=26’ saved [120229] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=193&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=193&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.87G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=193&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=193&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=193&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 5.07G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (6.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=193&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=194&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=194&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.38G 240s 50K .......... .......... .......... .......... .......... 133M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=194&graph_template_id=26’ saved [120229] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=194&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=194&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 7.77G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (9.81 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=194&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=194&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=194&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 6.76G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (8.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=194&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=195&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=195&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 6.84G 240s 50K .......... .......... .......... .......... .......... 356M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (796 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=195&graph_template_id=26’ saved [120236] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=195&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=195&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .......... .......... 4.78G 240s 50K .......... ... 24.4T=0s 240s 240s 2025-02-19 11:03:11 (6.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=195&graph_template_id=26’ saved [64625] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .. 4.51G=0s 240s 240s 2025-02-19 11:03:11 (4.51 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=26’ saved [33473] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=37&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=37&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .. 4.15G=0s 240s 240s 2025-02-19 11:03:11 (4.15 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=37&graph_template_id=26’ saved [33552] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=36&graph_template_id=26 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=36&graph_template_id=26’ 240s 240s 0K .......... .......... .......... .. 5.52G=0s 240s 240s 2025-02-19 11:03:11 (5.52 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=36&graph_template_id=26’ saved [33552] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 4.61G 240s 50K .......... .......... .......... .......... .......... 123M 240s 100K .......... ....... 32.4T=0s 240s 240s 2025-02-19 11:03:11 (281 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=25’ saved [120238] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=176&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=176&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 5.45G 240s 50K .......... .......... .......... .......... .......... 122M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (280 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=176&graph_template_id=25’ saved [120277] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=176&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=176&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 3.87G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (4.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=176&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=177&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=177&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 7.17G 240s 50K .......... .......... .......... .......... .......... 124M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (287 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=177&graph_template_id=25’ saved [120262] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=177&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=177&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 4.37G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (5.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=177&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=177&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=177&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 7.73G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (9.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=177&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=178&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=178&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 7.34G 240s 50K .......... .......... .......... .......... .......... 133M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=178&graph_template_id=25’ saved [120258] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=178&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=178&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.79G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (8.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=178&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=178&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=178&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.37G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (8.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=178&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=179&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=179&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.78G 240s 50K .......... .......... .......... .......... .......... 385M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (857 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=179&graph_template_id=25’ saved [120258] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=179&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=179&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.24G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (7.89 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=179&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=179&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=179&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 5.86G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (7.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=179&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=180&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=180&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.61G 240s 50K .......... .......... .......... .......... .......... 135M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (312 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=180&graph_template_id=25’ saved [120266] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=180&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Connecting to localhost (localhost)|::1|:80... connected. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=180&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.31G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (7.98 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=180&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=180&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=180&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 7.55G 240s 50K .......... ... 143M=0s 240s 240s 2025-02-19 11:03:11 (638 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=180&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=181&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=181&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.13G 240s 50K .......... .......... .......... .......... .......... 425M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (934 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=181&graph_template_id=25’ saved [120277] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=181&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=181&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.57G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (8.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=181&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=181&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 302 Found 240s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=181&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.86G 240s 50K .......... ... 24.7T=0s 240s 240s 2025-02-19 11:03:11 (8.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=181&graph_template_id=25’ saved [64765] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=182&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 240s HTTP request sent, awaiting response... 200 OK 240s Length: unspecified [text/html] 240s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=182&graph_template_id=25’ 240s 240s 0K .......... .......... .......... .......... .......... 6.01G 240s 50K .......... .......... .......... .......... .......... 118M 240s 100K .......... ....... 32.5T=0s 240s 240s 2025-02-19 11:03:11 (272 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=182&graph_template_id=25’ saved [120262] 240s 240s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=182&graph_template_id=25 240s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=182&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 6.38G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:11 (8.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=182&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=182&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=182&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 7.21G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:11 (9.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=182&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=183&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=183&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 4.72G 241s 50K .......... .......... .......... .......... .......... 225M 241s 100K .......... ....... 32.5T=0s 241s 241s 2025-02-19 11:03:12 (505 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=183&graph_template_id=25’ saved [120258] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=183&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=183&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 5.17G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:12 (6.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=183&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=183&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=183&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 2.61G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:12 (3.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=183&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=184&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=184&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 5.42G 241s 50K .......... .......... .......... .......... .......... 355M 241s 100K .......... ....... 32.5T=0s 241s 241s 2025-02-19 11:03:12 (783 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=184&graph_template_id=25’ saved [120258] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=184&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=184&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 4.63G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:12 (5.86 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=184&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=184&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=184&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 5.17G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:12 (6.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=184&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=185&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=185&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 4.15G 241s 50K .......... .......... .......... .......... .......... 787M 241s 100K .......... ....... 32.5T=0s 241s 241s 2025-02-19 11:03:12 (1.52 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=185&graph_template_id=25’ saved [120265] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=185&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=185&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .......... .......... 6.29G 241s 50K .......... ... 24.7T=0s 241s 241s 2025-02-19 11:03:12 (7.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=185&graph_template_id=25’ saved [64765] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .. 7.43G=0s 241s 241s 2025-02-19 11:03:12 (7.43 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=25’ saved [33484] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=34&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=34&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .. 7.60G=0s 241s 241s 2025-02-19 11:03:12 (7.60 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=34&graph_template_id=25’ saved [33561] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=35&graph_template_id=25 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=35&graph_template_id=25’ 241s 241s 0K .......... .......... .......... .. 5.05G=0s 241s 241s 2025-02-19 11:03:12 (5.05 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=35&graph_template_id=25’ saved [33561] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 2.70G 241s 50K .......... .......... .......... .......... .......... 141M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (315 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=27’ saved [120210] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=196&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=196&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.93G 241s 50K .......... .......... .......... .......... .......... 132M 241s 100K .......... ....... 32.5T=0s 241s 241s 2025-02-19 11:03:12 (302 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=196&graph_template_id=27’ saved [120245] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=196&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=196&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 6.68G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (8.44 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=196&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=197&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=197&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.75G 241s 50K .......... .......... .......... .......... .......... 135M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (309 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=197&graph_template_id=27’ saved [120234] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=197&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=197&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.56G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (5.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=197&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=197&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=197&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.37G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (4.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=197&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=198&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=198&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.09G 241s 50K .......... .......... .......... .......... .......... 102M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (232 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=198&graph_template_id=27’ saved [120230] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=198&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=198&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.91G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (4.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=198&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=198&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=198&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.26G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (5.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=198&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=199&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=199&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.66G 241s 50K .......... .......... .......... .......... .......... 132M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (302 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=199&graph_template_id=27’ saved [120230] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=199&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=199&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.71G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (5.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=199&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=199&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=199&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.01G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (5.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=199&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=200&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=200&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 5.59G 241s 50K .......... .......... .......... .......... .......... 148M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (340 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=200&graph_template_id=27’ saved [120238] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=200&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=200&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 6.58G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (8.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=200&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=200&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=200&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 6.57G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (8.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=200&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=201&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=201&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 6.35G 241s 50K .......... .......... .......... .......... .......... 126M 241s 100K .......... ....... 32.5T=0s 241s 241s 2025-02-19 11:03:12 (291 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=201&graph_template_id=27’ saved [120246] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=201&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=201&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 5.87G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (7.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=201&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=201&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=201&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 5.23G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (6.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=201&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=202&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=202&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 5.55G 241s 50K .......... .......... .......... .......... .......... 230M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (519 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=202&graph_template_id=27’ saved [120234] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=202&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=202&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.23G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (5.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=202&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=202&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=202&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 6.22G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (7.85 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=202&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=203&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=203&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.38G 241s 50K .......... .......... .......... .......... .......... 125M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (286 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=203&graph_template_id=27’ saved [120230] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=203&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=203&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.27G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (4.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=203&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=203&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=203&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.21G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (4.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=203&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=204&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=204&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 5.50G 241s 50K .......... .......... .......... .......... .......... 255M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (573 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=204&graph_template_id=27’ saved [120230] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=204&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=204&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.44G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (4.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=204&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=204&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=204&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 6.10G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (7.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=204&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=205&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=205&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 3.42G 241s 50K .......... .......... .......... .......... .......... 129M 241s 100K .......... ....... 32.4T=0s 241s 241s 2025-02-19 11:03:12 (293 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=205&graph_template_id=27’ saved [120237] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=205&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 302 Found 241s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=205&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .......... .......... 4.92G 241s 50K .......... ... 24.4T=0s 241s 241s 2025-02-19 11:03:12 (6.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=205&graph_template_id=27’ saved [64626] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 241s HTTP request sent, awaiting response... 200 OK 241s Length: unspecified [text/html] 241s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=27’ 241s 241s 0K .......... .......... .......... .. 6.33G=0s 241s 241s 2025-02-19 11:03:12 (6.33 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=27’ saved [33475] 241s 241s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=38&graph_template_id=27 241s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=38&graph_template_id=27’ 242s 242s 0K .......... .......... .......... .. 7.23G=0s 242s 242s 2025-02-19 11:03:12 (7.23 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=38&graph_template_id=27’ saved [33551] 242s 242s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=39&graph_template_id=27 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=39&graph_template_id=27’ 242s 242s 0K .......... .......... .......... .. 6.47G=0s 242s 242s 2025-02-19 11:03:12 (6.47 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=39&graph_template_id=27’ saved [33552] 242s 242s --2025-02-19 11:03:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 2.79G 242s 50K .......... .......... .......... .......... .......... 129M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (291 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=18’ saved [120164] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=134&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=134&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 6.84G 242s 50K .......... .......... .......... .......... .......... 139M 242s 100K .......... ....... 32.4T=0s 242s 242s 2025-02-19 11:03:13 (321 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=134&graph_template_id=18’ saved [120203] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=134&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=134&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.44G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (6.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=134&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=135&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=135&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.42G 242s 50K .......... .......... .......... .......... .......... 130M 242s 100K .......... ....... 32.4T=0s 242s 242s 2025-02-19 11:03:13 (298 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=135&graph_template_id=18’ saved [120188] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=135&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=135&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 7.12G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (8.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=135&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=135&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=135&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.79G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (6.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=135&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=136&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=136&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 7.25G 242s 50K .......... .......... .......... .......... .......... 338M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (760 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=136&graph_template_id=18’ saved [120184] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=136&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=136&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 6.95G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (8.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=136&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=136&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=136&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.88G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (6.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=136&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=137&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=137&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.58G 242s 50K .......... .......... .......... .......... .......... 136M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (313 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=137&graph_template_id=18’ saved [120184] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=137&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=137&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 6.62G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (7.80 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=137&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=137&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=137&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.16G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (6.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=137&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=138&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=138&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.18G 242s 50K .......... .......... .......... .......... .......... 321M 242s 100K .......... ....... 32.4T=0s 242s 242s 2025-02-19 11:03:13 (710 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=138&graph_template_id=18’ saved [120191] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=138&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=138&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 4.95G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (5.83 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=138&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=138&graph_template_id=18 242s Connecting to localhost (localhost)|::1|:80... connected. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=138&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.09G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (6.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=138&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=139&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=139&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 3.80G 242s 50K .......... .......... .......... .......... .......... 196M 242s 100K .......... ....... 32.4T=0s 242s 242s 2025-02-19 11:03:13 (438 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=139&graph_template_id=18’ saved [120195] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=139&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=139&graph_template_id=18’ 242s 242s 0K .......... .......... .......... .......... .......... 5.94G 242s 50K ........ 16.5T=0s 242s 242s 2025-02-19 11:03:13 (6.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=139&graph_template_id=18’ saved [60287] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=18’ 242s 242s 0K .......... .......... .......... . 4.96G=0s 242s 242s 2025-02-19 11:03:13 (4.96 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=18’ saved [32064] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=27&graph_template_id=18 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=27&graph_template_id=18’ 242s 242s 0K .......... .......... .......... . 4.25G=0s 242s 242s 2025-02-19 11:03:13 (4.25 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=27&graph_template_id=18’ saved [32153] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 3.27G 242s 50K .......... .......... .......... .......... .......... 748M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (1.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=19’ saved [120132] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=140&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=140&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.49G 242s 50K .......... .......... .......... .......... .......... 139M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (317 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=140&graph_template_id=19’ saved [120171] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=140&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=140&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.82G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (5.66 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=140&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=141&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=141&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.65G 242s 50K .......... .......... .......... .......... .......... 306M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (675 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=141&graph_template_id=19’ saved [120156] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=141&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=141&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 7.39G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (8.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=141&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=141&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=141&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 6.35G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (7.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=141&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=142&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=142&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.85G 242s 50K .......... .......... .......... .......... .......... 114M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (261 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=142&graph_template_id=19’ saved [120152] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=142&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=142&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.42G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (5.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=142&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=142&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=142&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.56G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (5.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=142&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=143&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=143&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 5.12G 242s 50K .......... .......... .......... .......... .......... 701M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (1.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=143&graph_template_id=19’ saved [120152] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=143&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=143&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.01G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (4.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=143&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=143&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=143&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 3.92G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (4.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=143&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=144&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=144&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.49G 242s 50K .......... .......... .......... .......... .......... 714M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (1.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=144&graph_template_id=19’ saved [120159] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=144&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=144&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 6.48G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (7.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=144&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=144&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=144&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 4.67G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (5.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=144&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=145&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=145&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 5.22G 242s 50K .......... .......... .......... .......... .......... 299M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (664 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=145&graph_template_id=19’ saved [120163] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=145&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=145&graph_template_id=19’ 242s 242s 0K .......... .......... .......... .......... .......... 5.90G 242s 50K ........ 16.2T=0s 242s 242s 2025-02-19 11:03:13 (6.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=145&graph_template_id=19’ saved [60112] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=19’ 242s 242s 0K .......... .......... .......... . 4.96G=0s 242s 242s 2025-02-19 11:03:13 (4.96 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=19’ saved [32051] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=28&graph_template_id=19 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=28&graph_template_id=19’ 242s 242s 0K .......... .......... .......... . 5.51G=0s 242s 242s 2025-02-19 11:03:13 (5.51 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=28&graph_template_id=19’ saved [32133] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=20 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=20’ 242s 242s 0K .......... .......... .......... .......... .......... 4.93G 242s 50K .......... .......... .......... .......... .......... 273M 242s 100K .......... ....... 32.3T=0s 242s 242s 2025-02-19 11:03:13 (608 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=20’ saved [120175] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=146&graph_template_id=20 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=146&graph_template_id=20’ 242s 242s 0K .......... .......... .......... .......... .......... 4.69G 242s 50K .......... .......... .......... .......... .......... 62.0M 242s 100K .......... ....... 32.4T=0.001s 242s 242s 2025-02-19 11:03:13 (144 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=146&graph_template_id=20’ saved [120211] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=146&graph_template_id=20 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=146&graph_template_id=20’ 242s 242s 0K .......... .......... .......... .......... .......... 5.44G 242s 50K ........ 16.6T=0s 242s 242s 2025-02-19 11:03:13 (6.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=146&graph_template_id=20’ saved [60341] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=147&graph_template_id=20 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 200 OK 242s Length: unspecified [text/html] 242s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=147&graph_template_id=20’ 242s 242s 0K .......... .......... .......... .......... .......... 4.97G 242s 50K .......... .......... .......... .......... .......... 193M 242s 100K .......... ....... 32.4T=0s 242s 242s 2025-02-19 11:03:13 (436 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=147&graph_template_id=20’ saved [120199] 242s 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=147&graph_template_id=20 242s Reusing existing connection to [localhost]:80. 242s HTTP request sent, awaiting response... 302 Found 242s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 242s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 242s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=147&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 5.14G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:13 (6.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=147&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=147&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=147&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 5.06G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:13 (5.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=147&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=148&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=148&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 4.92G 243s 50K .......... .......... .......... .......... .......... 162M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (369 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=148&graph_template_id=20’ saved [120195] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=148&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=148&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 6.05G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (7.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=148&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=148&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=148&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 6.01G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (7.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=148&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=149&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=149&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 3.98G 243s 50K .......... .......... .......... .......... .......... 758M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (1.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=149&graph_template_id=20’ saved [120195] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=149&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=149&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 5.25G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (6.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=149&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=149&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=149&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 6.69G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (7.89 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=149&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=150&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=150&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 5.70G 243s 50K .......... .......... .......... .......... .......... 867M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (1.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=150&graph_template_id=20’ saved [120202] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=150&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=150&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 5.08G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (5.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=150&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=150&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=150&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 4.34G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (5.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=150&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=151&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=151&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 5.80G 243s 50K .......... .......... .......... .......... .......... 164M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (374 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=151&graph_template_id=20’ saved [120206] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=151&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=151&graph_template_id=20’ 243s 243s 0K .......... .......... .......... .......... .......... 6.89G 243s 50K ........ 16.6T=0s 243s 243s 2025-02-19 11:03:14 (8.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=151&graph_template_id=20’ saved [60341] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=20’ 243s 243s 0K .......... .......... .......... . 5.74G=0s 243s 243s 2025-02-19 11:03:14 (5.74 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=20’ saved [32069] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=29&graph_template_id=20 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=29&graph_template_id=20’ 243s 243s 0K .......... .......... .......... . 5.68G=0s 243s 243s 2025-02-19 11:03:14 (5.68 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=29&graph_template_id=20’ saved [32159] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 2.46G 243s 50K .......... .......... .......... .......... .......... 143M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (317 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=32’ saved [120204] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=267&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=267&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.15G 243s 50K .......... .......... .......... .......... .......... 403M 243s 100K .......... ....... 32.5T=0s 243s 243s 2025-02-19 11:03:14 (879 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=267&graph_template_id=32’ saved [120242] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=267&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=267&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 4.71G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (5.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=267&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=268&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=268&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 7.76G 243s 50K .......... .......... .......... .......... .......... 128M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (296 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=268&graph_template_id=32’ saved [120228] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=268&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=268&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 6.98G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (8.80 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=268&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=268&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=268&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 3.50G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (4.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=268&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=269&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=269&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.66G 243s 50K .......... .......... .......... .......... .......... 225M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (509 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=269&graph_template_id=32’ saved [120224] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=269&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=269&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.03G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (6.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=269&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=269&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=269&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 7.05G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (8.89 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=269&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=270&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=270&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 6.69G 243s 50K .......... .......... .......... .......... .......... 132M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (303 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=270&graph_template_id=32’ saved [120224] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=270&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=270&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.81G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (7.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=270&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=270&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=270&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 4.80G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (6.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=270&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=271&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=271&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 4.58G 243s 50K .......... .......... .......... .......... .......... 437M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (939 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=271&graph_template_id=32’ saved [120232] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=271&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=271&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 4.83G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (6.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=271&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=271&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=271&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 7.28G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (9.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=271&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=272&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=272&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.36G 243s 50K .......... .......... .......... .......... .......... 358M 243s 100K .......... ....... 32.5T=0s 243s 243s 2025-02-19 11:03:14 (789 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=272&graph_template_id=32’ saved [120242] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=272&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=272&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.02G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (6.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=272&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=272&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=272&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 6.08G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (7.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=272&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=273&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=273&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 4.38G 243s 50K .......... .......... .......... .......... .......... 744M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (1.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=273&graph_template_id=32’ saved [120228] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=273&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=273&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 6.31G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (7.97 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=273&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=273&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=273&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.90G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (7.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=273&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=274&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=274&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.39G 243s 50K .......... .......... .......... .......... .......... 606M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=274&graph_template_id=32’ saved [120224] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=274&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Connecting to localhost (localhost)|::1|:80... connected. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=274&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 582M 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (735 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=274&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=274&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=274&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 3.41G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (4.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=274&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=275&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=275&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 5.91G 243s 50K .......... .......... .......... .......... .......... 570M 243s 100K .......... ....... 32.4T=0s 243s 243s 2025-02-19 11:03:14 (1.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=275&graph_template_id=32’ saved [120224] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=275&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 200 OK 243s Length: unspecified [text/html] 243s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=275&graph_template_id=32’ 243s 243s 0K .......... .......... .......... .......... .......... 4.35G 243s 50K .......... ... 24.4T=0s 243s 243s 2025-02-19 11:03:14 (5.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=275&graph_template_id=32’ saved [64599] 243s 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=275&graph_template_id=32 243s Reusing existing connection to [localhost]:80. 243s HTTP request sent, awaiting response... 302 Found 243s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 243s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 243s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=275&graph_template_id=32’ 244s 244s 0K .......... .......... .......... .......... .......... 4.52G 244s 50K .......... ... 24.4T=0s 244s 244s 2025-02-19 11:03:14 (5.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=275&graph_template_id=32’ saved [64599] 244s 244s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=276&graph_template_id=32 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=276&graph_template_id=32’ 244s 244s 0K .......... .......... .......... .......... .......... 5.79G 244s 50K .......... .......... .......... .......... .......... 431M 244s 100K .......... ....... 32.4T=0s 244s 244s 2025-02-19 11:03:14 (944 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=276&graph_template_id=32’ saved [120231] 244s 244s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=276&graph_template_id=32 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 244s --2025-02-19 11:03:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=276&graph_template_id=32’ 244s 244s 0K .......... .......... .......... .......... .......... 7.05G 244s 50K .......... ... 24.4T=0s 244s 244s 2025-02-19 11:03:15 (8.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=276&graph_template_id=32’ saved [64599] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=32 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=32’ 244s 244s 0K .......... .......... .......... .. 6.14G=0s 244s 244s 2025-02-19 11:03:15 (6.14 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=32’ saved [33472] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=55&graph_template_id=32 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=55&graph_template_id=32’ 244s 244s 0K .......... .......... .......... .. 4.83G=0s 244s 244s 2025-02-19 11:03:15 (4.83 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=55&graph_template_id=32’ saved [33550] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=56&graph_template_id=32 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=56&graph_template_id=32’ 244s 244s 0K .......... .......... .......... .. 4.20G=0s 244s 244s 2025-02-19 11:03:15 (4.20 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=56&graph_template_id=32’ saved [33550] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=3 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=3’ 244s 244s 0K .......... .......... .......... .......... .......... 4.29G 244s 50K ....... 14.1T=0s 244s 244s 2025-02-19 11:03:15 (4.94 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=3’ saved [58951] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=2 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=2’ 244s 244s 0K .......... .......... .......... .......... .......... 4.08G 244s 50K ....... 14.1T=0s 244s 244s 2025-02-19 11:03:15 (4.70 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=2’ saved [58953] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=2 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=2&view_rrd=671 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=671 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=2’ 244s 244s 0K .......... .......... .......... .......... .......... 5.89G 244s 50K ....... 14.6T=0s 244s 244s 2025-02-19 11:03:15 (6.81 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=2’ saved [59201] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=11 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=11’ 244s 244s 0K .......... .......... .......... .......... .......... 5.57G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (6.58 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=11’ saved [60541] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=10 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=10’ 244s 244s 0K .......... .......... .......... .......... .......... 4.76G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (5.63 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=10’ saved [60545] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=9 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=9’ 244s 244s 0K .......... .......... .......... .......... .......... 6.32G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (7.48 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=9’ saved [60545] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=7 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=7’ 244s 244s 0K .......... .......... .......... .......... .......... 6.91G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (8.18 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=7’ saved [60547] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=8 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=8’ 244s 244s 0K .......... .......... .......... .......... .......... 4.66G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (5.52 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=8’ saved [60549] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=5 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=5’ 244s 244s 0K .......... .......... .......... .......... .......... 6.25G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (7.38 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=5’ saved [60541] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=6 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=6’ 244s 244s 0K .......... .......... .......... .......... .......... 4.54G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (5.37 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=6’ saved [60555] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=4 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=4’ 244s 244s 0K .......... .......... .......... .......... .......... 4.97G 244s 50K ......... 17.0T=0s 244s 244s 2025-02-19 11:03:15 (5.88 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=4’ saved [60557] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=3 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=3&view_rrd=672 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=672 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=3’ 244s 244s 0K .......... .......... .......... .......... .......... 5.17G 244s 50K ......... 17.5T=0s 244s 244s 2025-02-19 11:03:15 (6.14 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=3’ saved [60795] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=4 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=4&view_rrd=673 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=673 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=4’ 244s 244s 0K .......... .......... .......... .......... .......... 5.75G 244s 50K ....... 14.0T=0s 244s 244s 2025-02-19 11:03:15 (6.61 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=4’ saved [58921] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=1 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=1&view_rrd=674 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=674 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=1’ 244s 244s 0K .......... .......... .......... .......... .......... 6.30G 244s 50K ....... 14.0T=0s 244s 244s 2025-02-19 11:03:15 (7.25 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=1’ saved [58906] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=14 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=14&view_rrd=675 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=675 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=14’ 244s 244s 0K .......... .......... .......... .......... ...... 4.44G=0s 244s 244s 2025-02-19 11:03:15 (4.44 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=14’ saved [47918] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=15 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=15&view_rrd=676 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=676 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=15’ 244s 244s 0K .......... .......... .......... .......... ...... 4.69G=0s 244s 244s 2025-02-19 11:03:15 (4.69 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=15’ saved [47893] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=12 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=12&view_rrd=677 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=677 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=12’ 244s 244s 0K .......... .......... .......... .......... ...... 5.92G=0s 244s 244s 2025-02-19 11:03:15 (5.92 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=12’ saved [47911] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=13 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=13&view_rrd=678 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=678 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=13’ 244s 244s 0K .......... .......... .......... .......... ...... 5.23G=0s 244s 244s 2025-02-19 11:03:15 (5.23 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=13’ saved [47891] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=11 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=11&view_rrd=679 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=679 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=11’ 244s 244s 0K .......... .......... .......... .......... ...... 3.98G=0s 244s 244s 2025-02-19 11:03:15 (3.98 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=11’ saved [47884] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=10 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=10&view_rrd=680 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=680 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=10’ 244s 244s 0K .......... .......... .......... .......... ...... 3.48G=0s 244s 244s 2025-02-19 11:03:15 (3.48 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=10’ saved [47894] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=48 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=48&view_rrd=681 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=681 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=48’ 244s 244s 0K .......... .......... .......... .......... ...... 4.57G=0s 244s 244s 2025-02-19 11:03:15 (4.57 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=48’ saved [47142] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=46 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=46&view_rrd=682 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=682 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=46’ 244s 244s 0K .......... .......... .......... .......... ...... 4.99G=0s 244s 244s 2025-02-19 11:03:15 (4.99 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=46’ saved [47146] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=47 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=47&view_rrd=683 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=683 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=47’ 244s 244s 0K .......... .......... .......... .......... ...... 6.45G=0s 244s 244s 2025-02-19 11:03:15 (6.45 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=47’ saved [47162] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=87 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=87’ 244s 244s 0K .......... .......... .......... .......... ...... 8.10G=0s 244s 244s 2025-02-19 11:03:15 (8.10 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=87’ saved [47262] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=86 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=86’ 244s 244s 0K .......... .......... .......... .......... ...... 5.15G=0s 244s 244s 2025-02-19 11:03:15 (5.15 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=86’ saved [47263] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=rrd_add&id=49 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 302 Found 244s Location: data_templates.php?action=template_edit&id=49&view_rrd=684 [following] 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=684 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=49’ 244s 244s 0K .......... .......... .......... .......... ...... 5.77G=0s 244s 244s 2025-02-19 11:03:15 (5.77 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=49’ saved [47492] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=96 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=96’ 244s 244s 0K .......... .......... .......... .......... ........ 8.00G=0s 244s 244s 2025-02-19 11:03:15 (8.00 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=96’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=95 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=95’ 244s 244s 0K .......... .......... .......... .......... ........ 4.33G=0s 244s 244s 2025-02-19 11:03:15 (4.33 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=95’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=94 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=94’ 244s 244s 0K .......... .......... .......... .......... ........ 5.35G=0s 244s 244s 2025-02-19 11:03:15 (5.35 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=94’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=93 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=93’ 244s 244s 0K .......... .......... .......... .......... ........ 8.06G=0s 244s 244s 2025-02-19 11:03:15 (8.06 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=93’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=92 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=92’ 244s 244s 0K .......... .......... .......... .......... ........ 6.68G=0s 244s 244s 2025-02-19 11:03:15 (6.68 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=92’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=91 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=91’ 244s 244s 0K .......... .......... .......... .......... ........ 8.12G=0s 244s 244s 2025-02-19 11:03:15 (8.12 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=91’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=90 244s Reusing existing connection to [localhost]:80. 244s HTTP request sent, awaiting response... 200 OK 244s Length: unspecified [text/html] 244s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=90’ 244s 244s 0K .......... .......... .......... .......... ........ 6.61G=0s 244s 244s 2025-02-19 11:03:15 (6.61 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=90’ saved [49912] 244s 244s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=88 244s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=88’ 245s 245s 0K .......... .......... .......... .......... ........ 4.68G=0s 245s 245s 2025-02-19 11:03:15 (4.68 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=88’ saved [49912] 245s 245s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=97 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=97’ 245s 245s 0K .......... .......... .......... .......... ........ 3.89G=0s 245s 245s 2025-02-19 11:03:15 (3.89 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=97’ saved [49912] 245s 245s --2025-02-19 11:03:15-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=89 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=89’ 245s 245s 0K .......... .......... .......... .......... ........ 4.96G=0s 245s 245s 2025-02-19 11:03:16 (4.96 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=89’ saved [49914] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=rrd_add&id=50 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 302 Found 245s Location: data_templates.php?action=template_edit&id=50&view_rrd=685 [following] 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=685 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=50’ 245s 245s 0K .......... .......... .......... .......... ........ 4.88G=0s 245s 245s 2025-02-19 11:03:16 (4.88 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=50’ saved [50167] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=35 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=35’ 245s 245s 0K .......... .......... .......... .......... .......... 4.34G 245s 50K ....... 14.2T=0s 245s 245s 2025-02-19 11:03:16 (5.00 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=35’ saved [59004] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=36 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=36’ 245s 245s 0K .......... .......... .......... .......... .......... 4.46G 245s 50K ....... 14.2T=0s 245s 245s 2025-02-19 11:03:16 (5.14 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=36’ saved [59004] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=rrd_add&id=26 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 302 Found 245s Location: data_templates.php?action=template_edit&id=26&view_rrd=686 [following] 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=686 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=26’ 245s 245s 0K .......... .......... .......... .......... .......... 3.64G 245s 50K ....... 14.6T=0s 245s 245s 2025-02-19 11:03:16 (4.21 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=26’ saved [59239] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=34 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=34’ 245s 245s 0K .......... .......... .......... .......... .......... 3.89G 245s 50K ....... 14.3T=0s 245s 245s 2025-02-19 11:03:16 (4.48 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=34’ saved [59040] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=33 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=33’ 245s 245s 0K .......... .......... .......... .......... .......... 5.40G 245s 50K ....... 14.3T=0s 245s 245s 2025-02-19 11:03:16 (6.22 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=33’ saved [59040] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=rrd_add&id=25 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 302 Found 245s Location: data_templates.php?action=template_edit&id=25&view_rrd=687 [following] 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=687 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=25’ 245s 245s 0K .......... .......... .......... .......... .......... 5.68G 245s 50K ....... 14.7T=0s 245s 245s 2025-02-19 11:03:16 (6.57 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=25’ saved [59279] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=38 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=38’ 245s 245s 0K .......... .......... .......... .......... .......... 4.66G 245s 50K ....... 14.2T=0s 245s 245s 2025-02-19 11:03:16 (5.37 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=38’ saved [59000] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=37 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=37’ 245s 245s 0K .......... .......... .......... .......... .......... 4.75G 245s 50K ....... 14.2T=0s 245s 245s 2025-02-19 11:03:16 (5.47 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=37’ saved [59002] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=rrd_add&id=27 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 302 Found 245s Location: data_templates.php?action=template_edit&id=27&view_rrd=688 [following] 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=688 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=27’ 245s 245s 0K .......... .......... .......... .......... .......... 4.32G 245s 50K ....... 14.6T=0s 245s 245s 2025-02-19 11:03:16 (5.00 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=27’ saved [59242] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=54 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=54’ 245s 245s 0K .......... .......... .......... .......... .......... 5.14G 245s 50K ....... 14.2T=0s 245s 245s 2025-02-19 11:03:16 (5.93 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=54’ saved [58994] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=55 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=55’ 245s 245s 0K .......... .......... .......... .......... .......... 4.40G 245s 50K ....... 14.2T=0s 245s 245s 2025-02-19 11:03:16 (5.07 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=55’ saved [58994] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=rrd_add&id=32 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 302 Found 245s Location: data_templates.php?action=template_edit&id=32&view_rrd=689 [following] 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=689 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=32’ 245s 245s 0K .......... .......... .......... .......... .......... 4.12G 245s 50K ....... 14.6T=0s 245s 245s 2025-02-19 11:03:16 (4.76 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=32’ saved [59233] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=41 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=41’ 245s 245s 0K .......... .......... .......... .......... .......... 4.77G 245s 50K ....... 14.7T=0s 245s 245s 2025-02-19 11:03:16 (5.52 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=41’ saved [59274] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=40 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=40’ 245s 245s 0K .......... .......... .......... .......... .......... 3.82G 245s 50K ....... 14.7T=0s 245s 245s 2025-02-19 11:03:16 (4.42 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=40’ saved [59274] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=39 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=39’ 245s 245s 0K .......... .......... .......... .......... .......... 4.79G 245s 50K ....... 14.7T=0s 245s 245s 2025-02-19 11:03:16 (5.55 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=39’ saved [59274] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=rrd_add&id=28 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 302 Found 245s Location: data_templates.php?action=template_edit&id=28&view_rrd=690 [following] 245s --2025-02-19 11:03:16-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=690 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=28’ 245s 245s 0K .......... .......... .......... .......... .......... 4.17G 245s 50K ........ 15.1T=0s 245s 245s 2025-02-19 11:03:16 (4.85 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=28’ saved [59522] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 3.43G 245s 50K .......... .......... ... 248M=0s 245s 245s 2025-02-19 11:03:16 (669 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=4’ saved [75545] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=29&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=29&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 3.91G 245s 50K .......... .......... ... 270M=0s 245s 245s 2025-02-19 11:03:16 (733 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=29&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=30&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=30&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 3.55G 245s 50K .......... .......... ... 228M=0s 245s 245s 2025-02-19 11:03:16 (626 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=30&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=31&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=31&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.22G 245s 50K .......... .......... ... 50.8M=0s 245s 245s 2025-02-19 11:03:16 (154 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=31&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=32&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=32&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.21G 245s 50K .......... .......... ... 46.9M=0.001s 245s 245s 2025-02-19 11:03:16 (142 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=32&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=33&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=33&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.41G 245s 50K .......... .......... ... 73.3M=0s 245s 245s 2025-02-19 11:03:16 (220 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=33&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=34&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=34&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.24G 245s 50K .......... .......... ... 31.2M=0.001s 245s 245s 2025-02-19 11:03:16 (95.4 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=34&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=35&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=35&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.50G 245s 50K .......... .......... ... 28.8M=0.001s 245s 245s 2025-02-19 11:03:16 (88.1 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=35&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=36&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=36&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.11G 245s 50K .......... .......... ... 41.1M=0.001s 245s 245s 2025-02-19 11:03:16 (125 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=36&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=37&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=37&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.71G 245s 50K .......... .......... ... 385M=0s 245s 245s 2025-02-19 11:03:16 (1023 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=37&color_template_id=4’ saved [75567] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=38&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=38&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.23G 245s 50K .......... .......... ... 170M=0s 245s 245s 2025-02-19 11:03:16 (487 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=38&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=39&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=39&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.35G 245s 50K .......... .......... ... 57.2M=0s 245s 245s 2025-02-19 11:03:16 (173 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=39&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=40&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=40&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 4.88G 245s 50K .......... .......... ... 61.4M=0s 245s 245s 2025-02-19 11:03:16 (185 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=40&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=41&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=41&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 1.89G 245s 50K .......... .......... ... 51.4M=0s 245s 245s 2025-02-19 11:03:16 (151 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=41&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=42&color_template_id=4 245s Connecting to localhost (localhost)|::1|:80... connected. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=42&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 415M 245s 50K .......... .......... ... 36.3M=0.001s 245s 245s 2025-02-19 11:03:16 (95.0 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=42&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=43&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=43&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 2.28G 245s 50K .......... .......... ... 85.4M=0s 245s 245s 2025-02-19 11:03:16 (246 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=43&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=44&color_template_id=4 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=44&color_template_id=4’ 245s 245s 0K .......... .......... .......... .......... .......... 6.19G 245s 50K .......... .......... ... 105M=0s 245s 245s 2025-02-19 11:03:16 (315 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=44&color_template_id=4’ saved [75568] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=3 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=3’ 245s 245s 0K .......... .......... .......... .......... .......... 7.42G 245s 50K .......... .......... ... 63.7M=0s 245s 245s 2025-02-19 11:03:16 (194 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=3’ saved [75543] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=13&color_template_id=3 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=13&color_template_id=3’ 245s 245s 0K .......... .......... .......... .......... .......... 6.73G 245s 50K .......... .......... ... 54.8M=0s 245s 245s 2025-02-19 11:03:16 (167 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=13&color_template_id=3’ saved [75565] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=14&color_template_id=3 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 245s Length: unspecified [text/html] 245s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=14&color_template_id=3’ 245s 245s 0K .......... .......... .......... .......... .......... 6.48G 245s 50K .......... .......... ... 58.0M=0s 245s 245s 2025-02-19 11:03:16 (177 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=14&color_template_id=3’ saved [75565] 245s 245s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=15&color_template_id=3 245s Reusing existing connection to [localhost]:80. 245s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=15&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 6.19G 246s 50K .......... .......... ... 63.0M=0s 246s 246s 2025-02-19 11:03:16 (191 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=15&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=16&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=16&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.47G 246s 50K .......... .......... ... 71.1M=0s 246s 246s 2025-02-19 11:03:16 (215 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=16&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=17&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=17&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.75G 246s 50K .......... .......... ... 64.1M=0s 246s 246s 2025-02-19 11:03:16 (194 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=17&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=18&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=18&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 6.74G 246s 50K .......... .......... ... 63.1M=0s 246s 246s 2025-02-19 11:03:16 (192 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=18&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=19&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=19&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 6.12G 246s 50K .......... .......... ... 67.1M=0s 246s 246s 2025-02-19 11:03:16 (203 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=19&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:16-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=20&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=20&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.82G 246s 50K .......... .......... ... 64.6M=0s 246s 246s 2025-02-19 11:03:17 (196 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=20&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=21&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=21&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 3.29G 246s 50K .......... .......... ... 71.8M=0s 246s 246s 2025-02-19 11:03:17 (213 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=21&color_template_id=3’ saved [75565] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=22&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=22&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 6.03G 246s 50K .......... .......... ... 62.0M=0s 246s 246s 2025-02-19 11:03:17 (188 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=22&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=23&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=23&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.82G 246s 50K .......... .......... ... 177M=0s 246s 246s 2025-02-19 11:03:17 (516 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=23&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=24&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=24&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 4.80G 246s 50K .......... .......... ... 382M=0s 246s 246s 2025-02-19 11:03:17 (1017 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=24&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=25&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=25&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.81G 246s 50K .......... .......... ... 327M=0s 246s 246s 2025-02-19 11:03:17 (909 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=25&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=26&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=26&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 6.14G 246s 50K .......... .......... ... 343M=0s 246s 246s 2025-02-19 11:03:17 (954 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=26&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=27&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=27&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.02G 246s 50K .......... .......... ... 229M=0s 246s 246s 2025-02-19 11:03:17 (651 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=27&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=28&color_template_id=3 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=28&color_template_id=3’ 246s 246s 0K .......... .......... .......... .......... .......... 5.38G 246s 50K .......... .......... ... 324M=0s 246s 246s 2025-02-19 11:03:17 (895 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=28&color_template_id=3’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 5.57G 246s 50K .......... .......... ... 317M=0s 246s 246s 2025-02-19 11:03:17 (881 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=2’ saved [75552] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=5&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=5&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 6.06G 246s 50K .......... .......... ... 460M=0s 246s 246s 2025-02-19 11:03:17 (1.21 GB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=5&color_template_id=2’ saved [75573] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=6&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=6&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 5.03G 246s 50K .......... .......... ... 42.0M=0.001s 246s 246s 2025-02-19 11:03:17 (128 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=6&color_template_id=2’ saved [75573] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=7&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=7&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 4.94G 246s 50K .......... .......... ... 64.3M=0s 246s 246s 2025-02-19 11:03:17 (194 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=7&color_template_id=2’ saved [75573] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=8&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=8&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 4.40G 246s 50K .......... .......... ... 43.7M=0.001s 246s 246s 2025-02-19 11:03:17 (133 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=8&color_template_id=2’ saved [75573] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=9&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=9&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 4.67G 246s 50K .......... .......... ... 182M=0s 246s 246s 2025-02-19 11:03:17 (521 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=9&color_template_id=2’ saved [75573] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=10&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=10&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 5.35G 246s 50K .......... .......... ... 101M=0s 246s 246s 2025-02-19 11:03:17 (302 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=10&color_template_id=2’ saved [75574] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=11&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=11&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 5.60G 246s 50K .......... .......... ... 276M=0s 246s 246s 2025-02-19 11:03:17 (778 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=11&color_template_id=2’ saved [75574] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=12&color_template_id=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=12&color_template_id=2’ 246s 246s 0K .......... .......... .......... .......... .......... 4.79G 246s 50K .......... .......... ... 55.5M=0s 246s 246s 2025-02-19 11:03:17 (168 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=12&color_template_id=2’ saved [75574] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=1’ 246s 246s 0K .......... .......... .......... .......... .......... 5.06G 246s 50K .......... .......... ... 32.7M=0.001s 246s 246s 2025-02-19 11:03:17 (100 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=1’ saved [75545] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=1&color_template_id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=1&color_template_id=1’ 246s 246s 0K .......... .......... .......... .......... .......... 5.73G 246s 50K .......... .......... ... 424M=0s 246s 246s 2025-02-19 11:03:17 (1.11 GB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=1&color_template_id=1’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=2&color_template_id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=2&color_template_id=1’ 246s 246s 0K .......... .......... .......... .......... .......... 5.04G 246s 50K .......... .......... ... 439M=0s 246s 246s 2025-02-19 11:03:17 (1.13 GB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=2&color_template_id=1’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=3&color_template_id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=3&color_template_id=1’ 246s 246s 0K .......... .......... .......... .......... .......... 4.45G 246s 50K .......... .......... ... 44.2M=0.001s 246s 246s 2025-02-19 11:03:17 (134 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=3&color_template_id=1’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=4&color_template_id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=4&color_template_id=1’ 246s 246s 0K .......... .......... .......... .......... .......... 4.92G 246s 50K .......... .......... ... 42.1M=0.001s 246s 246s 2025-02-19 11:03:17 (128 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=4&color_template_id=1’ saved [75566] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=0 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=0’ 246s 246s 0K .......... .......... ... 4.04G=0s 246s 246s 2025-02-19 11:03:17 (4.04 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=0’ saved [23871] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=1’ 246s 246s 0K .......... .......... .......... .. 6.69G=0s 246s 246s 2025-02-19 11:03:17 (6.69 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=1’ saved [33474] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=1’ 246s 246s 0K .......... .......... .......... ..... 6.51G=0s 246s 246s 2025-02-19 11:03:17 (6.51 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=1’ 246s 246s 0K .......... .......... .......... ... 4.38G=0s 246s 246s 2025-02-19 11:03:17 (4.38 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=1’ saved [34440] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=2’ 246s 246s 0K .......... .......... .......... 4.28G=0s 246s 246s 2025-02-19 11:03:17 (4.28 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=2’ saved [30898] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=0 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=0’ 246s 246s 0K .......... .......... .......... ..... 5.01G=0s 246s 246s 2025-02-19 11:03:17 (5.01 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=0’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=1’ 246s 246s 0K .......... .......... .......... ..... 4.39G=0s 246s 246s 2025-02-19 11:03:17 (4.39 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=1’ 246s 246s 0K .......... .......... .......... ..... 5.02G=0s 246s 246s 2025-02-19 11:03:17 (5.02 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=1’ 246s 246s 0K .......... .......... .......... ... 4.32G=0s 246s 246s 2025-02-19 11:03:17 (4.32 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=1’ saved [34451] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=1’ 246s 246s 0K .......... .......... .......... ... 4.05G=0s 246s 246s 2025-02-19 11:03:17 (4.05 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=1’ saved [34469] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 302 Found 246s Location: automation_graph_rules.php?action=edit&id=1 [following] 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=1’ 246s 246s 0K .......... .......... .......... ..... 5.12G=0s 246s 246s 2025-02-19 11:03:17 (5.12 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=1’ 246s 246s 0K .......... .......... .......... ... 4.49G=0s 246s 246s 2025-02-19 11:03:17 (4.49 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=1’ saved [34470] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 302 Found 246s Location: automation_graph_rules.php?action=edit&id=1 [following] 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=1’ 246s 246s 0K .......... .......... .......... ..... 5.67G=0s 246s 246s 2025-02-19 11:03:17 (5.67 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 302 Found 246s Location: automation_graph_rules.php?action=edit&id=1 [following] 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=1’ 246s 246s 0K .......... .......... .......... ..... 5.21G=0s 246s 246s 2025-02-19 11:03:17 (5.21 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=8&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=8&rule_type=1’ 246s 246s 0K .......... .......... .......... ... 6.13G=0s 246s 246s 2025-02-19 11:03:17 (6.13 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=8&rule_type=1’ saved [34476] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=8&id=1&rule_type=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 302 Found 246s Location: automation_graph_rules.php?action=edit&id=1 [following] 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=8&id=1&rule_type=1’ 246s 246s 0K .......... .......... .......... ..... 4.10G=0s 246s 246s 2025-02-19 11:03:17 (4.10 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=8&id=1&rule_type=1’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=2’ 246s 246s 0K .......... .......... .......... 5.54G=0s 246s 246s 2025-02-19 11:03:17 (5.54 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=2’ saved [30909] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=2’ 246s 246s 0K .......... .......... .......... 5.87G=0s 246s 246s 2025-02-19 11:03:17 (5.87 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=2’ saved [30990] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=2 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 302 Found 246s Location: automation_graph_rules.php?action=edit&id=1 [following] 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 246s Reusing existing connection to [localhost]:80. 246s HTTP request sent, awaiting response... 200 OK 246s Length: unspecified [text/html] 246s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=2’ 246s 246s 0K .......... .......... .......... ..... 4.47G=0s 246s 246s 2025-02-19 11:03:17 (4.47 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=2’ saved [36169] 246s 246s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=2 246s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=2’ 247s 247s 0K .......... .......... .......... 6.72G=0s 247s 247s 2025-02-19 11:03:17 (6.72 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=2’ saved [30972] 247s 247s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=1 [following] 247s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 6.91G=0s 247s 247s 2025-02-19 11:03:17 (6.91 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=1 [following] 247s --2025-02-19 11:03:17-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 7.05G=0s 247s 247s 2025-02-19 11:03:18 (7.05 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=3&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=3&rule_type=2’ 247s 247s 0K .......... .......... .......... 7.70G=0s 247s 247s 2025-02-19 11:03:18 (7.70 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=3&rule_type=2’ saved [30980] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=3&id=1&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=1 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=3&id=1&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 7.34G=0s 247s 247s 2025-02-19 11:03:18 (7.34 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=3&id=1&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=0 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=0’ 247s 247s 0K .......... .......... .......... ..... 6.36G=0s 247s 247s 2025-02-19 11:03:18 (6.36 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=0’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=1’ 247s 247s 0K .......... .......... .......... ..... 5.01G=0s 247s 247s 2025-02-19 11:03:18 (5.01 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=1’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=1’ 247s 247s 0K .......... .......... .......... ..... 5.70G=0s 247s 247s 2025-02-19 11:03:18 (5.70 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=1’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=1’ 247s 247s 0K .......... .......... .......... ... 5.56G=0s 247s 247s 2025-02-19 11:03:18 (5.56 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=1’ saved [34457] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=1’ 247s 247s 0K .......... .......... .......... ... 5.56G=0s 247s 247s 2025-02-19 11:03:18 (5.56 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=1’ saved [34480] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=1’ 247s 247s 0K .......... .......... .......... ..... 4.92G=0s 247s 247s 2025-02-19 11:03:18 (4.92 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=1’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=1’ 247s 247s 0K .......... .......... .......... ... 3.94G=0s 247s 247s 2025-02-19 11:03:18 (3.94 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=1’ saved [34476] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=1’ 247s 247s 0K .......... .......... .......... ..... 4.98G=0s 247s 247s 2025-02-19 11:03:18 (4.98 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=1’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=2’ 247s 247s 0K .......... .......... .......... 6.03G=0s 247s 247s 2025-02-19 11:03:18 (6.03 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=2’ saved [30915] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=2’ 247s 247s 0K .......... .......... .......... 3.63G=0s 247s 247s 2025-02-19 11:03:18 (3.63 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=2’ saved [30996] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 4.97G=0s 247s 247s 2025-02-19 11:03:18 (4.97 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=2’ 247s 247s 0K .......... .......... .......... 4.31G=0s 247s 247s 2025-02-19 11:03:18 (4.31 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=2’ saved [30978] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 5.24G=0s 247s 247s 2025-02-19 11:03:18 (5.24 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 5.07G=0s 247s 247s 2025-02-19 11:03:18 (5.07 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=6&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=6&rule_type=2’ 247s 247s 0K .......... .......... .......... 3.76G=0s 247s 247s 2025-02-19 11:03:18 (3.76 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=6&rule_type=2’ saved [30986] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=6&id=2&rule_type=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_graph_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=6&id=2&rule_type=2’ 247s 247s 0K .......... .......... .......... ..... 3.68G=0s 247s 247s 2025-02-19 11:03:18 (3.68 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=6&id=2&rule_type=2’ saved [36169] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=1’ 247s 247s 0K .......... .......... .......... .......... ..... 5.60G=0s 247s 247s 2025-02-19 11:03:18 (5.60 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=1’ saved [46432] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=3 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=3’ 247s 247s 0K .......... .......... .......... .... 6.89G=0s 247s 247s 2025-02-19 11:03:18 (6.89 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=3’ saved [34935] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=3&rule_type=3 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=3&rule_type=3’ 247s 247s 0K .......... .......... .......... .... 6.99G=0s 247s 247s 2025-02-19 11:03:18 (6.99 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=3&rule_type=3’ saved [34958] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=4’ 247s 247s 0K .......... .......... .......... .... 7.24G=0s 247s 247s 2025-02-19 11:03:18 (7.24 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=4’ saved [35460] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4’ 247s 247s 0K .......... .......... .......... ..... 7.17G=0s 247s 247s 2025-02-19 11:03:18 (7.17 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4’ saved [35843] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=1&id=1&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_tree_rules.php?action=edit&id=1 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=1&id=1&rule_type=4’ 247s 247s 0K .......... .......... .......... .......... ..... 6.22G=0s 247s 247s 2025-02-19 11:03:18 (6.22 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=1&id=1&rule_type=4’ saved [46432] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4’ 247s 247s 0K .......... .......... .......... .... 6.42G=0s 247s 247s 2025-02-19 11:03:18 (6.42 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4’ saved [35837] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=2&id=1&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_tree_rules.php?action=edit&id=1 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=2&id=1&rule_type=4’ 247s 247s 0K .......... .......... .......... .......... ..... 6.46G=0s 247s 247s 2025-02-19 11:03:18 (6.46 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=2&id=1&rule_type=4’ saved [46432] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=1 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=1’ 247s 247s 0K .......... .......... .......... .......... .... 6.63G=0s 247s 247s 2025-02-19 11:03:18 (6.63 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=1’ saved [46050] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=3 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=3’ 247s 247s 0K .......... .......... .......... .... 6.55G=0s 247s 247s 2025-02-19 11:03:18 (6.55 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=3’ saved [35242] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=6&rule_type=3 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=6&rule_type=3’ 247s 247s 0K .......... .......... .......... .... 5.75G=0s 247s 247s 2025-02-19 11:03:18 (5.75 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=6&rule_type=3’ saved [35264] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=6&id=2&rule_type=3 247s Connecting to localhost (localhost)|::1|:80... connected. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_tree_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=6&id=2&rule_type=3’ 247s 247s 0K .......... .......... .......... .......... .... 175M=0s 247s 247s 2025-02-19 11:03:18 (175 MB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=6&id=2&rule_type=3’ saved [46050] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=7&rule_type=3 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=7&rule_type=3’ 247s 247s 0K .......... .......... .......... .... 6.14G=0s 247s 247s 2025-02-19 11:03:18 (6.14 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=7&rule_type=3’ saved [35267] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=7&id=2&rule_type=3 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_tree_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=7&id=2&rule_type=3’ 247s 247s 0K .......... .......... .......... .......... .... 5.18G=0s 247s 247s 2025-02-19 11:03:18 (5.18 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=7&id=2&rule_type=3’ saved [46050] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=4’ 247s 247s 0K .......... .......... .......... .... 5.15G=0s 247s 247s 2025-02-19 11:03:18 (5.15 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=4’ saved [35767] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=3&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=3&rule_type=4’ 247s 247s 0K .......... .......... .......... .... 5.45G=0s 247s 247s 2025-02-19 11:03:18 (5.45 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=3&rule_type=4’ saved [35781] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=3&id=2&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_tree_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=3&id=2&rule_type=4’ 247s 247s 0K .......... .......... .......... .......... .... 6.20G=0s 247s 247s 2025-02-19 11:03:18 (6.20 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=3&id=2&rule_type=4’ saved [46050] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4’ 247s 247s 0K .......... .......... .......... ..... 4.93G=0s 247s 247s 2025-02-19 11:03:18 (4.93 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4’ saved [36158] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=4&id=2&rule_type=4 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 302 Found 247s Location: automation_tree_rules.php?action=edit&id=2 [following] 247s --2025-02-19 11:03:18-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=4&id=2&rule_type=4’ 247s 247s 0K .......... .......... .......... .......... .... 6.23G=0s 247s 247s 2025-02-19 11:03:18 (6.23 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=4&id=2&rule_type=4’ saved [46050] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=2’ 247s 247s 0K .......... .......... .......... . 5.63G=0s 247s 247s 2025-02-19 11:03:18 (5.63 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=2’ saved [32260] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=5&profile_id=2 247s Reusing existing connection to [localhost]:80. 247s HTTP request sent, awaiting response... 200 OK 247s Length: unspecified [text/html] 247s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=5&profile_id=2’ 247s 247s 0K .......... .......... .......... . 5.67G=0s 247s 247s 2025-02-19 11:03:18 (5.67 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=5&profile_id=2’ saved [32214] 247s 247s --2025-02-19 11:03:18-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=6&profile_id=2 247s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=6&profile_id=2’ 248s 248s 0K .......... .......... .......... . 5.88G=0s 248s 248s 2025-02-19 11:03:18 (5.88 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=6&profile_id=2’ saved [32653] 248s 248s --2025-02-19 11:03:18-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=7&profile_id=2 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=7&profile_id=2’ 248s 248s 0K .......... .......... .......... . 5.46G=0s 248s 248s 2025-02-19 11:03:18 (5.46 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=7&profile_id=2’ saved [32649] 248s 248s --2025-02-19 11:03:18-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=8&profile_id=2 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=8&profile_id=2’ 248s 248s 0K .......... .......... .......... . 5.05G=0s 248s 248s 2025-02-19 11:03:19 (5.05 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=8&profile_id=2’ saved [32647] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=3 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=3’ 248s 248s 0K .......... .......... .......... . 3.33G=0s 248s 248s 2025-02-19 11:03:19 (3.33 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=3’ saved [32185] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=9&profile_id=3 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=9&profile_id=3’ 248s 248s 0K .......... .......... .......... . 5.37G=0s 248s 248s 2025-02-19 11:03:19 (5.37 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=9&profile_id=3’ saved [32212] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=10&profile_id=3 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=10&profile_id=3’ 248s 248s 0K .......... .......... .......... . 5.29G=0s 248s 248s 2025-02-19 11:03:19 (5.29 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=10&profile_id=3’ saved [32618] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=11&profile_id=3 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=11&profile_id=3’ 248s 248s 0K .......... .......... .......... . 4.28G=0s 248s 248s 2025-02-19 11:03:19 (4.28 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=11&profile_id=3’ saved [32614] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=12&profile_id=3 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=12&profile_id=3’ 248s 248s 0K .......... .......... .......... . 3.73G=0s 248s 248s 2025-02-19 11:03:19 (3.73 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=12&profile_id=3’ saved [32614] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=1’ 248s 248s 0K .......... .......... .......... . 3.88G=0s 248s 248s 2025-02-19 11:03:19 (3.88 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=1’ saved [32149] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=1&profile_id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=1&profile_id=1’ 248s 248s 0K .......... .......... .......... . 3.62G=0s 248s 248s 2025-02-19 11:03:19 (3.62 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=1&profile_id=1’ saved [32211] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=2&profile_id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=2&profile_id=1’ 248s 248s 0K .......... .......... .......... . 3.30G=0s 248s 248s 2025-02-19 11:03:19 (3.30 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=2&profile_id=1’ saved [32578] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=3&profile_id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=3&profile_id=1’ 248s 248s 0K .......... .......... .......... . 4.51G=0s 248s 248s 2025-02-19 11:03:19 (4.51 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=3&profile_id=1’ saved [32574] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=4&profile_id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=4&profile_id=1’ 248s 248s 0K .......... .......... .......... . 3.89G=0s 248s 248s 2025-02-19 11:03:19 (3.89 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=4&profile_id=1’ saved [32570] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=2&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=2&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.70G=0s 248s 248s 2025-02-19 11:03:19 (3.70 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=2&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=6&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=6&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.54G=0s 248s 248s 2025-02-19 11:03:19 (3.54 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=6&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=7&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=7&profile=1’ 248s 248s 0K .......... .......... .......... ... 2.41G=0s 248s 248s 2025-02-19 11:03:19 (2.41 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=7&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=9&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=9&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.67G=0s 248s 248s 2025-02-19 11:03:19 (4.67 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=9&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=5&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=5&profile=1’ 248s 248s 0K .......... .......... .......... ... 5.75G=0s 248s 248s 2025-02-19 11:03:19 (5.75 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=5&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=8&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=8&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.99G=0s 248s 248s 2025-02-19 11:03:19 (4.99 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=8&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=3&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=3&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.98G=0s 248s 248s 2025-02-19 11:03:19 (3.98 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=3&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=4&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=4&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.75G=0s 248s 248s 2025-02-19 11:03:19 (3.75 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=4&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=1&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=1&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.93G=0s 248s 248s 2025-02-19 11:03:19 (3.93 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=1&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=14&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=14&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.29G=0s 248s 248s 2025-02-19 11:03:19 (4.29 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=14&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=15&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=15&profile=1’ 248s 248s 0K .......... .......... .......... ... 5.93G=0s 248s 248s 2025-02-19 11:03:19 (5.93 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=15&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=12&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=12&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.99G=0s 248s 248s 2025-02-19 11:03:19 (4.99 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=12&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=13&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=13&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.11G=0s 248s 248s 2025-02-19 11:03:19 (4.11 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=13&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=11&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=11&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.56G=0s 248s 248s 2025-02-19 11:03:19 (3.56 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=11&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=10&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=10&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.30G=0s 248s 248s 2025-02-19 11:03:19 (4.30 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=10&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=48&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=48&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.78G=0s 248s 248s 2025-02-19 11:03:19 (4.78 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=48&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=46&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=46&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.16G=0s 248s 248s 2025-02-19 11:03:19 (4.16 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=46&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=47&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=47&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.83G=0s 248s 248s 2025-02-19 11:03:19 (3.83 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=47&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=49&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=49&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.78G=0s 248s 248s 2025-02-19 11:03:19 (4.78 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=49&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=50&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=50&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.83G=0s 248s 248s 2025-02-19 11:03:19 (3.83 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=50&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=16&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=16&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.66G=0s 248s 248s 2025-02-19 11:03:19 (4.66 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=16&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=26&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=26&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.86G=0s 248s 248s 2025-02-19 11:03:19 (3.86 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=26&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=25&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=25&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.75G=0s 248s 248s 2025-02-19 11:03:19 (4.75 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=25&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=27&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=27&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.12G=0s 248s 248s 2025-02-19 11:03:19 (3.12 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=27&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=18&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=18&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.35G=0s 248s 248s 2025-02-19 11:03:19 (3.35 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=18&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=19&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=19&profile=1’ 248s 248s 0K .......... .......... .......... ... 4.17G=0s 248s 248s 2025-02-19 11:03:19 (4.17 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=19&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=20&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=20&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.12G=0s 248s 248s 2025-02-19 11:03:19 (3.12 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=20&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=32&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=32&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.76G=0s 248s 248s 2025-02-19 11:03:19 (3.76 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=32&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=28&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=28&profile=1’ 248s 248s 0K .......... .......... .......... ... 3.66G=0s 248s 248s 2025-02-19 11:03:19 (3.66 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=28&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/data_sources.php?reset=true&template_id=21&profile=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=21&profile=1’ 248s 248s 0K .......... .......... .......... ... 5.71G=0s 248s 248s 2025-02-19 11:03:19 (5.71 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=21&profile=1’ saved [34725] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/automation_snmp.php?action=item_edit&id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/automation_snmp.php?action=item_edit&id=1’ 248s 248s 0K .......... .......... .......... ........ 4.70G=0s 248s 248s 2025-02-19 11:03:19 (4.70 GB/s) - ‘localhost/cacti/automation_snmp.php?action=item_edit&id=1’ saved [39197] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/automation_snmp.php?action=item_edit&item_id=1&id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=1&id=1’ 248s 248s 0K .......... .......... .......... ........ 4.67G=0s 248s 248s 2025-02-19 11:03:19 (4.67 GB/s) - ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=1&id=1’ saved [39240] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/automation_snmp.php?action=item_edit&item_id=2&id=1 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=2&id=1’ 248s 248s 0K .......... .......... .......... ........ 4.03G=0s 248s 248s 2025-02-19 11:03:19 (4.03 GB/s) - ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=2&id=1’ saved [39241] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=39 248s Reusing existing connection to [localhost]:80. 248s HTTP request sent, awaiting response... 200 OK 248s Length: unspecified [text/html] 248s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=39’ 248s 248s 0K .......... .......... ......... 3.97G=0s 248s 248s 2025-02-19 11:03:19 (3.97 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=39’ saved [30555] 248s 248s --2025-02-19 11:03:19-- http://localhost/cacti/cdef.php?action=item_edit&id=89&cdef_id=39 248s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=89&cdef_id=39’ 249s 249s 0K .......... .......... ........ 3.73G=0s 249s 249s 2025-02-19 11:03:19 (3.73 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=89&cdef_id=39’ saved [28764] 249s 249s --2025-02-19 11:03:19-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=43 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=43’ 249s 249s 0K .......... .......... ......... 3.27G=0s 249s 249s 2025-02-19 11:03:19 (3.27 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=43’ saved [30585] 249s 249s --2025-02-19 11:03:19-- http://localhost/cacti/cdef.php?action=item_edit&id=99&cdef_id=43 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=99&cdef_id=43’ 249s 249s 0K .......... .......... ........ 3.51G=0s 249s 249s 2025-02-19 11:03:19 (3.51 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=99&cdef_id=43’ saved [28809] 249s 249s --2025-02-19 11:03:19-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=66 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=66’ 249s 249s 0K .......... .......... ......... 3.31G=0s 249s 249s 2025-02-19 11:03:20 (3.31 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=66’ saved [30595] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=159&cdef_id=66 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=159&cdef_id=66’ 249s 249s 0K .......... .......... ........ 3.28G=0s 249s 249s 2025-02-19 11:03:20 (3.28 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=159&cdef_id=66’ saved [28824] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=67 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=67’ 249s 249s 0K .......... .......... ......... 5.68G=0s 249s 249s 2025-02-19 11:03:20 (5.68 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=67’ saved [30594] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=160&cdef_id=67 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=160&cdef_id=67’ 249s 249s 0K .......... .......... ........ 4.98G=0s 249s 249s 2025-02-19 11:03:20 (4.98 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=160&cdef_id=67’ saved [28825] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=61 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=61’ 249s 249s 0K .......... .......... ......... 3.93G=0s 249s 249s 2025-02-19 11:03:20 (3.93 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=61’ saved [30599] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=154&cdef_id=61 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=154&cdef_id=61’ 249s 249s 0K .......... .......... ........ 4.04G=0s 249s 249s 2025-02-19 11:03:20 (4.04 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=154&cdef_id=61’ saved [28830] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=56 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=56’ 249s 249s 0K .......... .......... ......... 3.86G=0s 249s 249s 2025-02-19 11:03:20 (3.86 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=56’ saved [30598] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=149&cdef_id=56 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=149&cdef_id=56’ 249s 249s 0K .......... .......... ........ 3.73G=0s 249s 249s 2025-02-19 11:03:20 (3.73 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=149&cdef_id=56’ saved [28831] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=63 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=63’ 249s 249s 0K .......... .......... ......... 2.54G=0s 249s 249s 2025-02-19 11:03:20 (2.54 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=63’ saved [30598] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=156&cdef_id=63 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=156&cdef_id=63’ 249s 249s 0K .......... .......... ........ 3.55G=0s 249s 249s 2025-02-19 11:03:20 (3.55 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=156&cdef_id=63’ saved [28828] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=57 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=57’ 249s 249s 0K .......... .......... ......... 5.41G=0s 249s 249s 2025-02-19 11:03:20 (5.41 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=57’ saved [30598] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=150&cdef_id=57 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=150&cdef_id=57’ 249s 249s 0K .......... .......... ........ 4.44G=0s 249s 249s 2025-02-19 11:03:20 (4.44 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=150&cdef_id=57’ saved [28831] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=68 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=68’ 249s 249s 0K .......... .......... ......... 5.65G=0s 249s 249s 2025-02-19 11:03:20 (5.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=68’ saved [30595] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=161&cdef_id=68 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=161&cdef_id=68’ 249s 249s 0K .......... .......... ........ 4.52G=0s 249s 249s 2025-02-19 11:03:20 (4.52 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=161&cdef_id=68’ saved [28824] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=69 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=69’ 249s 249s 0K .......... .......... ......... 3.71G=0s 249s 249s 2025-02-19 11:03:20 (3.71 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=69’ saved [30594] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=162&cdef_id=69 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=162&cdef_id=69’ 249s 249s 0K .......... .......... ........ 4.65G=0s 249s 249s 2025-02-19 11:03:20 (4.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=162&cdef_id=69’ saved [28825] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=64 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=64’ 249s 249s 0K .......... .......... ......... 3.18G=0s 249s 249s 2025-02-19 11:03:20 (3.18 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=64’ saved [30599] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=157&cdef_id=64 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=157&cdef_id=64’ 249s 249s 0K .......... .......... ........ 3.70G=0s 249s 249s 2025-02-19 11:03:20 (3.70 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=157&cdef_id=64’ saved [28830] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=54 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=54’ 249s 249s 0K .......... .......... ......... 3.75G=0s 249s 249s 2025-02-19 11:03:20 (3.75 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=54’ saved [30598] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=147&cdef_id=54 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=147&cdef_id=54’ 249s 249s 0K .......... .......... ........ 4.21G=0s 249s 249s 2025-02-19 11:03:20 (4.21 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=147&cdef_id=54’ saved [28831] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=62 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=62’ 249s 249s 0K .......... .......... ......... 3.83G=0s 249s 249s 2025-02-19 11:03:20 (3.83 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=62’ saved [30597] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=155&cdef_id=62 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=155&cdef_id=62’ 249s 249s 0K .......... .......... ........ 4.54G=0s 249s 249s 2025-02-19 11:03:20 (4.54 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=155&cdef_id=62’ saved [28827] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=55 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=55’ 249s 249s 0K .......... .......... ......... 4.14G=0s 249s 249s 2025-02-19 11:03:20 (4.14 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=55’ saved [30596] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=148&cdef_id=55 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=148&cdef_id=55’ 249s 249s 0K .......... .......... ........ 3.53G=0s 249s 249s 2025-02-19 11:03:20 (3.53 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=148&cdef_id=55’ saved [28828] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=65 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=65’ 249s 249s 0K .......... .......... ......... 3.26G=0s 249s 249s 2025-02-19 11:03:20 (3.26 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=65’ saved [30601] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=158&cdef_id=65 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=158&cdef_id=65’ 249s 249s 0K .......... .......... ........ 3.94G=0s 249s 249s 2025-02-19 11:03:20 (3.94 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=158&cdef_id=65’ saved [28833] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=58 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=58’ 249s 249s 0K .......... .......... ......... 3.99G=0s 249s 249s 2025-02-19 11:03:20 (3.99 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=58’ saved [30600] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=151&cdef_id=58 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=151&cdef_id=58’ 249s 249s 0K .......... .......... ........ 5.04G=0s 249s 249s 2025-02-19 11:03:20 (5.04 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=151&cdef_id=58’ saved [28834] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=59 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=59’ 249s 249s 0K .......... .......... ......... 3.69G=0s 249s 249s 2025-02-19 11:03:20 (3.69 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=59’ saved [30562] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=152&cdef_id=59 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=152&cdef_id=59’ 249s 249s 0K .......... .......... ........ 4.03G=0s 249s 249s 2025-02-19 11:03:20 (4.03 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=152&cdef_id=59’ saved [28765] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=60 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=60’ 249s 249s 0K .......... .......... ......... 3.88G=0s 249s 249s 2025-02-19 11:03:20 (3.88 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=60’ saved [30572] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=153&cdef_id=60 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=153&cdef_id=60’ 249s 249s 0K .......... .......... ........ 3.66G=0s 249s 249s 2025-02-19 11:03:20 (3.66 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=153&cdef_id=60’ saved [28783] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=70 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=70’ 249s 249s 0K .......... .......... ......... 3.92G=0s 249s 249s 2025-02-19 11:03:20 (3.92 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=70’ saved [30572] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=163&cdef_id=70 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=163&cdef_id=70’ 249s 249s 0K .......... .......... ........ 3.76G=0s 249s 249s 2025-02-19 11:03:20 (3.76 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=163&cdef_id=70’ saved [28781] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=20 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=20’ 249s 249s 0K .......... .......... ......... 3.43G=0s 249s 249s 2025-02-19 11:03:20 (3.43 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=20’ saved [30593] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=34&cdef_id=20 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=34&cdef_id=20’ 249s 249s 0K .......... .......... ........ 3.59G=0s 249s 249s 2025-02-19 11:03:20 (3.59 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=34&cdef_id=20’ saved [28818] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=25 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=25’ 249s 249s 0K .......... .......... ......... 3.69G=0s 249s 249s 2025-02-19 11:03:20 (3.69 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=25’ saved [30564] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=41&cdef_id=25 249s Connecting to localhost (localhost)|::1|:80... connected. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=41&cdef_id=25’ 249s 249s 0K .......... .......... ........ 3.70G=0s 249s 249s 2025-02-19 11:03:20 (3.70 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=41&cdef_id=25’ saved [28766] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=42&cdef_id=25 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=42&cdef_id=25’ 249s 249s 0K .......... .......... ........ 3.74G=0s 249s 249s 2025-02-19 11:03:20 (3.74 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=42&cdef_id=25’ saved [28766] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=43&cdef_id=25 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=43&cdef_id=25’ 249s 249s 0K .......... .......... ........ 5.53G=0s 249s 249s 2025-02-19 11:03:20 (5.53 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=43&cdef_id=25’ saved [28829] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=24 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=24’ 249s 249s 0K .......... .......... ......... 5.73G=0s 249s 249s 2025-02-19 11:03:20 (5.73 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=24’ saved [30611] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=40&cdef_id=24 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=40&cdef_id=24’ 249s 249s 0K .......... .......... ........ 4.67G=0s 249s 249s 2025-02-19 11:03:20 (4.67 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=40&cdef_id=24’ saved [28855] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=26 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=26’ 249s 249s 0K .......... .......... ......... 4.54G=0s 249s 249s 2025-02-19 11:03:20 (4.54 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=26’ saved [30611] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=44&cdef_id=26 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=44&cdef_id=26’ 249s 249s 0K .......... .......... ........ 4.18G=0s 249s 249s 2025-02-19 11:03:20 (4.18 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=44&cdef_id=26’ saved [28855] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=22 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=22’ 249s 249s 0K .......... .......... ......... 5.40G=0s 249s 249s 2025-02-19 11:03:20 (5.40 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=22’ saved [30620] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=36&cdef_id=22 249s Reusing existing connection to [localhost]:80. 249s HTTP request sent, awaiting response... 200 OK 249s Length: unspecified [text/html] 249s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=36&cdef_id=22’ 249s 249s 0K .......... .......... ........ 4.27G=0s 249s 249s 2025-02-19 11:03:20 (4.27 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=36&cdef_id=22’ saved [28869] 249s 249s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=27 249s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=27’ 250s 250s 0K .......... .......... ......... 5.65G=0s 250s 250s 2025-02-19 11:03:20 (5.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=27’ saved [30611] 250s 250s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=45&cdef_id=27 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=45&cdef_id=27’ 250s 250s 0K .......... .......... ........ 3.78G=0s 250s 250s 2025-02-19 11:03:20 (3.78 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=45&cdef_id=27’ saved [28855] 250s 250s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=19 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=19’ 250s 250s 0K .......... .......... ......... 4.51G=0s 250s 250s 2025-02-19 11:03:20 (4.51 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=19’ saved [30592] 250s 250s --2025-02-19 11:03:20-- http://localhost/cacti/cdef.php?action=item_edit&id=33&cdef_id=19 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=33&cdef_id=19’ 250s 250s 0K .......... .......... ........ 4.54G=0s 250s 250s 2025-02-19 11:03:21 (4.54 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=33&cdef_id=19’ saved [28817] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=21 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=21’ 250s 250s 0K .......... .......... ......... 4.55G=0s 250s 250s 2025-02-19 11:03:21 (4.55 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=21’ saved [30604] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=35&cdef_id=21 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=35&cdef_id=21’ 250s 250s 0K .......... .......... ........ 5.92G=0s 250s 250s 2025-02-19 11:03:21 (5.92 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=35&cdef_id=21’ saved [28830] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=34’ 250s 250s 0K .......... .......... ......... 5.24G=0s 250s 250s 2025-02-19 11:03:21 (5.24 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=34’ saved [30593] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=63&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=63&cdef_id=34’ 250s 250s 0K .......... .......... ........ 4.23G=0s 250s 250s 2025-02-19 11:03:21 (4.23 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=63&cdef_id=34’ saved [28791] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=64&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=64&cdef_id=34’ 250s 250s 0K .......... .......... ........ 3.70G=0s 250s 250s 2025-02-19 11:03:21 (3.70 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=64&cdef_id=34’ saved [28791] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=65&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=65&cdef_id=34’ 250s 250s 0K .......... .......... ........ 3.84G=0s 250s 250s 2025-02-19 11:03:21 (3.84 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=65&cdef_id=34’ saved [28858] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=66&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=66&cdef_id=34’ 250s 250s 0K .......... .......... ........ 4.21G=0s 250s 250s 2025-02-19 11:03:21 (4.21 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=66&cdef_id=34’ saved [28791] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=67&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=67&cdef_id=34’ 250s 250s 0K .......... .......... ........ 3.58G=0s 250s 250s 2025-02-19 11:03:21 (3.58 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=67&cdef_id=34’ saved [28858] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=68&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=68&cdef_id=34’ 250s 250s 0K .......... .......... ........ 5.10G=0s 250s 250s 2025-02-19 11:03:21 (5.10 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=68&cdef_id=34’ saved [28791] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=69&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=69&cdef_id=34’ 250s 250s 0K .......... .......... ........ 5.03G=0s 250s 250s 2025-02-19 11:03:21 (5.03 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=69&cdef_id=34’ saved [28858] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=70&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=70&cdef_id=34’ 250s 250s 0K .......... .......... ........ 4.63G=0s 250s 250s 2025-02-19 11:03:21 (4.63 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=70&cdef_id=34’ saved [28791] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=71&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=71&cdef_id=34’ 250s 250s 0K .......... .......... ........ 4.62G=0s 250s 250s 2025-02-19 11:03:21 (4.62 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=71&cdef_id=34’ saved [28858] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=72&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=72&cdef_id=34’ 250s 250s 0K .......... .......... ........ 3.69G=0s 250s 250s 2025-02-19 11:03:21 (3.69 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=72&cdef_id=34’ saved [28791] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=73&cdef_id=34 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=73&cdef_id=34’ 250s 250s 0K .......... .......... ........ 4.08G=0s 250s 250s 2025-02-19 11:03:21 (4.08 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=73&cdef_id=34’ saved [28858] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=51 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=51’ 250s 250s 0K .......... .......... ......... 5.77G=0s 250s 250s 2025-02-19 11:03:21 (5.77 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=51’ saved [30557] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=139&cdef_id=51 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=139&cdef_id=51’ 250s 250s 0K .......... .......... ......... 4.29G=0s 250s 250s 2025-02-19 11:03:21 (4.29 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=139&cdef_id=51’ saved [30105] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=140&cdef_id=51 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=140&cdef_id=51’ 250s 250s 0K .......... .......... ......... 5.19G=0s 250s 250s 2025-02-19 11:03:21 (5.19 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=140&cdef_id=51’ saved [30570] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=52 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=52’ 250s 250s 0K .......... .......... ......... 4.50G=0s 250s 250s 2025-02-19 11:03:21 (4.50 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=52’ saved [30605] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=141&cdef_id=52 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=141&cdef_id=52’ 250s 250s 0K .......... .......... ......... 5.64G=0s 250s 250s 2025-02-19 11:03:21 (5.64 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=141&cdef_id=52’ saved [30153] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=142&cdef_id=52 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=142&cdef_id=52’ 250s 250s 0K .......... .......... ......... 4.33G=0s 250s 250s 2025-02-19 11:03:21 (4.33 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=142&cdef_id=52’ saved [30153] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/cdef.php?action=item_edit&id=143&cdef_id=52 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=143&cdef_id=52’ 250s 250s 0K .......... .......... ........ 5.41G=0s 250s 250s 2025-02-19 11:03:21 (5.41 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=143&cdef_id=52’ saved [28871] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=7 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=7’ 250s 250s 0K .......... .......... ........ 5.29G=0s 250s 250s 2025-02-19 11:03:21 (5.29 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=7’ saved [29053] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=13&vdef_id=7 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=13&vdef_id=7’ 250s 250s 0K .......... .......... ........ 4.26G=0s 250s 250s 2025-02-19 11:03:21 (4.26 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=13&vdef_id=7’ saved [28737] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=14&vdef_id=7 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=14&vdef_id=7’ 250s 250s 0K .......... .......... ........ 4.27G=0s 250s 250s 2025-02-19 11:03:21 (4.27 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=14&vdef_id=7’ saved [28732] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=15&vdef_id=7 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=15&vdef_id=7’ 250s 250s 0K .......... .......... ........ 4.16G=0s 250s 250s 2025-02-19 11:03:21 (4.16 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=15&vdef_id=7’ saved [29065] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=3 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=3’ 250s 250s 0K .......... .......... ........ 4.57G=0s 250s 250s 2025-02-19 11:03:21 (4.57 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=3’ saved [29020] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=5&vdef_id=3 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=5&vdef_id=3’ 250s 250s 0K .......... .......... ........ 4.38G=0s 250s 250s 2025-02-19 11:03:21 (4.38 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=5&vdef_id=3’ saved [28703] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=6&vdef_id=3 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=6&vdef_id=3’ 250s 250s 0K .......... .......... ........ 4.31G=0s 250s 250s 2025-02-19 11:03:21 (4.31 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=6&vdef_id=3’ saved [29031] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=5 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=5’ 250s 250s 0K .......... .......... ........ 3.51G=0s 250s 250s 2025-02-19 11:03:21 (3.51 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=5’ saved [29016] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=9&vdef_id=5 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=9&vdef_id=5’ 250s 250s 0K .......... .......... ........ 4.80G=0s 250s 250s 2025-02-19 11:03:21 (4.80 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=9&vdef_id=5’ saved [28699] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=10&vdef_id=5 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=10&vdef_id=5’ 250s 250s 0K .......... .......... ........ 4.84G=0s 250s 250s 2025-02-19 11:03:21 (4.84 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=10&vdef_id=5’ saved [29028] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=4 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=4’ 250s 250s 0K .......... .......... ........ 4.12G=0s 250s 250s 2025-02-19 11:03:21 (4.12 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=4’ saved [29024] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=7&vdef_id=4 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=7&vdef_id=4’ 250s 250s 0K .......... .......... ........ 5.13G=0s 250s 250s 2025-02-19 11:03:21 (5.13 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=7&vdef_id=4’ saved [28707] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=8&vdef_id=4 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=8&vdef_id=4’ 250s 250s 0K .......... .......... ........ 4.57G=0s 250s 250s 2025-02-19 11:03:21 (4.57 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=8&vdef_id=4’ saved [29035] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=1 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=1’ 250s 250s 0K .......... .......... ........ 3.87G=0s 250s 250s 2025-02-19 11:03:21 (3.87 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=1’ saved [29020] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=1&vdef_id=1 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=1&vdef_id=1’ 250s 250s 0K .......... .......... ........ 4.54G=0s 250s 250s 2025-02-19 11:03:21 (4.54 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=1&vdef_id=1’ saved [28703] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=2&vdef_id=1 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=2&vdef_id=1’ 250s 250s 0K .......... .......... ........ 4.93G=0s 250s 250s 2025-02-19 11:03:21 (4.93 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=2&vdef_id=1’ saved [29031] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=2 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=2’ 250s 250s 0K .......... .......... ........ 4.77G=0s 250s 250s 2025-02-19 11:03:21 (4.77 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=2’ saved [29020] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=3&vdef_id=2 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=3&vdef_id=2’ 250s 250s 0K .......... .......... ........ 4.90G=0s 250s 250s 2025-02-19 11:03:21 (4.90 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=3&vdef_id=2’ saved [28703] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=4&vdef_id=2 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=4&vdef_id=2’ 250s 250s 0K .......... .......... ........ 4.33G=0s 250s 250s 2025-02-19 11:03:21 (4.33 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=4&vdef_id=2’ saved [29031] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=6 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=6’ 250s 250s 0K .......... .......... ........ 5.07G=0s 250s 250s 2025-02-19 11:03:21 (5.07 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=6’ saved [29037] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=11&vdef_id=6 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=11&vdef_id=6’ 250s 250s 0K .......... .......... ........ 4.46G=0s 250s 250s 2025-02-19 11:03:21 (4.46 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=11&vdef_id=6’ saved [28721] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/vdef.php?action=item_edit&id=12&vdef_id=6 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 250s Length: unspecified [text/html] 250s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=12&vdef_id=6’ 250s 250s 0K .......... .......... ........ 4.11G=0s 250s 250s 2025-02-19 11:03:21 (4.11 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=12&vdef_id=6’ saved [29049] 250s 250s --2025-02-19 11:03:21-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=general 250s Reusing existing connection to [localhost]:80. 250s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=general’ 251s 251s 0K .......... .......... .......... ......... 3.79G=0s 251s 251s 2025-02-19 11:03:21 (3.79 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=general’ saved [40747] 251s 251s --2025-02-19 11:03:21-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=realms 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=realms’ 251s 251s 0K .......... .......... .......... .......... 7.74G=0s 251s 251s 2025-02-19 11:03:21 (7.74 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=realms’ saved [41358] 251s 251s --2025-02-19 11:03:21-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsgr 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsgr’ 251s 251s 0K .......... .......... .......... .. 7.40G=0s 251s 251s 2025-02-19 11:03:21 (7.40 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsgr’ saved [32859] 251s 251s --2025-02-19 11:03:21-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsg 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsg’ 251s 251s 0K .......... .......... .......... ...... 7.48G=0s 251s 251s 2025-02-19 11:03:21 (7.48 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsg’ saved [37413] 251s 251s --2025-02-19 11:03:21-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsd 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsd’ 251s 251s 0K .......... .......... .......... ....... 7.60G=0s 251s 251s 2025-02-19 11:03:21 (7.60 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsd’ saved [38266] 251s 251s --2025-02-19 11:03:21-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permste 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permste’ 251s 251s 0K .......... .......... .......... ..... 5.37G=0s 251s 251s 2025-02-19 11:03:22 (5.37 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permste’ saved [36789] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permstr 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permstr’ 251s 251s 0K .......... .......... .......... ..... 5.77G=0s 251s 251s 2025-02-19 11:03:22 (5.77 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permstr’ saved [36680] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=settings 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=settings’ 251s 251s 0K .......... .......... .......... .......... .......... 3.62G 251s 50K .......... 20.1T=0s 251s 251s 2025-02-19 11:03:22 (4.41 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=settings’ saved [62225] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=general 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=general’ 251s 251s 0K .......... .......... .......... ......... 6.46G=0s 251s 251s 2025-02-19 11:03:22 (6.46 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=general’ saved [40742] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=realms 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=realms’ 251s 251s 0K .......... .......... .......... .......... 6.75G=0s 251s 251s 2025-02-19 11:03:22 (6.75 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=realms’ saved [41148] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsgr 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsgr’ 251s 251s 0K .......... .......... .......... .. 5.07G=0s 251s 251s 2025-02-19 11:03:22 (5.07 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsgr’ saved [32859] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsg 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsg’ 251s 251s 0K .......... .......... .......... ...... 5.55G=0s 251s 251s 2025-02-19 11:03:22 (5.55 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsg’ saved [37413] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsd 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsd’ 251s 251s 0K .......... .......... .......... ....... 4.66G=0s 251s 251s 2025-02-19 11:03:22 (4.66 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsd’ saved [38266] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permste 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permste’ 251s 251s 0K .......... .......... .......... ..... 5.13G=0s 251s 251s 2025-02-19 11:03:22 (5.13 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permste’ saved [36789] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permstr 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permstr’ 251s 251s 0K .......... .......... .......... ..... 5.46G=0s 251s 251s 2025-02-19 11:03:22 (5.46 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permstr’ saved [36680] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=settings 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=settings’ 251s 251s 0K .......... .......... .......... .......... .......... 4.09G 251s 50K .......... 20.1T=0s 251s 251s 2025-02-19 11:03:22 (4.97 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=settings’ saved [62225] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/utilities.php?action=view_tech&tab=summary 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=summary’ 251s 251s 0K .......... .......... .......... ..... 5.10G=0s 251s 251s 2025-02-19 11:03:22 (5.10 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=summary’ saved [36223] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/utilities.php?action=view_tech&tab=database 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=database’ 251s 251s 0K .......... .......... .......... .......... .......... 5.42G 251s 50K . 2.55T=0s 251s 251s 2025-02-19 11:03:22 (5.57 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=database’ saved [52604] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/utilities.php?action=view_tech&tab=dbsettings 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=dbsettings’ 251s 251s 0K .......... .......... .......... .......... .......... 4.12G 251s 50K .......... .......... .... 86.7M=0s 251s 251s 2025-02-19 11:03:22 (251 MB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=dbsettings’ saved [76598] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/utilities.php?action=view_tech&tab=dbstatus 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=dbstatus’ 251s 251s 0K .......... .......... .......... .......... .......... 5.54G 251s 50K .......... ... 24.6T=0s 251s 251s 2025-02-19 11:03:22 (7.01 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=dbstatus’ saved [64746] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/utilities.php?action=view_tech&tab=phpinfo 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=phpinfo’ 251s 251s 0K .......... .......... .......... .......... .......... 5.53G 251s 50K .......... ......... 26.0M=0.001s 251s 251s 2025-02-19 11:03:22 (93.0 MB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=phpinfo’ saved [70707] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/utilities.php?action=view_tech&tab=changelog 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=changelog’ 251s 251s 0K .......... .......... .......... .......... .......... 3.49G 251s 50K .......... .......... .......... .......... .......... 73.0M 251s 100K .......... .......... .......... .......... .......... 846M 251s 150K .......... .......... .......... .......... .......... 859M 251s 200K .......... .......... .......... .......... .......... 93.1T 251s 250K .......... .......... .......... .......... .......... 875M 251s 300K .......... .......... .......... .......... .......... 758M 251s 350K .......... .......... .......... .......... .......... 845M 251s 400K .......... .......... .......... .......... .......... 929M 251s 450K .......... 19.9T=0.001s 251s 251s 2025-02-19 11:03:22 (438 MB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=changelog’ saved [471740] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/managers.php?action=edit 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/managers.php?action=edit’ 251s 251s 0K .......... .......... .......... ........ 6.14G=0s 251s 251s 2025-02-19 11:03:22 (6.14 GB/s) - ‘localhost/cacti/managers.php?action=edit’ saved [39880] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=12&graph_template_id=2 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=12&graph_template_id=2’ 251s 251s 0K .......... .......... .......... .......... .......... 5.49G 251s 50K .......... . 20.5T=0s 251s 251s 2025-02-19 11:03:22 (6.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=12&graph_template_id=2’ saved [62474] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=5&graph_template_id=2 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=5&graph_template_id=2’ 251s 251s 0K .......... .......... .......... .......... .......... 5.08G 251s 50K .......... . 20.5T=0s 251s 251s 2025-02-19 11:03:22 (6.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=5&graph_template_id=2’ saved [62474] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=58&graph_template_id=9 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=58&graph_template_id=9’ 251s 251s 0K .......... .......... .......... .......... .......... 5.21G 251s 50K .... 9.24T=0s 251s 251s 2025-02-19 11:03:22 (5.72 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=58&graph_template_id=9’ saved [56282] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=57&graph_template_id=9 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=57&graph_template_id=9’ 251s 251s 0K .......... .......... .......... .......... .......... 8.59G 251s 50K .... 9.24T=0s 251s 251s 2025-02-19 11:03:22 (9.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=57&graph_template_id=9’ saved [56282] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=40&graph_template_id=5 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=40&graph_template_id=5’ 251s 251s 0K .......... .......... .......... .......... .......... 6.29G 251s 50K .......... . 20.7T=0s 251s 251s 2025-02-19 11:03:22 (7.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=40&graph_template_id=5’ saved [62555] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=33&graph_template_id=5 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=33&graph_template_id=5’ 251s 251s 0K .......... .......... .......... .......... .......... 7.76G 251s 50K .......... . 20.7T=0s 251s 251s 2025-02-19 11:03:22 (9.48 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=33&graph_template_id=5’ saved [62555] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=13&graph_template_id=3 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=13&graph_template_id=3’ 251s 251s 0K .......... .......... .......... .......... .......... 7.13G 251s 50K .......... .......... 221M=0s 251s 251s 2025-02-19 11:03:22 (718 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=13&graph_template_id=3’ saved [71782] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=52&graph_template_id=7 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=52&graph_template_id=7’ 251s 251s 0K .......... .......... .......... .......... .......... 7.17G 251s 50K .......... . 21.0T=0s 251s 251s 2025-02-19 11:03:22 (8.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=52&graph_template_id=7’ saved [62731] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=45&graph_template_id=7 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=45&graph_template_id=7’ 251s 251s 0K .......... .......... .......... .......... .......... 5.56G 251s 50K .......... . 21.0T=0s 251s 251s 2025-02-19 11:03:22 (6.81 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=45&graph_template_id=7’ saved [62731] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=115&graph_template_id=14 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=115&graph_template_id=14’ 251s 251s 0K .......... .......... .......... .......... .......... 6.36G 251s 50K ........ 16.6T=0s 251s 251s 2025-02-19 11:03:22 (7.50 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=115&graph_template_id=14’ saved [60318] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=110&graph_template_id=14 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=110&graph_template_id=14’ 251s 251s 0K .......... .......... .......... .......... .......... 8.54G 251s 50K ........ 16.6T=0s 251s 251s 2025-02-19 11:03:22 (10.1 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=110&graph_template_id=14’ saved [60318] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=121&graph_template_id=15 251s Connecting to localhost (localhost)|::1|:80... connected. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=121&graph_template_id=15’ 251s 251s 0K .......... .......... .......... .......... .......... 906M 251s 50K ........ 16.3T=0s 251s 251s 2025-02-19 11:03:22 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=121&graph_template_id=15’ saved [60185] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=116&graph_template_id=15 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=116&graph_template_id=15’ 251s 251s 0K .......... .......... .......... .......... .......... 6.51G 251s 50K ........ 16.3T=0s 251s 251s 2025-02-19 11:03:22 (7.65 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=116&graph_template_id=15’ saved [60185] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=89&graph_template_id=12 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=89&graph_template_id=12’ 251s 251s 0K .......... .......... .......... .......... .......... 5.42G 251s 50K .......... ........ 260M=0s 251s 251s 2025-02-19 11:03:22 (865 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=89&graph_template_id=12’ saved [69819] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=109&graph_template_id=13 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=109&graph_template_id=13’ 251s 251s 0K .......... .......... .......... .......... .......... 7.24G 251s 50K ........ 16.3T=0s 251s 251s 2025-02-19 11:03:22 (8.52 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=109&graph_template_id=13’ saved [60187] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=104&graph_template_id=13 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=104&graph_template_id=13’ 251s 251s 0K .......... .......... .......... .......... .......... 6.89G 251s 50K ........ 16.3T=0s 251s 251s 2025-02-19 11:03:22 (8.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=104&graph_template_id=13’ saved [60187] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=74&graph_template_id=11 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=74&graph_template_id=11’ 251s 251s 0K .......... .......... .......... .......... .......... 6.72G 251s 50K .......... ........ 261M=0s 251s 251s 2025-02-19 11:03:22 (889 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=74&graph_template_id=11’ saved [69759] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=59&graph_template_id=10 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=59&graph_template_id=10’ 251s 251s 0K .......... .......... .......... .......... .......... 6.98G 251s 50K .......... ........ 235M=0s 251s 251s 2025-02-19 11:03:22 (808 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=59&graph_template_id=10’ saved [69800] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=449&graph_template_id=50 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=449&graph_template_id=50’ 251s 251s 0K .......... .......... .......... .......... .......... 7.21G 251s 50K .......... ..... 185M=0s 251s 251s 2025-02-19 11:03:22 (731 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=449&graph_template_id=50’ saved [66804] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=501&graph_template_id=52 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=501&graph_template_id=52’ 251s 251s 0K .......... .......... .......... .......... .......... 6.01G 251s 50K .......... .......... .. 208M=0s 251s 251s 2025-02-19 11:03:22 (627 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=501&graph_template_id=52’ saved [73946] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=461&graph_template_id=51 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=461&graph_template_id=51’ 251s 251s 0K .......... .......... .......... .......... .......... 7.07G 251s 50K .......... .......... .......... .......... ...... 296M=0s 251s 251s 2025-02-19 11:03:22 (589 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=461&graph_template_id=51’ saved [98625] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=420&graph_template_id=46 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=420&graph_template_id=46’ 251s 251s 0K .......... .......... .......... .......... .......... 6.26G 251s 50K .......... ......... 86.6M=0s 251s 251s 2025-02-19 11:03:22 (296 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=420&graph_template_id=46’ saved [71403] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=436&graph_template_id=47 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=436&graph_template_id=47’ 251s 251s 0K .......... .......... .......... .......... .......... 6.19G 251s 50K ....... 14.8T=0s 251s 251s 2025-02-19 11:03:22 (7.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=436&graph_template_id=47’ saved [59351] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=127&graph_template_id=16 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 302 Found 251s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 251s Reusing existing connection to [localhost]:80. 251s HTTP request sent, awaiting response... 200 OK 251s Length: unspecified [text/html] 251s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=127&graph_template_id=16’ 251s 251s 0K .......... .......... .......... .......... .......... 6.01G 251s 50K ........ 16.3T=0s 251s 251s 2025-02-19 11:03:22 (7.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=127&graph_template_id=16’ saved [60144] 251s 251s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=122&graph_template_id=16 251s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 252s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=122&graph_template_id=16’ 252s 252s 0K .......... .......... .......... .......... .......... 8.25G 252s 50K ........ 16.3T=0s 252s 252s 2025-02-19 11:03:22 (9.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=122&graph_template_id=16’ saved [60144] 252s 252s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=195&graph_template_id=26 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 252s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=195&graph_template_id=26’ 252s 252s 0K .......... .......... .......... .......... .......... 5.36G 252s 50K .......... ... 24.4T=0s 252s 252s 2025-02-19 11:03:22 (6.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=195&graph_template_id=26’ saved [64625] 252s 252s --2025-02-19 11:03:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=186&graph_template_id=26 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=186&graph_template_id=26’ 252s 252s 0K .......... .......... .......... .......... .......... 5.53G 252s 50K .......... ... 24.4T=0s 252s 252s 2025-02-19 11:03:23 (6.98 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=186&graph_template_id=26’ saved [64625] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=185&graph_template_id=25 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=185&graph_template_id=25’ 252s 252s 0K .......... .......... .......... .......... .......... 7.94G 252s 50K .......... ... 24.7T=0s 252s 252s 2025-02-19 11:03:23 (10.0 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=185&graph_template_id=25’ saved [64765] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=176&graph_template_id=25 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=176&graph_template_id=25’ 252s 252s 0K .......... .......... .......... .......... .......... 7.97G 252s 50K .......... ... 24.7T=0s 252s 252s 2025-02-19 11:03:23 (10.1 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=176&graph_template_id=25’ saved [64765] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=205&graph_template_id=27 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=205&graph_template_id=27’ 252s 252s 0K .......... .......... .......... .......... .......... 7.60G 252s 50K .......... ... 24.4T=0s 252s 252s 2025-02-19 11:03:23 (9.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=205&graph_template_id=27’ saved [64626] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=196&graph_template_id=27 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=196&graph_template_id=27’ 252s 252s 0K .......... .......... .......... .......... .......... 7.33G 252s 50K .......... ... 24.4T=0s 252s 252s 2025-02-19 11:03:23 (9.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=196&graph_template_id=27’ saved [64626] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=139&graph_template_id=18 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=139&graph_template_id=18’ 252s 252s 0K .......... .......... .......... .......... .......... 7.42G 252s 50K ........ 16.5T=0s 252s 252s 2025-02-19 11:03:23 (8.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=139&graph_template_id=18’ saved [60287] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=134&graph_template_id=18 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=134&graph_template_id=18’ 252s 252s 0K .......... .......... .......... .......... .......... 8.03G 252s 50K ........ 16.5T=0s 252s 252s 2025-02-19 11:03:23 (9.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=134&graph_template_id=18’ saved [60287] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=145&graph_template_id=19 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=145&graph_template_id=19’ 252s 252s 0K .......... .......... .......... .......... .......... 6.53G 252s 50K ........ 16.2T=0s 252s 252s 2025-02-19 11:03:23 (7.66 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=145&graph_template_id=19’ saved [60112] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=140&graph_template_id=19 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=140&graph_template_id=19’ 252s 252s 0K .......... .......... .......... .......... .......... 6.85G 252s 50K ........ 16.2T=0s 252s 252s 2025-02-19 11:03:23 (8.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=140&graph_template_id=19’ saved [60112] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=151&graph_template_id=20 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=151&graph_template_id=20’ 252s 252s 0K .......... .......... .......... .......... .......... 6.74G 252s 50K ........ 16.6T=0s 252s 252s 2025-02-19 11:03:23 (7.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=151&graph_template_id=20’ saved [60341] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=146&graph_template_id=20 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=146&graph_template_id=20’ 252s 252s 0K .......... .......... .......... .......... .......... 4.86G 252s 50K ........ 16.6T=0s 252s 252s 2025-02-19 11:03:23 (5.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=146&graph_template_id=20’ saved [60341] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=276&graph_template_id=32 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=276&graph_template_id=32’ 252s 252s 0K .......... .......... .......... .......... .......... 6.89G 252s 50K .......... ... 24.4T=0s 252s 252s 2025-02-19 11:03:23 (8.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=276&graph_template_id=32’ saved [64599] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=267&graph_template_id=32 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=267&graph_template_id=32’ 252s 252s 0K .......... .......... .......... .......... .......... 6.37G 252s 50K .......... ... 24.4T=0s 252s 252s 2025-02-19 11:03:23 (8.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=267&graph_template_id=32’ saved [64599] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=12 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=12’ 252s 252s 0K .......... .......... .......... .......... .......... 7.89G 252s 50K ....... 14.1T=0s 252s 252s 2025-02-19 11:03:23 (9.08 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=12’ saved [58945] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=1’ 252s 252s 0K .......... .......... .......... .......... .......... 3.82G 252s 50K ....... 14.1T=0s 252s 252s 2025-02-19 11:03:23 (4.40 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=1’ saved [58933] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=22 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=22’ 252s 252s 0K .......... .......... .......... .......... ...... 3.93G=0s 252s 252s 2025-02-19 11:03:23 (3.93 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=22’ saved [47942] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=23 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=23’ 252s 252s 0K .......... .......... .......... .......... ...... 4.05G=0s 252s 252s 2025-02-19 11:03:23 (4.05 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=23’ saved [47909] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=20 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=20’ 252s 252s 0K .......... .......... .......... .......... ...... 4.15G=0s 252s 252s 2025-02-19 11:03:23 (4.15 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=20’ saved [47933] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=21 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=21’ 252s 252s 0K .......... .......... .......... .......... ...... 4.34G=0s 252s 252s 2025-02-19 11:03:23 (4.34 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=21’ saved [47905] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=19 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=19’ 252s 252s 0K .......... .......... .......... .......... ...... 3.85G=0s 252s 252s 2025-02-19 11:03:23 (3.85 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=19’ saved [47908] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=18 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=18’ 252s 252s 0K .......... .......... .......... .......... ...... 3.91G=0s 252s 252s 2025-02-19 11:03:23 (3.91 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=18’ saved [47914] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=85 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=85’ 252s 252s 0K .......... .......... .......... .......... ...... 3.77G=0s 252s 252s 2025-02-19 11:03:23 (3.77 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=85’ saved [47166] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=83 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=83’ 252s 252s 0K .......... .......... .......... .......... ...... 7.46G=0s 252s 252s 2025-02-19 11:03:23 (7.46 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=83’ saved [47178] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=84 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=84’ 252s 252s 0K .......... .......... .......... .......... ...... 4.28G=0s 252s 252s 2025-02-19 11:03:23 (4.28 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=84’ saved [47198] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=1’ 252s 252s 0K .......... .......... .......... .......... ...... 4.07G=0s 252s 252s 2025-02-19 11:03:23 (4.07 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=1’ saved [47970] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=0’ 252s 252s 0K .......... .......... .......... ....... 6.76G=0s 252s 252s 2025-02-19 11:03:23 (6.76 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=0’ saved [38496] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=0’ 252s 252s 0K .......... .......... .......... .... 3.49G=0s 252s 252s 2025-02-19 11:03:23 (3.49 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=0’ saved [35801] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=1’ 252s 252s 0K .......... .......... .......... ........ 3.63G=0s 252s 252s 2025-02-19 11:03:23 (3.63 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=1’ saved [39795] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=0’ 252s 252s 0K .......... .......... .......... ........ 6.49G=0s 252s 252s 2025-02-19 11:03:23 (6.49 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=0’ saved [39795] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=0’ 252s 252s 0K .......... .......... .......... ........ 6.18G=0s 252s 252s 2025-02-19 11:03:23 (6.18 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=0’ saved [39795] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=1’ 252s 252s 0K .......... .......... .......... ........ 3.70G=0s 252s 252s 2025-02-19 11:03:23 (3.70 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=1’ saved [39009] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=0’ 252s 252s 0K .......... .......... .......... ........ 3.23G=0s 252s 252s 2025-02-19 11:03:23 (3.23 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=0’ saved [39009] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=0’ 252s 252s 0K .......... .......... .......... ........ 3.32G=0s 252s 252s 2025-02-19 11:03:23 (3.32 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=0’ saved [39009] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=0’ 252s 252s 0K .......... .......... .......... ...... 3.44G=0s 252s 252s 2025-02-19 11:03:23 (3.44 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=0’ saved [36890] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=1’ 252s 252s 0K .......... .......... .......... .......... .. 3.61G=0s 252s 252s 2025-02-19 11:03:23 (3.61 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=1’ saved [43056] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=2&id=1&rule_type=4 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: automation_tree_rules.php?action=edit&id=1 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=2&id=1&rule_type=4’ 252s 252s 0K .......... .......... .......... ...... 3.23G=0s 252s 252s 2025-02-19 11:03:23 (3.23 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=2&id=1&rule_type=4’ saved [36890] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=1&id=1&rule_type=4 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: automation_tree_rules.php?action=edit&id=1 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=1&id=1&rule_type=4’ 252s 252s 0K .......... .......... .......... ...... 5.29G=0s 252s 252s 2025-02-19 11:03:23 (5.29 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=1&id=1&rule_type=4’ saved [36890] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=1’ 252s 252s 0K .......... .......... .......... .......... .. 5.13G=0s 252s 252s 2025-02-19 11:03:23 (5.13 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=1’ saved [43053] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=0 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=0’ 252s 252s 0K .......... .......... .......... ...... 3.00G=0s 252s 252s 2025-02-19 11:03:23 (3.00 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=0’ saved [37629] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=7&id=2&rule_type=3 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: automation_tree_rules.php?action=edit&id=2 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=7&id=2&rule_type=3’ 252s 252s 0K .......... .......... .......... ...... 5.18G=0s 252s 252s 2025-02-19 11:03:23 (5.18 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=7&id=2&rule_type=3’ saved [37629] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=6&id=2&rule_type=3 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 302 Found 252s Location: automation_tree_rules.php?action=edit&id=2 [following] 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=6&id=2&rule_type=3’ 252s 252s 0K .......... .......... .......... ...... 4.28G=0s 252s 252s 2025-02-19 11:03:23 (4.28 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=6&id=2&rule_type=3’ saved [37629] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=1 252s Reusing existing connection to [localhost]:80. 252s HTTP request sent, awaiting response... 200 OK 252s Length: unspecified [text/html] 252s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=1’ 252s 252s 0K .......... .......... .......... .......... .. 5.05G=0s 252s 252s 2025-02-19 11:03:23 (5.05 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=1’ saved [43379] 252s 252s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=8&id=1&rule_type=1 252s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=1 [following] 253s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=8&id=1&rule_type=1’ 253s 253s 0K .......... .......... .......... ........ 6.08G=0s 253s 253s 2025-02-19 11:03:23 (6.08 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=8&id=1&rule_type=1’ saved [39795] 253s 253s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=1 [following] 253s --2025-02-19 11:03:23-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=1’ 253s 253s 0K .......... .......... .......... ........ 6.62G=0s 253s 253s 2025-02-19 11:03:24 (6.62 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=1’ saved [39795] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=3&id=1&rule_type=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=1 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=3&id=1&rule_type=2’ 253s 253s 0K .......... .......... .......... ........ 5.48G=0s 253s 253s 2025-02-19 11:03:24 (5.48 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=3&id=1&rule_type=2’ saved [39795] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=1 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=2’ 253s 253s 0K .......... .......... .......... ........ 5.78G=0s 253s 253s 2025-02-19 11:03:24 (5.78 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=2’ saved [39795] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=2 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=1’ 253s 253s 0K .......... .......... .......... ........ 5.96G=0s 253s 253s 2025-02-19 11:03:24 (5.96 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=1’ saved [39009] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=1 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=2 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=1’ 253s 253s 0K .......... .......... .......... ........ 6.45G=0s 253s 253s 2025-02-19 11:03:24 (6.45 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=1’ saved [39009] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=6&id=2&rule_type=2 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=2 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=6&id=2&rule_type=2’ 253s 253s 0K .......... .......... .......... ........ 4.01G=0s 253s 253s 2025-02-19 11:03:24 (4.01 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=6&id=2&rule_type=2’ saved [39009] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_graph_rules.php?action=edit&id=2 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=2’ 253s 253s 0K .......... .......... .......... ........ 2.70G=0s 253s 253s 2025-02-19 11:03:24 (2.70 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=2’ saved [39009] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=0 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=0’ 253s 253s 0K .......... .......... .......... ..... 5.79G=0s 253s 253s 2025-02-19 11:03:24 (5.79 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=0’ saved [35843] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=0 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=0’ 253s 253s 0K .......... .......... .......... .... 6.63G=0s 253s 253s 2025-02-19 11:03:24 (6.63 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=0’ saved [35837] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=4&id=2&rule_type=4 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_tree_rules.php?action=edit&id=2 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=4&id=2&rule_type=4’ 253s 253s 0K .......... .......... .......... ...... 5.55G=0s 253s 253s 2025-02-19 11:03:24 (5.55 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=4&id=2&rule_type=4’ saved [37629] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=3&id=2&rule_type=4 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 302 Found 253s Location: automation_tree_rules.php?action=edit&id=2 [following] 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=3&id=2&rule_type=4’ 253s 253s 0K .......... .......... .......... ...... 5.29G=0s 253s 253s 2025-02-19 11:03:24 (5.29 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=3&id=2&rule_type=4’ saved [37629] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=0 253s Reusing existing connection to [localhost]:80. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=0’ 253s 253s 0K .......... .......... .......... ..... 6.47G=0s 253s 253s 2025-02-19 11:03:24 (6.47 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=0’ saved [36158] 253s 253s FINISHED --2025-02-19 11:03:24-- 253s Total wall clock time: 43s 253s Downloaded: 2535 files, 122M in 0.2s (543 MB/s) 253s --2025-02-19 11:03:24-- http://localhost/cacti/tree.php 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘tree.php.1’ 253s 253s 0K .......... .......... .......... ..... 2.83G=0s 253s 253s 2025-02-19 11:03:24 (2.83 GB/s) - ‘tree.php.1’ saved [36234] 253s 253s --2025-02-19 11:03:24-- http://localhost/cacti/graph_view.php?action=tree&';window.alert('bla');' 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: unspecified [text/html] 253s Saving to: ‘/tmp/tmp.W5Vwv1gOVh’ 253s 253s 0K .......... ......... 2.69G=0s 253s 253s 2025-02-19 11:03:24 (2.69 GB/s) - ‘/tmp/tmp.W5Vwv1gOVh’ saved [20111] 253s 253s Checking /tmp/tmp.W5Vwv1gOVh for unescaped code (CVE-2017-15194)... done 253s --2025-02-19 11:03:24-- http://localhost/cacti/remote_agent.php 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 79 [text/html] 253s Saving to: ‘/tmp/tmp.W5Vwv1gOVh’ 253s 253s 0K 100% 19.1M=0s 253s 253s 2025-02-19 11:03:24 (19.1 MB/s) - ‘/tmp/tmp.W5Vwv1gOVh’ saved [79/79] 253s 253s Checking for CVE-2017-16660 ... done 253s --2025-02-19 11:03:24-- http://localhost/cacti/clog.php?rfilter=&reverse=1&refresh=60&message_type=-1&tail_lines=500&filename=passwd 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘/tmp/tmp.W5Vwv1gOVh’ 253s 253s 0K Checking /tmp/tmp.W5Vwv1gOVh for /etc/passwd content (CVE-2017-16661) ... 100% 34.9M=0s 253s 253s 2025-02-19 11:03:24 (34.9 MB/s) - ‘/tmp/tmp.W5Vwv1gOVh’ saved [93/93] 253s 253s done 253s --2025-02-19 11:03:24-- http://localhost/cacti/host.php/gahv8'-alert('this_is_bad')-'w6vt7??host_status=-1&host_template_id=-1&site_id=-1&poller_id=-1&rows=-1&filter= 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘/tmp/tmp.W5Vwv1gOVh’ 253s 253s 0K 100% 38.0M=0s 253s 253s 2025-02-19 11:03:24 (38.0 MB/s) - ‘/tmp/tmp.W5Vwv1gOVh’ saved [93/93] 253s 253s Checking /tmp/tmp.W5Vwv1gOVh for XSS content (CVE-2017-16785) ... done 253s --2025-02-19 11:03:24-- http://localhost/cacti/settings.php 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘/tmp/tmp.W5Vwv1gOVh’ 253s 253s 0K 100% 73.9M=0s 253s 253s 2025-02-19 11:03:24 (73.9 MB/s) - ‘/tmp/tmp.W5Vwv1gOVh’ saved [93/93] 253s 253s No unexpected output in /var/log/cacti/cacti.log 253s Copying /var/log/cacti/cacti.log to artifacts 253s Copying /var/log/apache2/error.log to artifacts 253s + sudo systemctl restart apache2 253s + sudo systemctl status apache2 253s ● apache2.service - The Apache HTTP Server 253s Loaded: loaded (/usr/lib/systemd/system/apache2.service; enabled; preset: enabled) 253s Active: active (running) since Wed 2025-02-19 11:03:24 UTC; 10ms ago 253s Invocation: ce4f6048b4d3495289af760a4ab8bcb7 253s Docs: https://httpd.apache.org/docs/2.4/ 253s Process: 14903 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS) 253s Main PID: 14906 (apache2) 253s Tasks: 1 (limit: 4769) 253s Memory: 5.2M (peak: 5.2M) 253s CPU: 22ms 253s CGroup: /system.slice/apache2.service 253s └─14906 /usr/sbin/apache2 -k start 253s 253s Feb 19 11:03:24 autopkgtest systemd[1]: Starting apache2.service - The Apache HTTP Server... 253s Feb 19 11:03:24 autopkgtest systemd[1]: Started apache2.service - The Apache HTTP Server. 253s + sudo systemctl stop firewalld 253s Failed to stop firewalld.service: Unit firewalld.service not loaded. 253s --------------------------------------------------------------------- 253s NOTE: Check all Pages Script Starting 253s --------------------------------------------------------------------- 253s + echo --------------------------------------------------------------------- 253s + echo 'NOTE: Check all Pages Script Starting' 253s + echo --------------------------------------------------------------------- 253s + WEBHOST=http://localhost/cacti 253s + WAUSER=admin 253s + WAPASS=admin 253s + DBFILE=./.my.cnf 253s + DBHOST=localhost 253s + DBNAME=cacti 253s + DBPASS=cacti_user 253s + DBUSER=cacti_user 253s + DBSLEEP=2 253s + WSOWNER=apache 253s + WSERROR=/var/log/httpd/error_log 253s + WSACCESS=/var/log/httpd/access_log 253s + id www-data 253s + WSOWNER=www-data 253s + WSERROR=/var/log/apache2/error.log 253s + WSACCESS=/var/log/apache2/access.log 253s ++ wget 253s + WGET_OUTPUT='wget: missing URL 253s Usage: wget [OPTION]... [URL]... 253s 253s Try `wget --help'\'' for more options.' 253s + WGET_RESULT=1 253s + '[' 1 -eq 127 ']' 253s + '[' -n -du ']' 253s + case $1 in 253s + DBUSER=cacti 253s Using the following values: 253s WEBHOST | http://localhost/cacti 253s + DBSLEEP=0 253s + shift 253s + shift 253s + '[' -n -dp ']' 253s + case $1 in 253s + DBPASS=VVT0QupPQN9S 253s + DBSLEEP=0 253s + shift 253s + shift 253s + '[' -n '' ']' 253s + echo 'Using the following values:' 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=WEBHOST 253s + [[ WEBHOST == \W\A\P\A\S\S ]] 253s + [[ WEBHOST == \D\B\P\A\S\S ]] 253s + value=http://localhost/cacti 253s + printf '\t%10s | %s\n' WEBHOST http://localhost/cacti 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=WAUSER 253s + [[ WAUSER == \W\A\P\A\S\S ]] 253s + [[ WAUSER == \D\B\P\A\S\S ]] 253s + value=admin 253s + printf '\t%10s | %s\n' WAUSER admin 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=WAPASS 253s + [[ WAPASS == \W\A\P\A\S\S ]] 253s + value='*******' 253s + printf '\t%10s | %s\n' WAPASS '*******' 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=DBFILE 253s + [[ DBFILE == \W\A\P\A\S\S ]] 253s + [[ DBFILE == \D\B\P\A\S\S ]] 253s + value=./.my.cnf 253s + printf '\t%10s | %s\n' DBFILE ./.my.cnf 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=DBHOST 253s + [[ DBHOST == \W\A\P\A\S\S ]] 253s + [[ DBHOST == \D\B\P\A\S\S ]] 253s + value=localhost 253s + printf '\t%10s | %s\n' DBHOST localhost 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=DBNAME 253s + [[ DBNAME == \W\A\P\A\S\S ]] 253s + [[ DBNAME == \D\B\P\A\S\S ]] 253s + value=cacti 253s + printf '\t%10s | %s\n' DBNAME cacti 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=DBPASS 253s + [[ DBPASS == \W\A\P\A\S\S ]] 253s + [[ DBPASS == \D\B\P\A\S\S ]] 253s + value='*******' 253s + printf '\t%10s | %s\n' DBPASS '*******' 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=DBUSER 253s + [[ DBUSER == \W\A\P\A\S\S ]] 253s + [[ DBUSER == \D\B\P\A\S\S ]] 253s + value=cacti 253s + printf '\t%10s | %s\n' DBUSER cacti 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=DBSLEEP 253s + [[ DBSLEEP == \W\A\P\A\S\S ]] 253s + [[ DBSLEEP == \D\B\P\A\S\S ]] 253s + value=0 253s + printf '\t%10s | %s\n' DBSLEEP 0 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=WSOWNER 253s + [[ WSOWNER == \W\A\P\A\S\S ]] 253s + [[ WSOWNER == \D\B\P\A\S\S ]] 253s + value=www-data 253s + printf '\t%10s | %s\n' WSOWNER www-data 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=WSERROR 253s + [[ WSERROR == \W\A\P\A\S\S ]] 253s + [[ WSERROR == \D\B\P\A\S\S ]] 253s + value=/var/log/apache2/error.log 253s + printf '\t%10s | %s\n' WSERROR /var/log/apache2/error.log 253s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 253s + name=WSACCESS 253s + [[ WSACCESS == \W\A\P\A\S\S ]] 253s + [[ WSACCESS == \D\B\P\A\S\S ]] 253s + value=/var/log/apache2/access.log 253s + printf '\t%10s | %s\n' WSACCESS /var/log/apache2/access.log 253s + export 'MYSQL_AUTH_USR=-ucacti -pVVT0QupPQN9S' 253s + MYSQL_AUTH_USR='-ucacti -pVVT0QupPQN9S' 253s + '[' -f ./.my.cnf ']' 253s + echo 'NOTE: Script is running in non-interactive mode ensure you fill out the DB credentials!!!' 253s + [[ -n 0 ]] 253s + sleep 0 253s + export 'MYSQL_AUTH_USR=-ucacti -pVVT0QupPQN9S -hlocalhost' 253s + MYSQL_AUTH_USR='-ucacti -pVVT0QupPQN9S -hlocalhost' 253s + exec 253s WAUSER | admin 253s WAPASS | ******* 253s DBFILE | ./.my.cnf 253s DBHOST | localhost 253s DBNAME | cacti 253s DBPASS | ******* 253s DBUSER | cacti 253s DBSLEEP | 0 253s WSOWNER | www-data 253s WSERROR | /var/log/apache2/error.log 253s WSACCESS | /var/log/apache2/access.log 253s NOTE: Script is running in non-interactive mode ensure you fill out the DB credentials!!! 253s + started=0 253s + BASE_PATH=/usr/share/cacti/site 253s + echo 'NOTE: Base Path is /usr/share/cacti/site' 253s NOTE: Base Path is /usr/share/cacti/site 253s + DEBUG=0 253s + CACTI_LOG=/usr/share/cacti/site/log/cacti.log 253s + CACTI_ERRLOG=/usr/share/cacti/site/log/cacti.stderr.log 253s + POLLER=/usr/share/cacti/site/poller.php 253s + '[' '!' -d /tmp/check-all-pages ']' 253s + mkdir /tmp/check-all-pages 253s + trap catch_error 1 2 3 6 9 14 15 253s ++ pwd 253s + echo 'NOTE: Current Directory is /tmp/autopkgtest.ysJYGH/build.Eyz/src' 253s NOTE: Current Directory is /tmp/autopkgtest.ysJYGH/build.Eyz/src 253s + /bin/chown www-data:www-data /usr/share/cacti/site/log/cacti.log 253s + /bin/chown www-data:www-data /usr/share/cacti/site/log/cacti.stderr.log 253s + set_cacti_admin_password 253s + echo 'NOTE: Setting Cacti admin password and unsetting forced password change' 253s NOTE: Setting Cacti admin password and unsetting forced password change 253s + mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'UPDATE user_auth SET password=MD5('\''admin'\'') WHERE id = 1 ;' cacti 253s + mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'UPDATE user_auth SET password_change='\'''\'', must_change_password='\'''\'' WHERE id = 1 ;' cacti 253s + mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'REPLACE INTO settings (name, value) VALUES ('\''secpass_forceold'\'', '\'''\'') ;' cacti 253s + enable_log_validation 253s + echo 'NOTE: Setting Cacti log validation to on to validate improperly validated variables' 253s NOTE: Setting Cacti log validation to on to validate improperly validated variables 253s + mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'REPLACE INTO settings (name, value) VALUES ('\''log_validation'\'','\''on'\'') ;' cacti 253s + set_stderr_logging 253s + echo 'NOTE: Setting Cacti standard error log location' 253s NOTE: Setting Cacti standard error log location 253s + mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'REPLACE INTO cacti.settings (name, value) VALUES ('\''path_stderrlog'\'', '\''/usr/share/cacti/site/log/cacti.stderr.log'\'');' cacti 253s + allow_index_following 253s + echo 'NOTE: Altering Cacti to allow following pages' 253s NOTE: Altering Cacti to allow following pages 253s + sed -i 's///g' /usr/share/cacti/site/lib/html.php 253s ++ mktemp 253s + tmpFile1=/tmp/tmp.N0CzTX636c 253s ++ mktemp 253s + tmpFile2=/tmp/tmp.IynijHBgk7 253s ++ mktemp 253s + logFile1=/tmp/tmp.ptVNJYAE6n 253s ++ mktemp 253s + cookieFile=/tmp/tmp.qZfm3LD4eJ 253s + loadSaveCookie='--load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ' 253s + started=1 253s + '[' 0 -eq 1 ']' 253s + set_log_level_normal 253s + echo 'NOTE: Setting Cacti log verbosity to low' 253s NOTE: Setting Cacti log verbosity to low 253s + mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'REPLACE INTO settings (name, value) VALUES ('\''log_verbosity'\'', '\''2'\'') ;' cacti 253s + echo --------------------------------------------------------------------- 253s --------------------------------------------------------------------- 253s + echo 'Starting Web Based Page Validation' 253s Starting Web Based Page Validation 253s + echo --------------------------------------------------------------------- 253s --------------------------------------------------------------------- 253s + echo 'NOTE: Saving Cookie Data' 253s NOTE: Saving Cookie Data 253s + wget -q --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ --output-document=/tmp/tmp.N0CzTX636c http://localhost/cacti/index.php 253s ++ grep 'name='\''__csrf_magic'\'' value=' '{/tmp/tmp.N0CzTX636c}' 253s ++ sed 's/.*__csrf_magic'\'' value="//' 253s grep: {/tmp/tmp.N0CzTX636c}: No such file or directory 253s ++ sed 's/" \/>//' 253s + magic= 253s + postData='action=login&login_username=admin&login_password=admin&__csrf_magic=' 253s + echo 'NOTE: Logging into the Cacti User Interface' 253s NOTE: Logging into the Cacti User Interface 253s + wget --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ '--post-data=action=login&login_username=admin&login_password=admin&__csrf_magic=' --output-document=/tmp/tmp.IynijHBgk7 http://localhost/cacti/index.php 253s --2025-02-19 11:03:24-- http://localhost/cacti/index.php 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘/tmp/tmp.IynijHBgk7’ 253s 253s 0K 100% 54.6M=0s 253s 253s 2025-02-19 11:03:24 (54.6 MB/s) - ‘/tmp/tmp.IynijHBgk7’ saved [93/93] 253s 253s + echo 'NOTE: Recursively Checking all Base Pages - Note this will take several minutes!!!' 253s NOTE: Recursively Checking all Base Pages - Note this will take several minutes!!! 253s + wget --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ --output-file=/tmp/tmp.ptVNJYAE6n '--reject-regex=(logout\.php|remove|delete|uninstall|install|disable|enable)' --recursive --level=0 --execute=robots=off http://localhost/cacti/index.php 253s + error=0 253s + '[' 0 -eq 8 ']' 253s + '[' 0 -eq 1 ']' 253s ++ grep -c HTTP /tmp/tmp.ptVNJYAE6n 253s + checks=1 253s + echo 'NOTE: There were 1 pages checked through recursion' 253s NOTE: There were 1 pages checked through recursion 253s + [[ 0 -eq 1 ]] 253s + echo --------------------------------------------------------------------- 253s --------------------------------------------------------------------- 253s + echo 'NOTE: Displaying some page view statistics for PHP pages only' 253s NOTE: Displaying some page view statistics for PHP pages only 253s + echo --------------------------------------------------------------------- 253s --------------------------------------------------------------------- 253s + echo 'NOTE: Page Clicks' 253s NOTE: Page Clicks 253s + echo --------------------------------------------------------------------- 253s --------------------------------------------------------------------- 253s + awk '{print $7}' 253s + awk '-F?' '{print $1}' 253s + grep -v index.php 253s + sort 253s + grep php 253s + uniq -c 253s + awk '{printf("NOTE: %-57s %5d\n", $2, $1)}' 253s + echo --------------------------------------------------------------------- 253s --------------------------------------------------------------------- 253s + echo 'NOTE: Checking Cacti Log for Errors' 253s NOTE: Checking Cacti Log for Errors 253s ++ grep -v -e 'AUTH LOGIN: User '\''admin'\'' authenticated' -e 'WEBUI NOTE: Poller Resource Cache scheduled for rebuild by user admin' -e 'WEBUI NOTE: Poller Cache repopulated by user admin' -e 'WEBUI NOTE: Cacti DS Stats purged by user admin' -e 'IMPORT NOTE: File is Signed Correctly' -e 'MAILER INFO:' -e STATS: -e 'IMPORT Importing XML Data for ' -e 'CMDPHP SQL Backtrace: ' -e 'CMDPHP Not Already Set' /usr/share/cacti/site/log/cacti.log 253s + FILTERED_LOG= 253s + true 253s + for file in debian/tests/check-CVE-* 253s + echo 253s 253s + echo running check-CVE-2016-3172 253s running check-CVE-2016-3172 253s + source debian/tests/check-CVE-2016-3172 253s ++ postData='action=item_edit&tree_id=1&parent_id=7%20and%20sleep%28100%29&__csrf_magic=' 253s ++ wget --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ '--post-data=action=item_edit&tree_id=1&parent_id=7%20and%20sleep%28100%29&__csrf_magic=' --timeout=10 --tries=1 http://localhost/cacti/tree.php 253s --2025-02-19 11:03:24-- http://localhost/cacti/tree.php 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘tree.php.2’ 253s 253s 0K 100% 70.7M=0s 253s 253s 2025-02-19 11:03:24 (70.7 MB/s) - ‘tree.php.2’ saved [93/93] 253s 253s + for file in debian/tests/check-CVE-* 253s + echo 253s 253s + echo running check-CVE-2017-15194 253s running check-CVE-2017-15194 253s + source debian/tests/check-CVE-2017-15194 253s ++ wget --output-document=/tmp/tmp.N0CzTX636c --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ 'http://localhost/cacti/graph_view.php?action=tree&'\'';window.alert('\''bla'\'');'\''' 253s --2025-02-19 11:03:24-- http://localhost/cacti/graph_view.php?action=tree&';window.alert('bla');' 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘/tmp/tmp.N0CzTX636c’ 253s 253s 0K 100% 31.6M=0s 253s 253s 2025-02-19 11:03:24 (31.6 MB/s) - ‘/tmp/tmp.N0CzTX636c’ saved [93/93] 253s 253s ++ echo -n 'Checking /tmp/tmp.N0CzTX636c for unescaped code (CVE-2017-15194)... ' 253s Checking /tmp/tmp.N0CzTX636c for unescaped code (CVE-2017-15194)... ++ grep -q ';window.alert('\''bla'\'');' /tmp/tmp.N0CzTX636c 253s ++ echo done 253s done 253s + for file in debian/tests/check-CVE-* 253s + echo 253s 253s + echo running check-CVE-2017-16641 253s running check-CVE-2017-16641 253s + source debian/tests/check-CVE-2017-16641 253s ++ postData='tab=path&path_rrdtool=touch%20/tmp/CVE-2017-16641&action=save&path_snmpwalk=/usr/bin/snmpwalk&path_snmpget=/usr/bin/snmpget&path_snmpbulkwalk=/usr/bin/snmpbulkwalk&path_snmpgetnext=/usr/bin/snmpgetnext&path_snmptrap=/usr/bin/snmptrap&path_php_binary=/usr/bin/php&path_cactilog=/var/log/cacti/cacti.log&logrotate_retain=7&path_spine=/usr/sbin/spine&path_spine_config=/etc/cacti/spine.conf&rrd_autoclean_method=1&rrd_achive=/usr/share/cacti/site/rra/archive/&__csrf_magic=' 253s ++ wget --output-document=/tmp/tmp.N0CzTX636c --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ '--post-data=tab=path&path_rrdtool=touch%20/tmp/CVE-2017-16641&action=save&path_snmpwalk=/usr/bin/snmpwalk&path_snmpget=/usr/bin/snmpget&path_snmpbulkwalk=/usr/bin/snmpbulkwalk&path_snmpgetnext=/usr/bin/snmpgetnext&path_snmptrap=/usr/bin/snmptrap&path_php_binary=/usr/bin/php&path_cactilog=/var/log/cacti/cacti.log&logrotate_retain=7&path_spine=/usr/sbin/spine&path_spine_config=/etc/cacti/spine.conf&rrd_autoclean_method=1&rrd_achive=/usr/share/cacti/site/rra/archive/&__csrf_magic=' http://localhost/cacti/settings.php 253s --2025-02-19 11:03:24-- http://localhost/cacti/settings.php 253s Resolving localhost (localhost)... ::1, 127.0.0.1 253s Connecting to localhost (localhost)|::1|:80... connected. 253s HTTP request sent, awaiting response... 200 OK 253s Length: 93 [text/html] 253s Saving to: ‘/tmp/tmp.N0CzTX636c’ 253s 253s 0K 100% 75.2M=0s 253s 253s 2025-02-19 11:03:24 (75.2 MB/s) - ‘/tmp/tmp.N0CzTX636c’ saved [93/93] 253s 253s ++ php /usr/share/cacti/site/poller.php 254s 02/19/2025 11:03:25 - SYSTEM STATS: Time:0.1088 Method:cmd.php Processes:1 Threads:1 Hosts:0 HostsPerProcess:0 DataSources:0 RRDsProcessed:0 254s ++ '[' -f /tmp/CVE-2017-16641 ']' 254s + for file in debian/tests/check-CVE-* 254s + echo 254s 254s + echo running check-CVE-2017-16660 254s running check-CVE-2017-16660 254s + source debian/tests/check-CVE-2017-16660 254s ++ mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'update cacti.settings set value='\''/var/lib/cacti/rra/shell.php'\'' where name='\''path_cactilog'\'' ;' cacti 254s ++ wget --output-document=/tmp/tmp.N0CzTX636c --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ --header 'Client-ip: ' http://localhost/cacti/remote_agent.php 254s --2025-02-19 11:03:25-- http://localhost/cacti/remote_agent.php 254s Resolving localhost (localhost)... ::1, 127.0.0.1 254s Connecting to localhost (localhost)|::1|:80... connected. 254s HTTP request sent, awaiting response... 200 OK 254s Length: 79 [text/html] 254s Saving to: ‘/tmp/tmp.N0CzTX636c’ 254s 254s 0K 100% 36.4M=0s 254s 254s 2025-02-19 11:03:25 (36.4 MB/s) - ‘/tmp/tmp.N0CzTX636c’ saved [79/79] 254s 254s ++ echo -n 'Checking for CVE-2017-16660 ... ' 254s Checking for CVE-2017-16660 ... ++ '[' -f /var/lib/cacti/rra/shell.php ']' 254s ++ grep -q '' /var/lib/cacti/rra/shell.php 254s ++ echo done 254s done 254s ++ mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'update cacti.settings set value='\''/usr/share/cacti/log/cacti.log'\'' where name='\''path_cactilog'\'' ;' cacti 254s + for file in debian/tests/check-CVE-* 254s + echo 254s 254s + echo running check-CVE-2017-16661 254s running check-CVE-2017-16661 254s + source debian/tests/check-CVE-2017-16661 254s ++ mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'update cacti.settings set value='\''/etc/cacti.log'\'' where name='\''path_cactilog'\'' ;' cacti 254s ++ wget --output-document=/tmp/tmp.N0CzTX636c --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ 'http://localhost/cacti/clog.php?rfilter=&reverse=1&refresh=60&message_type=-1&tail_lines=500&filename=passwd' 254s --2025-02-19 11:03:25-- http://localhost/cacti/clog.php?rfilter=&reverse=1&refresh=60&message_type=-1&tail_lines=500&filename=passwd 254s Resolving localhost (localhost)... ::1, 127.0.0.1 254s Connecting to localhost (localhost)|::1|:80... connected. 254s HTTP request sent, awaiting response... 200 OK 254s Length: 93 [text/html] 254s Saving to: ‘/tmp/tmp.N0CzTX636c’ 254s 254s 0K 100% 55.1M=0s 254s 254s 2025-02-19 11:03:25 (55.1 MB/s) - ‘/tmp/tmp.N0CzTX636c’ saved [93/93] 254s 254s ++ echo -n 'Checking /tmp/tmp.N0CzTX636c for /etc/passwd content (CVE-2017-16661) ... ' 254s Checking /tmp/tmp.N0CzTX636c for /etc/passwd content (CVE-2017-16661) ... ++ grep -q root:x:0:0 /tmp/tmp.N0CzTX636c 254s ++ echo done 254s done 254s ++ mysql -ucacti -pVVT0QupPQN9S -hlocalhost -e 'update cacti.settings set value='\''/usr/share/cacti/site/log/cacti.log'\'' where name='\''path_cactilog'\'' ;' cacti 254s + for file in debian/tests/check-CVE-* 254s + echo 254s 254s + echo running check-CVE-2017-16785 254s running check-CVE-2017-16785 254s + source debian/tests/check-CVE-2017-16785 254s ++ wget --output-document=/tmp/tmp.N0CzTX636c --load-cookies /tmp/tmp.qZfm3LD4eJ --keep-session-cookies --save-cookies /tmp/tmp.qZfm3LD4eJ 'http://localhost/cacti/host.php/gahv8'\''-alert('\''this_is_bad'\'')-'\''w6vt7??host_status=-1&host_template_id=-1&site_id=-1&poller_id=-1&rows=-1&filter=' 254s --2025-02-19 11:03:25-- http://localhost/cacti/host.php/gahv8'-alert('this_is_bad')-'w6vt7??host_status=-1&host_template_id=-1&site_id=-1&poller_id=-1&rows=-1&filter= 254s Resolving localhost (localhost)... ::1, 127.0.0.1 254s Connecting to localhost (localhost)|::1|:80... connected. 254s HTTP request sent, awaiting response... 200 OK 254s Length: unspecified [text/html] 254s Saving to: ‘/tmp/tmp.N0CzTX636c’ 254s 254s 0K .......... .... 130M=0s 254s 254s 2025-02-19 11:03:25 (130 MB/s) - ‘/tmp/tmp.N0CzTX636c’ saved [14489] 254s 254s ++ echo -n 'Checking /tmp/tmp.N0CzTX636c for XSS content (CVE-2017-16785) ... ' 254s Checking /tmp/tmp.N0CzTX636c for XSS content (CVE-2017-16785) ... ++ grep -q '-alert('\''this_is_bad'\'')-' /tmp/tmp.N0CzTX636c 254s ++ echo done 254s done 254s + save_log_files 254s + echo --------------------------------------------------------------------- 254s --------------------------------------------------------------------- 254s + echo 'Saving All Log Files' 254s Saving All Log Files 254s + echo --------------------------------------------------------------------- 254s --------------------------------------------------------------------- 254s + '[' 1 == 1 ']' 254s ++ date +%s 254s + logBase=/tmp/check-all-pages/test.1739963005 254s + mkdir -p /tmp/check-all-pages/test.1739963005 254s + echo 'NOTE: Copying /usr/share/cacti/site/log/cacti.log to artifacts' 254s NOTE: Copying /usr/share/cacti/site/log/cacti.log to artifacts 254s + cp /usr/share/cacti/site/log/cacti.log /tmp/check-all-pages/test.1739963005/cacti.log 254s + cp /usr/share/cacti/site/log/cacti.stderr.log /tmp/check-all-pages/test.1739963005/cacti_error.log 254s + '[' -f /var/log/apache2/access.log ']' 254s + echo 'NOTE: Copying {/var/log/apache2/access.log} to artifacts' 254s NOTE: Copying {/var/log/apache2/access.log} to artifacts 254s + cp /var/log/apache2/access.log /tmp/check-all-pages/test.1739963005/apache_access.log 254s + '[' -f /var/log/apache2/error.log ']' 254s + echo 'NOTE: Copying /var/log/apache2/error.log to artifacts' 254s NOTE: Copying /var/log/apache2/error.log to artifacts 254s + cp -f /var/log/apache2/error.log /tmp/check-all-pages/test.1739963005/apache_error.log 254s + '[' -f /tmp/tmp.ptVNJYAE6n ']' 254s + echo 'NOTE: Copying /tmp/tmp.ptVNJYAE6n to artifacts' 254s NOTE: Copying /tmp/tmp.ptVNJYAE6n to artifacts 254s + cp -f /tmp/tmp.ptVNJYAE6n /tmp/check-all-pages/test.1739963005/wget_error.log 254s + chmod a+r -R /tmp/check-all-pages/test.1739963005/ 254s + '[' 0 -eq 1 ']' 254s + error=0 254s + '[' -n '' ']' 254s + echo 'NOTE: Success No unexpected output in /usr/share/cacti/site/log/cacti.log' 254s NOTE: Success No unexpected output in /usr/share/cacti/site/log/cacti.log 254s + exit 0 254s /tmp/autopkgtest.ysJYGH/wrapper.sh: checking for leaked background processes... 254s /tmp/autopkgtest.ysJYGH/wrapper.sh: waiting for tee/cat subprocesses... 254s /tmp/autopkgtest.ysJYGH/wrapper.sh: cleaning up... 254s /tmp/autopkgtest.ysJYGH/wrapper.sh: Exit status: 0 254s autopkgtest: DBG: testbed command exited with code 0 255s autopkgtest [11:03:26]: test check-all-pages-with-mariadb: -----------------------] 255s autopkgtest: DBG: testbed executing test finished with exit status 0 255s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stdout /tmp/autopkgtest-work.hhfgazt4/out/check-all-pages-with-mariadb-stdout 255s autopkgtest: DBG: got reply from testbed: ok 255s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-stderr /tmp/autopkgtest-work.hhfgazt4/out/check-all-pages-with-mariadb-stderr 255s autopkgtest: DBG: got reply from testbed: ok 255s autopkgtest [11:03:26]: test check-all-pages-with-mariadb: - - - - - - - - - - results - - - - - - - - - - 255s check-all-pages-with-mariadb PASS 255s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-artifacts/ /tmp/autopkgtest-work.hhfgazt4/out/artifacts/ 255s autopkgtest: DBG: got reply from testbed: ok 255s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ysJYGH/check-all-pages-with-mariadb-artifacts', '/tmp/autopkgtest.ysJYGH/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 255s autopkgtest: DBG: testbed command exited with code 0 255s autopkgtest [11:03:26]: test check-all-pages-with-mysql: preparing testbed 255s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['mariadb-server', 'cacti', 'wget', 'apache2'], deps_new=['mysql-server', 'cacti', 'wget', 'apache2'] 255s autopkgtest: DBG: testbed reset 255s autopkgtest: DBG: sending command to testbed: revert 325s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ysJYGH 325s autopkgtest: DBG: sending command to testbed: print-execute-command 325s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.d3dki18o/runcmd 325s autopkgtest: DBG: sending command to testbed: capabilities 325s autopkgtest: DBG: got reply from testbed: ok root-on-testbed ok revert-full-system suggested-normal-user=ubuntu reboot isolation-machine revert 325s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'ok', 'revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert', 'has_internet'] 325s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ysJYGH/wrapper.sh 326s autopkgtest: DBG: got reply from testbed: ok 326s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/wrapper.sh'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest [11:04:37]: testbed dpkg architecture: s390x 326s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest [11:04:37]: testbed apt version: 2.9.30 326s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: testbed has eatmydata 326s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest [11:04:38]: @@@@@@@@@@@@@@@@@@@@ test bed setup 327s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest [11:04:38]: testbed release detected to be: plucky 327s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: adding APT source: Types: deb deb-src 327s URIs: http://ftpmaster.internal/ubuntu/ 327s Suites: plucky-proposed 327s Components: main restricted universe multiverse 327s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 327s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 327s Package: * 327s Pin: release plucky-proposed 327s Pin-Priority: 500 327s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest [11:04:38]: updating testbed package index (apt update) 327s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 328s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 328s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 328s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 328s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 328s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 328s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 328s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 328s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 328s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 328s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 328s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 328s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 329s Fetched 1700 kB in 1s (1851 kB/s) 329s Reading package lists... 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 329s Package: * 329s Pin: release plucky-proposed 329s Pin-Priority: 100 329s 329s Package: src:apache2:any 329s Pin: release plucky-proposed 329s Pin-Priority: 995 329s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:apache2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.ysJYGH/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 330s + lsb_release --codename --short 330s + RELEASE=plucky 330s + cat 330s + [ plucky != trusty ] 330s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 330s Reading package lists... 330s Building dependency tree... 330s Reading state information... 330s Calculating upgrade... 330s The following packages were automatically installed and are no longer required: 330s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 330s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 330s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 330s linux-tools-6.11.0-8-generic 330s Use 'sudo apt autoremove' to remove them. 330s The following packages will be upgraded: 330s iproute2 liblsof0 libp11-kit0 lsof 330s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 330s Need to get 1791 kB of archives. 330s After this operation, 17.4 kB of additional disk space will be used. 330s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 331s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 331s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 331s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 331s Preconfiguring packages ... 331s Fetched 1791 kB in 1s (2681 kB/s) 331s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 331s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 331s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 331s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 331s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 331s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 331s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 331s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 331s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 331s Setting up liblsof0 (4.99.4+dfsg-1) ... 331s Setting up iproute2 (6.13.0-1ubuntu1) ... 332s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 332s Setting up lsof (4.99.4+dfsg-1) ... 332s Processing triggers for man-db (2.13.0-1) ... 332s Processing triggers for libc-bin (2.40-4ubuntu1) ... 332s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 332s + /usr/lib/apt/apt-helper analyze-pattern ?true 332s + uname -r 332s + sed s/\./\\./g 332s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 332s + apt list ?obsolete 332s + tail -n+2 332s + cut -d/ -f1 332s + grep -v ^linux-.*6\.12\.0-15-generic.* 333s + true 333s + obsolete_pkgs= 333s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 333s Reading package lists... 333s Building dependency tree... 333s Reading state information... 333s The following packages will be REMOVED: 333s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 333s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 333s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 333s linux-tools-6.11.0-8-generic* 333s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 333s After this operation, 167 MB disk space will be freed. 333s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 333s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 333s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 333s Removing libpython3.12t64:s390x (3.12.9-1) ... 333s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 333s Removing libnsl2:s390x (1.3.0-3build3) ... 333s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 333s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 333s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 336s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 336s Processing triggers for libc-bin (2.40-4ubuntu1) ... 336s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 336s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 336s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 336s + grep -q trusty /etc/lsb-release 336s + [ ! -d /usr/share/doc/unattended-upgrades ] 336s + [ ! -d /usr/share/doc/lxd ] 336s + [ ! -d /usr/share/doc/lxd-client ] 336s + [ ! -d /usr/share/doc/snapd ] 336s + type iptables 336s + cat 336s + chmod 755 /etc/rc.local 336s + . /etc/rc.local 336s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 336s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 336s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 336s + uname -m 336s + [ s390x = ppc64le ] 336s + [ -d /run/systemd/system ] 336s + systemd-detect-virt --quiet --vm 336s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 336s + cat 336s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 336s + echo COMPRESS=lz4 336s autopkgtest: DBG: testbed command exited with code 0 336s autopkgtest [11:04:47]: upgrading testbed (apt dist-upgrade and autopurge) 336s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 336s Reading package lists... 336s Building dependency tree... 336s Reading state information... 337s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 337s Starting 2 pkgProblemResolver with broken count: 0 337s Done 337s Entering ResolveByKeep 337s 337s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 337s Reading package lists... 337s Building dependency tree... 337s Reading state information... 338s Starting pkgProblemResolver with broken count: 0 338s Starting 2 pkgProblemResolver with broken count: 0 338s Done 338s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.ysJYGH/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 338s autopkgtest: DBG: testbed command exited with code 1 338s autopkgtest [11:04:49]: rebooting testbed after setup commands that affected boot 338s autopkgtest: DBG: sending command to testbed: reboot 357s autopkgtest: DBG: got reply from testbed: ok 357s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 357s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 357s autopkgtest: DBG: testbed command exited with code 0 357s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot 358s autopkgtest: DBG: got reply from testbed: ok 358s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare 358s autopkgtest: DBG: got reply from testbed: ok 358s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ysJYGH/testbed-packages"], kind short, sout raw, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/testbed-packages /tmp/autopkgtest-work.hhfgazt4/out/testbed-packages 359s autopkgtest: DBG: got reply from testbed: ok 359s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 359s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot 360s autopkgtest: DBG: got reply from testbed: ok 360s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare 361s autopkgtest: DBG: got reply from testbed: ok 361s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 361s autopkgtest: DBG: install_deps: deps_new=['mysql-server', 'cacti', 'wget', 'apache2'] 361s autopkgtest: DBG: install-deps: satisfying mysql-server, cacti, wget, apache2 361s autopkgtest: DBG: can use apt-get on testbed: True 361s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'mysql-server, cacti, wget, apache2'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 362s Reading package lists... 362s Building dependency tree... 362s Reading state information... 362s Starting pkgProblemResolver with broken count: 0 362s Starting 2 pkgProblemResolver with broken count: 0 362s Done 362s The following NEW packages will be installed: 362s apache2 apache2-bin apache2-data apache2-utils cacti dbconfig-common 362s dbconfig-mysql fontconfig fontconfig-config fonts-dejavu-core 362s fonts-dejavu-extra fonts-dejavu-mono fonts-fork-awesome javascript-common 362s libaom3 libapache2-mod-php libapache2-mod-php8.3 libapr1t64 362s libaprutil1-dbd-sqlite3 libaprutil1-ldap libaprutil1t64 libargon2-1 362s libcairo2 libdatrie1 libdbi1t64 libde265-0 libdeflate0 libfontconfig1 362s libfreetype6 libgd3 libgomp1 libgraphite2-3 libharfbuzz0b 362s libheif-plugin-aomdec libheif-plugin-libde265 libheif1 libimagequant0 362s libjbig0 libjpeg-turbo8 libjpeg8 libjs-chart.js libjs-d3-format libjs-jquery 362s libjs-jquery-colorpicker libjs-jquery-cookie libjs-jquery-hotkeys 362s libjs-jquery-jstree libjs-jquery-metadata libjs-jquery-tablesorter 362s libjs-jquery-timepicker libjs-jquery-ui libjs-jquery-ui-theme-smoothness 362s libjs-jquery-ui-theme-south-street libjs-jquery-ui-theme-ui-darkness 362s libjs-jquery-ui-touch-punch liblua5.4-0 libmecab2 libpango-1.0-0 362s libpangocairo-1.0-0 libpangoft2-1.0-0 libphp-phpmailer libpixman-1-0 362s libprotobuf-lite32t64 libraqm0 librrd8t64 libsharpyuv0 libsnmp-base 362s libsnmp40t64 libsodium23 libthai-data libthai0 libtiff6 libwebp7 362s libxcb-render0 libxcb-shm0 libxpm4 libxrender1 libxslt1.1 mysql-client 362s mysql-client-core mysql-common mysql-server mysql-server-core node-commander 362s node-d3 node-d3-array node-d3-axis node-d3-brush node-d3-chord 362s node-d3-collection node-d3-color node-d3-contour node-d3-dispatch 362s node-d3-drag node-d3-dsv node-d3-ease node-d3-fetch node-d3-force 362s node-d3-format node-d3-geo node-d3-hierarchy node-d3-interpolate 362s node-d3-path node-d3-polygon node-d3-quadtree node-d3-queue node-d3-random 362s node-d3-scale node-d3-scale-chromatic node-d3-selection node-d3-shape 362s node-d3-time node-d3-time-format node-d3-timer node-d3-transition 362s node-d3-voronoi node-d3-zoom node-dompurify node-iconv-lite node-rw 362s node-safe-buffer node-ua-parser-js php-common php-gd php-gmp php-ldap 362s php-mbstring php-mysql php-phpmyadmin-motranslator php-phpseclib 362s php-psr-cache php-psr-container php-psr-log php-snmp php-symfony-cache 362s php-symfony-cache-contracts php-symfony-deprecation-contracts 362s php-symfony-expression-language php-symfony-service-contracts 362s php-symfony-var-exporter php-twig php-xml php8.3-cli php8.3-common php8.3-gd 362s php8.3-gmp php8.3-ldap php8.3-mbstring php8.3-mysql php8.3-opcache 362s php8.3-readline php8.3-snmp php8.3-xml rrdtool snmp 362s 0 upgraded, 155 newly installed, 0 to remove and 0 not upgraded. 362s Need to get 71.5 MB of archives. 362s After this operation, 328 MB of additional disk space will be used. 362s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapr1t64 s390x 1.7.5-1 [114 kB] 362s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1t64 s390x 1.6.3-3ubuntu2 [98.4 kB] 363s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-dbd-sqlite3 s390x 1.6.3-3ubuntu2 [11.7 kB] 363s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-ldap s390x 1.6.3-3ubuntu2 [9064 B] 363s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 363s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-bin s390x 2.4.63-1ubuntu1 [1414 kB] 363s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-data all 2.4.63-1ubuntu1 [163 kB] 363s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-utils s390x 2.4.63-1ubuntu1 [102 kB] 363s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2 s390x 2.4.63-1ubuntu1 [90.4 kB] 363s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 363s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-client-core s390x 8.4.4-0ubuntu1 [2223 kB] 363s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-client s390x 8.4.4-0ubuntu1 [9104 B] 363s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmecab2 s390x 0.996-15.1build1 [214 kB] 363s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-lite32t64 s390x 3.21.12-10build1 [238 kB] 363s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-server-core s390x 8.4.4-0ubuntu1 [20.1 MB] 364s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-server s390x 8.4.4-0ubuntu1 [1368 kB] 364s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-common all 2.0.24 [596 kB] 364s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-mysql all 2.0.24 [938 B] 364s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 364s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 364s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 364s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 364s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 364s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 364s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-extra all 2.37-8 [1947 kB] 364s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-fork-awesome all 1.2.0+ds1-1 [603 kB] 364s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 364s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 365s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x php-common all 2:93ubuntu2 [13.9 kB] 365s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-common s390x 8.3.11-0ubuntu4 [745 kB] 365s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-opcache s390x 8.3.11-0ubuntu4 [78.0 kB] 365s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-readline s390x 8.3.11-0ubuntu4 [13.9 kB] 365s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libargon2-1 s390x 0~20190702+dfsg-4build1 [54.1 kB] 365s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 365s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-cli s390x 8.3.11-0ubuntu4 [1940 kB] 365s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libapache2-mod-php8.3 s390x 8.3.11-0ubuntu4 [1871 kB] 365s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libapache2-mod-php all 2:8.3+93ubuntu2 [4224 B] 365s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 365s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 365s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 365s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 365s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 365s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 365s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi1t64 s390x 0.9.0-6.1build1 [27.0 kB] 365s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 365s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 365s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 365s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 365s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 365s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 365s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 365s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 365s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 365s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 365s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 365s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 365s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 365s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 365s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 365s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 365s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 365s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 365s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-chart.js all 3.9.1+~cs3.1.2-3 [199 kB] 365s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 365s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 365s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-colorpicker all 1.2.20-4 [194 kB] 365s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-cookie all 12-4 [6484 B] 365s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-jstree all 3.3.16+dfsg1-1 [105 kB] 365s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-metadata all 12-4 [6582 B] 365s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-tablesorter all 1:2.31.3+dfsg1-4 [192 kB] 365s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-timepicker all 1.6.3-6 [50.2 kB] 365s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-smoothness all 1.12.1+dfsg-1.1 [23.7 kB] 365s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-south-street all 1.12.1+dfsg-1.1 [29.4 kB] 365s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-ui-darkness all 1.12.1+dfsg-1.1 [27.6 kB] 365s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 365s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 365s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 365s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 365s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 365s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libphp-phpmailer all 6.9.1-1 [87.9 kB] 365s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x librrd8t64 s390x 1.7.2-4.2ubuntu1 [181 kB] 365s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp-base all 5.9.4+dfsg-1.1ubuntu6 [206 kB] 365s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp40t64 s390x 5.9.4+dfsg-1.1ubuntu6 [1055 kB] 365s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 365s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-array all 3.2.0+~cs5.0.6-2 [45.1 kB] 365s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-axis all 1.0.12+~1.0.16-1 [14.1 kB] 365s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-dispatch all 1.0.6+~1.0.9-1 [9774 B] 365s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-selection all 1.4.1+~1.4.3-1 [42.8 kB] 365s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-drag all 1.2.5+~1.2.5-1 [19.1 kB] 365s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-color all 1.4.1+~1.4.2-1 [19.9 kB] 365s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-interpolate all 1.4.0+~1.4.2-1 [24.0 kB] 365s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-ease all 1.0.7+~1.0.11-1 [12.5 kB] 365s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-timer all 1.0.10+~1.0.10-1 [10.6 kB] 365s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-transition all 1.3.2+~1.3.2-1 [28.7 kB] 365s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-brush all 1.1.6+~1.1.5-1 [181 kB] 365s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-path all 1.0.9+~1.0.9-1 [10.5 kB] 365s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-chord all 1.0.6+~1.0.11-1 [14.2 kB] 365s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-collection all 1.0.7+~1.0.10-1 [17.2 kB] 365s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-contour all 1.3.2+~1.3.3-1 [17.7 kB] 365s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.8 kB] 365s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x node-iconv-lite all 0.6.3-3 [158 kB] 366s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-queue all 3.0.7-13 [10.2 kB] 366s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x node-rw all 1.3.3-5 [7570 B] 366s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x node-commander all 9.4.1-1 [50.6 kB] 366s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-dsv all 1.2.0+~1.2.3-1 [17.7 kB] 366s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-fetch all 1.2.0+~1.2.2-1 [10.1 kB] 366s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-quadtree all 1.0.7+~1.0.9-1 [16.6 kB] 366s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-force all 2.1.1+~2.1.4-1 [30.9 kB] 366s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-d3-format all 1:1.4.5+~1.4.2-2 [18.2 kB] 366s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-format all 1:1.4.5+~1.4.2-2 [11.1 kB] 366s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-geo all 1.12.1+~1.12.4-1 [67.3 kB] 366s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-hierarchy all 1.1.9+~1.1.8-1 [35.1 kB] 366s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-polygon all 1.0.6+~1.0.8-1 [8744 B] 366s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-random all 1.1.2+~1.1.3-1 [9140 B] 366s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-time all 1.1.0+~1.1.1-1 [19.2 kB] 366s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-time-format all 2.3.0+~2.3.1-1 [23.8 kB] 366s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-scale all 2.2.2+~2.2.6-1 [43.4 kB] 366s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-scale-chromatic all 1.5.0+~1.5.1-1 [23.5 kB] 366s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-shape all 1.3.7+~1.3.8-1 [56.0 kB] 366s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-voronoi all 1.1.4+~1.1.9-1 [20.5 kB] 366s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-zoom all 1.8.3+~1.8.4-1 [27.2 kB] 366s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3 all 5.16.0+~cs5.28.10-2 [197 kB] 366s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x node-dompurify all 3.1.7+dfsg+~3.0.5-1 [73.3 kB] 366s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ua-parser-js all 0.8.1+ds+~0.7.36-3 [30.1 kB] 366s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-gd s390x 8.3.11-0ubuntu4 [30.6 kB] 366s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x php-gd all 2:8.3+93ubuntu2 [1830 B] 366s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-gmp s390x 8.3.11-0ubuntu4 [22.9 kB] 366s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x php-gmp all 2:8.3+93ubuntu2 [1834 B] 366s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-ldap s390x 8.3.11-0ubuntu4 [34.1 kB] 366s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x php-ldap all 2:8.3+93ubuntu2 [1836 B] 366s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mbstring s390x 8.3.11-0ubuntu4 [523 kB] 366s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x php-mbstring all 2:8.3+93ubuntu2 [1848 B] 366s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mysql s390x 8.3.11-0ubuntu4 [133 kB] 366s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x php-mysql all 2:8.3+93ubuntu2 [1838 B] 366s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-deprecation-contracts all 3.5.2-5 [6146 B] 366s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-cache all 3.0.0-4 [5834 B] 366s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-log all 3.0.2-2 [6682 B] 366s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-cache-contracts all 3.5.2-5 [8636 B] 366s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-container all 2.0.2-1 [3878 B] 366s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-service-contracts all 3.5.2-5 [7650 B] 366s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-var-exporter all 6.4.10+dfsg-1ubuntu1 [35.3 kB] 366s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-cache all 6.4.10+dfsg-1ubuntu1 [69.8 kB] 366s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-expression-language all 6.4.10+dfsg-1ubuntu1 [23.3 kB] 366s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phpmyadmin-motranslator all 5.3.1-1 [15.1 kB] 366s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phpseclib all 2.0.48-2 [205 kB] 366s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-snmp s390x 8.3.11-0ubuntu4 [23.7 kB] 366s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x php-snmp all 2:8.3+93ubuntu2 [1840 B] 366s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x php-twig all 3.8.0-3 [86.8 kB] 366s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-xml s390x 8.3.11-0ubuntu4 [129 kB] 366s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x php-xml all 2:8.3+93ubuntu2 [1856 B] 366s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x snmp s390x 5.9.4+dfsg-1.1ubuntu6 [186 kB] 366s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-hotkeys all 0.2.0-1 [13.3 kB] 366s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-touch-punch all 0.0~git20141218.2.4bc0091+dfsg1-4.1 [4744 B] 367s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x rrdtool s390x 1.7.2-4.2ubuntu1 [362 kB] 367s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x cacti all 1.2.28+ds1-3ubuntu1 [23.3 MB] 368s Preconfiguring packages ... 368s Fetched 71.5 MB in 5s (13.3 MB/s) 368s Selecting previously unselected package libapr1t64:s390x. 368s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 368s Preparing to unpack .../00-libapr1t64_1.7.5-1_s390x.deb ... 368s Unpacking libapr1t64:s390x (1.7.5-1) ... 368s Selecting previously unselected package libaprutil1t64:s390x. 368s Preparing to unpack .../01-libaprutil1t64_1.6.3-3ubuntu2_s390x.deb ... 368s Unpacking libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 368s Selecting previously unselected package libaprutil1-dbd-sqlite3:s390x. 368s Preparing to unpack .../02-libaprutil1-dbd-sqlite3_1.6.3-3ubuntu2_s390x.deb ... 368s Unpacking libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 368s Selecting previously unselected package libaprutil1-ldap:s390x. 368s Preparing to unpack .../03-libaprutil1-ldap_1.6.3-3ubuntu2_s390x.deb ... 368s Unpacking libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 368s Selecting previously unselected package liblua5.4-0:s390x. 368s Preparing to unpack .../04-liblua5.4-0_5.4.7-1_s390x.deb ... 368s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 368s Selecting previously unselected package apache2-bin. 368s Preparing to unpack .../05-apache2-bin_2.4.63-1ubuntu1_s390x.deb ... 368s Unpacking apache2-bin (2.4.63-1ubuntu1) ... 368s Selecting previously unselected package apache2-data. 368s Preparing to unpack .../06-apache2-data_2.4.63-1ubuntu1_all.deb ... 368s Unpacking apache2-data (2.4.63-1ubuntu1) ... 368s Selecting previously unselected package apache2-utils. 368s Preparing to unpack .../07-apache2-utils_2.4.63-1ubuntu1_s390x.deb ... 368s Unpacking apache2-utils (2.4.63-1ubuntu1) ... 368s Selecting previously unselected package apache2. 368s Preparing to unpack .../08-apache2_2.4.63-1ubuntu1_s390x.deb ... 368s Unpacking apache2 (2.4.63-1ubuntu1) ... 368s Selecting previously unselected package mysql-common. 368s Preparing to unpack .../09-mysql-common_5.8+1.1.1_all.deb ... 368s Unpacking mysql-common (5.8+1.1.1) ... 368s Selecting previously unselected package mysql-client-core. 368s Preparing to unpack .../10-mysql-client-core_8.4.4-0ubuntu1_s390x.deb ... 368s Unpacking mysql-client-core (8.4.4-0ubuntu1) ... 369s Selecting previously unselected package mysql-client. 369s Preparing to unpack .../11-mysql-client_8.4.4-0ubuntu1_s390x.deb ... 369s Unpacking mysql-client (8.4.4-0ubuntu1) ... 369s Selecting previously unselected package libmecab2:s390x. 369s Preparing to unpack .../12-libmecab2_0.996-15.1build1_s390x.deb ... 369s Unpacking libmecab2:s390x (0.996-15.1build1) ... 369s Selecting previously unselected package libprotobuf-lite32t64:s390x. 369s Preparing to unpack .../13-libprotobuf-lite32t64_3.21.12-10build1_s390x.deb ... 369s Unpacking libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 369s Selecting previously unselected package mysql-server-core. 369s Preparing to unpack .../14-mysql-server-core_8.4.4-0ubuntu1_s390x.deb ... 369s Unpacking mysql-server-core (8.4.4-0ubuntu1) ... 369s Setting up mysql-common (5.8+1.1.1) ... 369s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 369s Selecting previously unselected package mysql-server. 369s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 56842 files and directories currently installed.) 369s Preparing to unpack .../000-mysql-server_8.4.4-0ubuntu1_s390x.deb ... 369s Unpacking mysql-server (8.4.4-0ubuntu1) ... 369s Selecting previously unselected package dbconfig-common. 369s Preparing to unpack .../001-dbconfig-common_2.0.24_all.deb ... 369s Unpacking dbconfig-common (2.0.24) ... 369s Selecting previously unselected package dbconfig-mysql. 369s Preparing to unpack .../002-dbconfig-mysql_2.0.24_all.deb ... 369s Unpacking dbconfig-mysql (2.0.24) ... 369s Selecting previously unselected package libfreetype6:s390x. 369s Preparing to unpack .../003-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 369s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 369s Selecting previously unselected package fonts-dejavu-mono. 369s Preparing to unpack .../004-fonts-dejavu-mono_2.37-8_all.deb ... 369s Unpacking fonts-dejavu-mono (2.37-8) ... 369s Selecting previously unselected package fonts-dejavu-core. 369s Preparing to unpack .../005-fonts-dejavu-core_2.37-8_all.deb ... 369s Unpacking fonts-dejavu-core (2.37-8) ... 369s Selecting previously unselected package fontconfig-config. 369s Preparing to unpack .../006-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 370s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 370s Selecting previously unselected package libfontconfig1:s390x. 370s Preparing to unpack .../007-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 370s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 370s Selecting previously unselected package fontconfig. 370s Preparing to unpack .../008-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 370s Unpacking fontconfig (2.15.0-2ubuntu1) ... 370s Selecting previously unselected package fonts-dejavu-extra. 370s Preparing to unpack .../009-fonts-dejavu-extra_2.37-8_all.deb ... 370s Unpacking fonts-dejavu-extra (2.37-8) ... 370s Selecting previously unselected package fonts-fork-awesome. 370s Preparing to unpack .../010-fonts-fork-awesome_1.2.0+ds1-1_all.deb ... 370s Unpacking fonts-fork-awesome (1.2.0+ds1-1) ... 370s Selecting previously unselected package javascript-common. 370s Preparing to unpack .../011-javascript-common_11+nmu1_all.deb ... 370s Unpacking javascript-common (11+nmu1) ... 370s Selecting previously unselected package libaom3:s390x. 370s Preparing to unpack .../012-libaom3_3.12.0-1_s390x.deb ... 370s Unpacking libaom3:s390x (3.12.0-1) ... 370s Selecting previously unselected package php-common. 370s Preparing to unpack .../013-php-common_2%3a93ubuntu2_all.deb ... 370s Unpacking php-common (2:93ubuntu2) ... 370s Selecting previously unselected package php8.3-common. 370s Preparing to unpack .../014-php8.3-common_8.3.11-0ubuntu4_s390x.deb ... 370s Unpacking php8.3-common (8.3.11-0ubuntu4) ... 370s Selecting previously unselected package php8.3-opcache. 370s Preparing to unpack .../015-php8.3-opcache_8.3.11-0ubuntu4_s390x.deb ... 370s Unpacking php8.3-opcache (8.3.11-0ubuntu4) ... 370s Selecting previously unselected package php8.3-readline. 370s Preparing to unpack .../016-php8.3-readline_8.3.11-0ubuntu4_s390x.deb ... 370s Unpacking php8.3-readline (8.3.11-0ubuntu4) ... 370s Selecting previously unselected package libargon2-1:s390x. 370s Preparing to unpack .../017-libargon2-1_0~20190702+dfsg-4build1_s390x.deb ... 370s Unpacking libargon2-1:s390x (0~20190702+dfsg-4build1) ... 370s Selecting previously unselected package libsodium23:s390x. 370s Preparing to unpack .../018-libsodium23_1.0.18-1build3_s390x.deb ... 370s Unpacking libsodium23:s390x (1.0.18-1build3) ... 370s Selecting previously unselected package php8.3-cli. 370s Preparing to unpack .../019-php8.3-cli_8.3.11-0ubuntu4_s390x.deb ... 370s Unpacking php8.3-cli (8.3.11-0ubuntu4) ... 370s Selecting previously unselected package libapache2-mod-php8.3. 370s Preparing to unpack .../020-libapache2-mod-php8.3_8.3.11-0ubuntu4_s390x.deb ... 370s Unpacking libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 370s Selecting previously unselected package libapache2-mod-php. 370s Preparing to unpack .../021-libapache2-mod-php_2%3a8.3+93ubuntu2_all.deb ... 370s Unpacking libapache2-mod-php (2:8.3+93ubuntu2) ... 370s Selecting previously unselected package libpixman-1-0:s390x. 370s Preparing to unpack .../022-libpixman-1-0_0.44.0-3_s390x.deb ... 370s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 370s Selecting previously unselected package libxcb-render0:s390x. 370s Preparing to unpack .../023-libxcb-render0_1.17.0-2_s390x.deb ... 370s Unpacking libxcb-render0:s390x (1.17.0-2) ... 370s Selecting previously unselected package libxcb-shm0:s390x. 370s Preparing to unpack .../024-libxcb-shm0_1.17.0-2_s390x.deb ... 370s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 370s Selecting previously unselected package libxrender1:s390x. 370s Preparing to unpack .../025-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 370s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 370s Selecting previously unselected package libcairo2:s390x. 370s Preparing to unpack .../026-libcairo2_1.18.2-2_s390x.deb ... 370s Unpacking libcairo2:s390x (1.18.2-2) ... 370s Selecting previously unselected package libdatrie1:s390x. 370s Preparing to unpack .../027-libdatrie1_0.2.13-3build1_s390x.deb ... 370s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 370s Selecting previously unselected package libdbi1t64:s390x. 370s Preparing to unpack .../028-libdbi1t64_0.9.0-6.1build1_s390x.deb ... 370s Unpacking libdbi1t64:s390x (0.9.0-6.1build1) ... 370s Selecting previously unselected package libde265-0:s390x. 370s Preparing to unpack .../029-libde265-0_1.0.15-1build4_s390x.deb ... 370s Unpacking libde265-0:s390x (1.0.15-1build4) ... 370s Selecting previously unselected package libdeflate0:s390x. 370s Preparing to unpack .../030-libdeflate0_1.23-1_s390x.deb ... 370s Unpacking libdeflate0:s390x (1.23-1) ... 370s Selecting previously unselected package libsharpyuv0:s390x. 370s Preparing to unpack .../031-libsharpyuv0_1.5.0-0.1_s390x.deb ... 370s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 370s Selecting previously unselected package libheif-plugin-aomdec:s390x. 370s Preparing to unpack .../032-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 370s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 370s Selecting previously unselected package libheif-plugin-libde265:s390x. 370s Preparing to unpack .../033-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 370s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 370s Selecting previously unselected package libheif1:s390x. 370s Preparing to unpack .../034-libheif1_1.19.5-1build1_s390x.deb ... 370s Unpacking libheif1:s390x (1.19.5-1build1) ... 370s Selecting previously unselected package libgomp1:s390x. 370s Preparing to unpack .../035-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 370s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 370s Selecting previously unselected package libimagequant0:s390x. 370s Preparing to unpack .../036-libimagequant0_2.18.0-1build1_s390x.deb ... 370s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 370s Selecting previously unselected package libjpeg-turbo8:s390x. 370s Preparing to unpack .../037-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 370s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 370s Selecting previously unselected package libjpeg8:s390x. 370s Preparing to unpack .../038-libjpeg8_8c-2ubuntu11_s390x.deb ... 370s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 370s Selecting previously unselected package libgraphite2-3:s390x. 370s Preparing to unpack .../039-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 370s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 370s Selecting previously unselected package libharfbuzz0b:s390x. 370s Preparing to unpack .../040-libharfbuzz0b_10.2.0-1_s390x.deb ... 370s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 370s Selecting previously unselected package libraqm0:s390x. 370s Preparing to unpack .../041-libraqm0_0.10.2-1_s390x.deb ... 370s Unpacking libraqm0:s390x (0.10.2-1) ... 370s Selecting previously unselected package libjbig0:s390x. 370s Preparing to unpack .../042-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 370s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 370s Selecting previously unselected package libwebp7:s390x. 370s Preparing to unpack .../043-libwebp7_1.5.0-0.1_s390x.deb ... 370s Unpacking libwebp7:s390x (1.5.0-0.1) ... 370s Selecting previously unselected package libtiff6:s390x. 370s Preparing to unpack .../044-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 370s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 370s Selecting previously unselected package libxpm4:s390x. 370s Preparing to unpack .../045-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 370s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 370s Selecting previously unselected package libgd3:s390x. 370s Preparing to unpack .../046-libgd3_2.3.3-12ubuntu3_s390x.deb ... 370s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 370s Selecting previously unselected package libjs-chart.js. 370s Preparing to unpack .../047-libjs-chart.js_3.9.1+~cs3.1.2-3_all.deb ... 370s Unpacking libjs-chart.js (3.9.1+~cs3.1.2-3) ... 370s Selecting previously unselected package libjs-jquery. 370s Preparing to unpack .../048-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 370s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 370s Selecting previously unselected package libjs-jquery-ui. 370s Preparing to unpack .../049-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 370s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 370s Selecting previously unselected package libjs-jquery-colorpicker. 370s Preparing to unpack .../050-libjs-jquery-colorpicker_1.2.20-4_all.deb ... 370s Unpacking libjs-jquery-colorpicker (1.2.20-4) ... 370s Selecting previously unselected package libjs-jquery-cookie. 370s Preparing to unpack .../051-libjs-jquery-cookie_12-4_all.deb ... 370s Unpacking libjs-jquery-cookie (12-4) ... 370s Selecting previously unselected package libjs-jquery-jstree. 370s Preparing to unpack .../052-libjs-jquery-jstree_3.3.16+dfsg1-1_all.deb ... 370s Unpacking libjs-jquery-jstree (3.3.16+dfsg1-1) ... 370s Selecting previously unselected package libjs-jquery-metadata. 370s Preparing to unpack .../053-libjs-jquery-metadata_12-4_all.deb ... 370s Unpacking libjs-jquery-metadata (12-4) ... 370s Selecting previously unselected package libjs-jquery-tablesorter. 370s Preparing to unpack .../054-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-4_all.deb ... 370s Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 370s Selecting previously unselected package libjs-jquery-timepicker. 370s Preparing to unpack .../055-libjs-jquery-timepicker_1.6.3-6_all.deb ... 370s Unpacking libjs-jquery-timepicker (1.6.3-6) ... 370s Selecting previously unselected package libjs-jquery-ui-theme-smoothness. 370s Preparing to unpack .../056-libjs-jquery-ui-theme-smoothness_1.12.1+dfsg-1.1_all.deb ... 370s Unpacking libjs-jquery-ui-theme-smoothness (1.12.1+dfsg-1.1) ... 370s Selecting previously unselected package libjs-jquery-ui-theme-south-street. 370s Preparing to unpack .../057-libjs-jquery-ui-theme-south-street_1.12.1+dfsg-1.1_all.deb ... 370s Unpacking libjs-jquery-ui-theme-south-street (1.12.1+dfsg-1.1) ... 370s Selecting previously unselected package libjs-jquery-ui-theme-ui-darkness. 370s Preparing to unpack .../058-libjs-jquery-ui-theme-ui-darkness_1.12.1+dfsg-1.1_all.deb ... 370s Unpacking libjs-jquery-ui-theme-ui-darkness (1.12.1+dfsg-1.1) ... 370s Selecting previously unselected package libthai-data. 370s Preparing to unpack .../059-libthai-data_0.1.29-2build1_all.deb ... 370s Unpacking libthai-data (0.1.29-2build1) ... 370s Selecting previously unselected package libthai0:s390x. 370s Preparing to unpack .../060-libthai0_0.1.29-2build1_s390x.deb ... 370s Unpacking libthai0:s390x (0.1.29-2build1) ... 370s Selecting previously unselected package libpango-1.0-0:s390x. 370s Preparing to unpack .../061-libpango-1.0-0_1.56.1-1_s390x.deb ... 370s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 370s Selecting previously unselected package libpangoft2-1.0-0:s390x. 370s Preparing to unpack .../062-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 370s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 370s Selecting previously unselected package libpangocairo-1.0-0:s390x. 370s Preparing to unpack .../063-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 370s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 370s Selecting previously unselected package libphp-phpmailer. 370s Preparing to unpack .../064-libphp-phpmailer_6.9.1-1_all.deb ... 370s Unpacking libphp-phpmailer (6.9.1-1) ... 370s Selecting previously unselected package librrd8t64:s390x. 370s Preparing to unpack .../065-librrd8t64_1.7.2-4.2ubuntu1_s390x.deb ... 370s Unpacking librrd8t64:s390x (1.7.2-4.2ubuntu1) ... 370s Selecting previously unselected package libsnmp-base. 370s Preparing to unpack .../066-libsnmp-base_5.9.4+dfsg-1.1ubuntu6_all.deb ... 370s Unpacking libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 370s Selecting previously unselected package libsnmp40t64:s390x. 370s Preparing to unpack .../067-libsnmp40t64_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 370s Unpacking libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 371s Selecting previously unselected package libxslt1.1:s390x. 371s Preparing to unpack .../068-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 371s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 371s Selecting previously unselected package node-d3-array. 371s Preparing to unpack .../069-node-d3-array_3.2.0+~cs5.0.6-2_all.deb ... 371s Unpacking node-d3-array (3.2.0+~cs5.0.6-2) ... 371s Selecting previously unselected package node-d3-axis. 371s Preparing to unpack .../070-node-d3-axis_1.0.12+~1.0.16-1_all.deb ... 371s Unpacking node-d3-axis (1.0.12+~1.0.16-1) ... 371s Selecting previously unselected package node-d3-dispatch. 371s Preparing to unpack .../071-node-d3-dispatch_1.0.6+~1.0.9-1_all.deb ... 371s Unpacking node-d3-dispatch (1.0.6+~1.0.9-1) ... 371s Selecting previously unselected package node-d3-selection. 371s Preparing to unpack .../072-node-d3-selection_1.4.1+~1.4.3-1_all.deb ... 371s Unpacking node-d3-selection (1.4.1+~1.4.3-1) ... 371s Selecting previously unselected package node-d3-drag. 371s Preparing to unpack .../073-node-d3-drag_1.2.5+~1.2.5-1_all.deb ... 371s Unpacking node-d3-drag (1.2.5+~1.2.5-1) ... 371s Selecting previously unselected package node-d3-color. 371s Preparing to unpack .../074-node-d3-color_1.4.1+~1.4.2-1_all.deb ... 371s Unpacking node-d3-color (1.4.1+~1.4.2-1) ... 371s Selecting previously unselected package node-d3-interpolate. 371s Preparing to unpack .../075-node-d3-interpolate_1.4.0+~1.4.2-1_all.deb ... 371s Unpacking node-d3-interpolate (1.4.0+~1.4.2-1) ... 371s Selecting previously unselected package node-d3-ease. 371s Preparing to unpack .../076-node-d3-ease_1.0.7+~1.0.11-1_all.deb ... 371s Unpacking node-d3-ease (1.0.7+~1.0.11-1) ... 371s Selecting previously unselected package node-d3-timer. 371s Preparing to unpack .../077-node-d3-timer_1.0.10+~1.0.10-1_all.deb ... 371s Unpacking node-d3-timer (1.0.10+~1.0.10-1) ... 371s Selecting previously unselected package node-d3-transition. 371s Preparing to unpack .../078-node-d3-transition_1.3.2+~1.3.2-1_all.deb ... 371s Unpacking node-d3-transition (1.3.2+~1.3.2-1) ... 371s Selecting previously unselected package node-d3-brush. 371s Preparing to unpack .../079-node-d3-brush_1.1.6+~1.1.5-1_all.deb ... 371s Unpacking node-d3-brush (1.1.6+~1.1.5-1) ... 371s Selecting previously unselected package node-d3-path. 371s Preparing to unpack .../080-node-d3-path_1.0.9+~1.0.9-1_all.deb ... 371s Unpacking node-d3-path (1.0.9+~1.0.9-1) ... 371s Selecting previously unselected package node-d3-chord. 371s Preparing to unpack .../081-node-d3-chord_1.0.6+~1.0.11-1_all.deb ... 371s Unpacking node-d3-chord (1.0.6+~1.0.11-1) ... 371s Selecting previously unselected package node-d3-collection. 371s Preparing to unpack .../082-node-d3-collection_1.0.7+~1.0.10-1_all.deb ... 371s Unpacking node-d3-collection (1.0.7+~1.0.10-1) ... 371s Selecting previously unselected package node-d3-contour. 371s Preparing to unpack .../083-node-d3-contour_1.3.2+~1.3.3-1_all.deb ... 371s Unpacking node-d3-contour (1.3.2+~1.3.3-1) ... 371s Selecting previously unselected package node-safe-buffer. 371s Preparing to unpack .../084-node-safe-buffer_5.2.1+~cs2.1.2-3_all.deb ... 371s Unpacking node-safe-buffer (5.2.1+~cs2.1.2-3) ... 371s Selecting previously unselected package node-iconv-lite. 371s Preparing to unpack .../085-node-iconv-lite_0.6.3-3_all.deb ... 371s Unpacking node-iconv-lite (0.6.3-3) ... 371s Selecting previously unselected package node-d3-queue. 371s Preparing to unpack .../086-node-d3-queue_3.0.7-13_all.deb ... 371s Unpacking node-d3-queue (3.0.7-13) ... 371s Selecting previously unselected package node-rw. 371s Preparing to unpack .../087-node-rw_1.3.3-5_all.deb ... 371s Unpacking node-rw (1.3.3-5) ... 371s Selecting previously unselected package node-commander. 371s Preparing to unpack .../088-node-commander_9.4.1-1_all.deb ... 371s Unpacking node-commander (9.4.1-1) ... 371s Selecting previously unselected package node-d3-dsv. 371s Preparing to unpack .../089-node-d3-dsv_1.2.0+~1.2.3-1_all.deb ... 371s Unpacking node-d3-dsv (1.2.0+~1.2.3-1) ... 371s Selecting previously unselected package node-d3-fetch. 371s Preparing to unpack .../090-node-d3-fetch_1.2.0+~1.2.2-1_all.deb ... 371s Unpacking node-d3-fetch (1.2.0+~1.2.2-1) ... 371s Selecting previously unselected package node-d3-quadtree. 371s Preparing to unpack .../091-node-d3-quadtree_1.0.7+~1.0.9-1_all.deb ... 371s Unpacking node-d3-quadtree (1.0.7+~1.0.9-1) ... 371s Selecting previously unselected package node-d3-force. 371s Preparing to unpack .../092-node-d3-force_2.1.1+~2.1.4-1_all.deb ... 371s Unpacking node-d3-force (2.1.1+~2.1.4-1) ... 371s Selecting previously unselected package libjs-d3-format. 371s Preparing to unpack .../093-libjs-d3-format_1%3a1.4.5+~1.4.2-2_all.deb ... 371s Unpacking libjs-d3-format (1:1.4.5+~1.4.2-2) ... 371s Selecting previously unselected package node-d3-format. 371s Preparing to unpack .../094-node-d3-format_1%3a1.4.5+~1.4.2-2_all.deb ... 371s Unpacking node-d3-format (1:1.4.5+~1.4.2-2) ... 371s Selecting previously unselected package node-d3-geo. 371s Preparing to unpack .../095-node-d3-geo_1.12.1+~1.12.4-1_all.deb ... 371s Unpacking node-d3-geo (1.12.1+~1.12.4-1) ... 371s Selecting previously unselected package node-d3-hierarchy. 371s Preparing to unpack .../096-node-d3-hierarchy_1.1.9+~1.1.8-1_all.deb ... 371s Unpacking node-d3-hierarchy (1.1.9+~1.1.8-1) ... 371s Selecting previously unselected package node-d3-polygon. 371s Preparing to unpack .../097-node-d3-polygon_1.0.6+~1.0.8-1_all.deb ... 371s Unpacking node-d3-polygon (1.0.6+~1.0.8-1) ... 371s Selecting previously unselected package node-d3-random. 371s Preparing to unpack .../098-node-d3-random_1.1.2+~1.1.3-1_all.deb ... 371s Unpacking node-d3-random (1.1.2+~1.1.3-1) ... 371s Selecting previously unselected package node-d3-time. 371s Preparing to unpack .../099-node-d3-time_1.1.0+~1.1.1-1_all.deb ... 371s Unpacking node-d3-time (1.1.0+~1.1.1-1) ... 371s Selecting previously unselected package node-d3-time-format. 371s Preparing to unpack .../100-node-d3-time-format_2.3.0+~2.3.1-1_all.deb ... 371s Unpacking node-d3-time-format (2.3.0+~2.3.1-1) ... 371s Selecting previously unselected package node-d3-scale. 371s Preparing to unpack .../101-node-d3-scale_2.2.2+~2.2.6-1_all.deb ... 371s Unpacking node-d3-scale (2.2.2+~2.2.6-1) ... 371s Selecting previously unselected package node-d3-scale-chromatic. 371s Preparing to unpack .../102-node-d3-scale-chromatic_1.5.0+~1.5.1-1_all.deb ... 371s Unpacking node-d3-scale-chromatic (1.5.0+~1.5.1-1) ... 371s Selecting previously unselected package node-d3-shape. 371s Preparing to unpack .../103-node-d3-shape_1.3.7+~1.3.8-1_all.deb ... 371s Unpacking node-d3-shape (1.3.7+~1.3.8-1) ... 371s Selecting previously unselected package node-d3-voronoi. 371s Preparing to unpack .../104-node-d3-voronoi_1.1.4+~1.1.9-1_all.deb ... 371s Unpacking node-d3-voronoi (1.1.4+~1.1.9-1) ... 371s Selecting previously unselected package node-d3-zoom. 371s Preparing to unpack .../105-node-d3-zoom_1.8.3+~1.8.4-1_all.deb ... 371s Unpacking node-d3-zoom (1.8.3+~1.8.4-1) ... 371s Selecting previously unselected package node-d3. 371s Preparing to unpack .../106-node-d3_5.16.0+~cs5.28.10-2_all.deb ... 371s Unpacking node-d3 (5.16.0+~cs5.28.10-2) ... 371s Selecting previously unselected package node-dompurify. 371s Preparing to unpack .../107-node-dompurify_3.1.7+dfsg+~3.0.5-1_all.deb ... 371s Unpacking node-dompurify (3.1.7+dfsg+~3.0.5-1) ... 371s Selecting previously unselected package node-ua-parser-js. 371s Preparing to unpack .../108-node-ua-parser-js_0.8.1+ds+~0.7.36-3_all.deb ... 371s Unpacking node-ua-parser-js (0.8.1+ds+~0.7.36-3) ... 371s Selecting previously unselected package php8.3-gd. 371s Preparing to unpack .../109-php8.3-gd_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-gd (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-gd. 371s Preparing to unpack .../110-php-gd_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-gd (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package php8.3-gmp. 371s Preparing to unpack .../111-php8.3-gmp_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-gmp (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-gmp. 371s Preparing to unpack .../112-php-gmp_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-gmp (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package php8.3-ldap. 371s Preparing to unpack .../113-php8.3-ldap_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-ldap (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-ldap. 371s Preparing to unpack .../114-php-ldap_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-ldap (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package php8.3-mbstring. 371s Preparing to unpack .../115-php8.3-mbstring_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-mbstring (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-mbstring. 371s Preparing to unpack .../116-php-mbstring_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-mbstring (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package php8.3-mysql. 371s Preparing to unpack .../117-php8.3-mysql_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-mysql (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-mysql. 371s Preparing to unpack .../118-php-mysql_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-mysql (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package php-symfony-deprecation-contracts. 371s Preparing to unpack .../119-php-symfony-deprecation-contracts_3.5.2-5_all.deb ... 371s Unpacking php-symfony-deprecation-contracts (3.5.2-5) ... 371s Selecting previously unselected package php-psr-cache. 371s Preparing to unpack .../120-php-psr-cache_3.0.0-4_all.deb ... 371s Unpacking php-psr-cache (3.0.0-4) ... 371s Selecting previously unselected package php-psr-log. 371s Preparing to unpack .../121-php-psr-log_3.0.2-2_all.deb ... 371s Unpacking php-psr-log (3.0.2-2) ... 371s Selecting previously unselected package php-symfony-cache-contracts. 371s Preparing to unpack .../122-php-symfony-cache-contracts_3.5.2-5_all.deb ... 371s Unpacking php-symfony-cache-contracts (3.5.2-5) ... 371s Selecting previously unselected package php-psr-container. 371s Preparing to unpack .../123-php-psr-container_2.0.2-1_all.deb ... 371s Unpacking php-psr-container (2.0.2-1) ... 371s Selecting previously unselected package php-symfony-service-contracts. 371s Preparing to unpack .../124-php-symfony-service-contracts_3.5.2-5_all.deb ... 371s Unpacking php-symfony-service-contracts (3.5.2-5) ... 371s Selecting previously unselected package php-symfony-var-exporter. 371s Preparing to unpack .../125-php-symfony-var-exporter_6.4.10+dfsg-1ubuntu1_all.deb ... 371s Unpacking php-symfony-var-exporter (6.4.10+dfsg-1ubuntu1) ... 371s Selecting previously unselected package php-symfony-cache. 371s Preparing to unpack .../126-php-symfony-cache_6.4.10+dfsg-1ubuntu1_all.deb ... 371s Unpacking php-symfony-cache (6.4.10+dfsg-1ubuntu1) ... 371s Selecting previously unselected package php-symfony-expression-language. 371s Preparing to unpack .../127-php-symfony-expression-language_6.4.10+dfsg-1ubuntu1_all.deb ... 371s Unpacking php-symfony-expression-language (6.4.10+dfsg-1ubuntu1) ... 371s Selecting previously unselected package php-phpmyadmin-motranslator. 371s Preparing to unpack .../128-php-phpmyadmin-motranslator_5.3.1-1_all.deb ... 371s Unpacking php-phpmyadmin-motranslator (5.3.1-1) ... 371s Selecting previously unselected package php-phpseclib. 371s Preparing to unpack .../129-php-phpseclib_2.0.48-2_all.deb ... 371s Unpacking php-phpseclib (2.0.48-2) ... 371s Selecting previously unselected package php8.3-snmp. 371s Preparing to unpack .../130-php8.3-snmp_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-snmp (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-snmp. 371s Preparing to unpack .../131-php-snmp_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-snmp (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package php-twig. 371s Preparing to unpack .../132-php-twig_3.8.0-3_all.deb ... 371s Unpacking php-twig (3.8.0-3) ... 371s Selecting previously unselected package php8.3-xml. 371s Preparing to unpack .../133-php8.3-xml_8.3.11-0ubuntu4_s390x.deb ... 371s Unpacking php8.3-xml (8.3.11-0ubuntu4) ... 371s Selecting previously unselected package php-xml. 371s Preparing to unpack .../134-php-xml_2%3a8.3+93ubuntu2_all.deb ... 371s Unpacking php-xml (2:8.3+93ubuntu2) ... 371s Selecting previously unselected package snmp. 371s Preparing to unpack .../135-snmp_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 371s Unpacking snmp (5.9.4+dfsg-1.1ubuntu6) ... 371s Selecting previously unselected package libjs-jquery-hotkeys. 371s Preparing to unpack .../136-libjs-jquery-hotkeys_0.2.0-1_all.deb ... 371s Unpacking libjs-jquery-hotkeys (0.2.0-1) ... 371s Selecting previously unselected package libjs-jquery-ui-touch-punch. 371s Preparing to unpack .../137-libjs-jquery-ui-touch-punch_0.0~git20141218.2.4bc0091+dfsg1-4.1_all.deb ... 371s Unpacking libjs-jquery-ui-touch-punch (0.0~git20141218.2.4bc0091+dfsg1-4.1) ... 371s Selecting previously unselected package rrdtool. 371s Preparing to unpack .../138-rrdtool_1.7.2-4.2ubuntu1_s390x.deb ... 371s Unpacking rrdtool (1.7.2-4.2ubuntu1) ... 371s Selecting previously unselected package cacti. 371s Preparing to unpack .../139-cacti_1.2.28+ds1-3ubuntu1_all.deb ... 371s Unpacking cacti (1.2.28+ds1-3ubuntu1) ... 372s Setting up libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 372s Setting up javascript-common (11+nmu1) ... 372s Package apache2 is not configured yet. Will defer actions by package javascript-common. 372s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 372s Setting up node-ua-parser-js (0.8.1+ds+~0.7.36-3) ... 372s Setting up libpixman-1-0:s390x (0.44.0-3) ... 372s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 372s Setting up php-common (2:93ubuntu2) ... 372s Created symlink '/etc/systemd/system/timers.target.wants/phpsessionclean.timer' → '/usr/lib/systemd/system/phpsessionclean.timer'. 372s Setting up node-d3-timer (1.0.10+~1.0.10-1) ... 372s Setting up libaom3:s390x (3.12.0-1) ... 372s Setting up node-d3-color (1.4.1+~1.4.2-1) ... 372s Setting up libmecab2:s390x (0.996-15.1build1) ... 372s Setting up node-d3-interpolate (1.4.0+~1.4.2-1) ... 372s Setting up node-d3-queue (3.0.7-13) ... 372s Setting up libsodium23:s390x (1.0.18-1build3) ... 372s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 372s Setting up libjs-chart.js (3.9.1+~cs3.1.2-3) ... 372s Setting up node-d3-hierarchy (1.1.9+~1.1.8-1) ... 372s Setting up node-d3-ease (1.0.7+~1.0.11-1) ... 372s Setting up node-dompurify (3.1.7+dfsg+~3.0.5-1) ... 372s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 372s Setting up libphp-phpmailer (6.9.1-1) ... 372s Setting up libdatrie1:s390x (0.2.13-3build1) ... 372s Setting up libxcb-render0:s390x (1.17.0-2) ... 372s Setting up fonts-fork-awesome (1.2.0+ds1-1) ... 372s Setting up node-d3-scale-chromatic (1.5.0+~1.5.1-1) ... 372s Setting up libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 372s Setting up libargon2-1:s390x (0~20190702+dfsg-4build1) ... 372s Setting up libdbi1t64:s390x (0.9.0-6.1build1) ... 372s Setting up php-psr-container (2.0.2-1) ... 372s Setting up libjs-jquery-ui-theme-south-street (1.12.1+dfsg-1.1) ... 372s Setting up libdeflate0:s390x (1.23-1) ... 372s Setting up node-d3-selection (1.4.1+~1.4.3-1) ... 372s Setting up libxcb-shm0:s390x (1.17.0-2) ... 372s Setting up dbconfig-common (2.0.24) ... 372s Creating config file /etc/dbconfig-common/config with new version 372s Setting up php8.3-common (8.3.11-0ubuntu4) ... 373s Creating config file /etc/php/8.3/mods-available/calendar.ini with new version 373s Creating config file /etc/php/8.3/mods-available/ctype.ini with new version 373s Creating config file /etc/php/8.3/mods-available/exif.ini with new version 373s Creating config file /etc/php/8.3/mods-available/fileinfo.ini with new version 373s Creating config file /etc/php/8.3/mods-available/ffi.ini with new version 374s Creating config file /etc/php/8.3/mods-available/ftp.ini with new version 374s Creating config file /etc/php/8.3/mods-available/gettext.ini with new version 374s Creating config file /etc/php/8.3/mods-available/iconv.ini with new version 374s Creating config file /etc/php/8.3/mods-available/pdo.ini with new version 374s Creating config file /etc/php/8.3/mods-available/phar.ini with new version 375s Creating config file /etc/php/8.3/mods-available/posix.ini with new version 375s Creating config file /etc/php/8.3/mods-available/shmop.ini with new version 375s Creating config file /etc/php/8.3/mods-available/sockets.ini with new version 375s Creating config file /etc/php/8.3/mods-available/sysvmsg.ini with new version 376s Creating config file /etc/php/8.3/mods-available/sysvsem.ini with new version 376s Creating config file /etc/php/8.3/mods-available/sysvshm.ini with new version 376s Creating config file /etc/php/8.3/mods-available/tokenizer.ini with new version 376s Setting up node-d3-axis (1.0.12+~1.0.16-1) ... 376s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 376s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 376s Setting up node-d3-path (1.0.9+~1.0.9-1) ... 376s Setting up php8.3-mysql (8.3.11-0ubuntu4) ... 376s Creating config file /etc/php/8.3/mods-available/mysqlnd.ini with new version 376s Creating config file /etc/php/8.3/mods-available/mysqli.ini with new version 377s Creating config file /etc/php/8.3/mods-available/pdo_mysql.ini with new version 377s Setting up php-phpseclib (2.0.48-2) ... 377s Setting up php8.3-mbstring (8.3.11-0ubuntu4) ... 377s Creating config file /etc/php/8.3/mods-available/mbstring.ini with new version 377s Setting up node-safe-buffer (5.2.1+~cs2.1.2-3) ... 377s Setting up node-rw (1.3.3-5) ... 377s Setting up node-d3-polygon (1.0.6+~1.0.8-1) ... 377s Setting up php8.3-readline (8.3.11-0ubuntu4) ... 377s Creating config file /etc/php/8.3/mods-available/readline.ini with new version 377s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 377s Setting up node-d3-quadtree (1.0.7+~1.0.9-1) ... 377s Setting up mysql-server-core (8.4.4-0ubuntu1) ... 377s Setting up php8.3-gmp (8.3.11-0ubuntu4) ... 377s Creating config file /etc/php/8.3/mods-available/gmp.ini with new version 377s Setting up libimagequant0:s390x (2.18.0-1build1) ... 377s Setting up php-psr-cache (3.0.0-4) ... 377s Setting up fonts-dejavu-mono (2.37-8) ... 377s Setting up node-d3-collection (1.0.7+~1.0.10-1) ... 377s Setting up fonts-dejavu-core (2.37-8) ... 377s Setting up libjs-jquery-ui-theme-smoothness (1.12.1+dfsg-1.1) ... 377s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 377s Setting up php-twig (3.8.0-3) ... 377s Setting up php-gmp (2:8.3+93ubuntu2) ... 377s Setting up node-d3-voronoi (1.1.4+~1.1.9-1) ... 377s Setting up node-d3-dispatch (1.0.6+~1.0.9-1) ... 377s Setting up libwebp7:s390x (1.5.0-0.1) ... 377s Setting up node-d3-time (1.1.0+~1.1.1-1) ... 377s Setting up php-psr-log (3.0.2-2) ... 377s Setting up node-commander (9.4.1-1) ... 377s Setting up php8.3-ldap (8.3.11-0ubuntu4) ... 377s Creating config file /etc/php/8.3/mods-available/ldap.ini with new version 378s Setting up fonts-dejavu-extra (2.37-8) ... 378s Setting up node-d3-array (3.2.0+~cs5.0.6-2) ... 378s Setting up mysql-client-core (8.4.4-0ubuntu1) ... 378s Setting up libjs-d3-format (1:1.4.5+~1.4.2-2) ... 378s Setting up libapr1t64:s390x (1.7.5-1) ... 378s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 378s Setting up libjs-jquery-ui-theme-ui-darkness (1.12.1+dfsg-1.1) ... 378s Setting up liblua5.4-0:s390x (5.4.7-1) ... 378s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 378s Setting up libthai-data (0.1.29-2build1) ... 378s Setting up php8.3-xml (8.3.11-0ubuntu4) ... 378s Creating config file /etc/php/8.3/mods-available/dom.ini with new version 378s Creating config file /etc/php/8.3/mods-available/simplexml.ini with new version 378s Creating config file /etc/php/8.3/mods-available/xml.ini with new version 378s Creating config file /etc/php/8.3/mods-available/xmlreader.ini with new version 379s Creating config file /etc/php/8.3/mods-available/xmlwriter.ini with new version 379s Creating config file /etc/php/8.3/mods-available/xsl.ini with new version 379s Setting up apache2-data (2.4.63-1ubuntu1) ... 379s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 379s Setting up php8.3-opcache (8.3.11-0ubuntu4) ... 379s Creating config file /etc/php/8.3/mods-available/opcache.ini with new version 379s Setting up node-d3-geo (1.12.1+~1.12.4-1) ... 379s Setting up libjs-jquery-hotkeys (0.2.0-1) ... 379s Setting up libde265-0:s390x (1.0.15-1build4) ... 379s Setting up node-d3-transition (1.3.2+~1.3.2-1) ... 379s Setting up node-d3-random (1.1.2+~1.1.3-1) ... 379s Setting up php-symfony-deprecation-contracts (3.5.2-5) ... 379s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 379s Setting up php-xml (2:8.3+93ubuntu2) ... 379s Setting up libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 379s Setting up libjs-jquery-cookie (12-4) ... 379s Setting up mysql-client (8.4.4-0ubuntu1) ... 379s Setting up libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 379s Setting up php-mysql (2:8.3+93ubuntu2) ... 379s Setting up node-d3-format (1:1.4.5+~1.4.2-2) ... 379s Setting up php-symfony-cache-contracts (3.5.2-5) ... 379s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 379s Setting up node-d3-time-format (2.3.0+~2.3.1-1) ... 379s Setting up node-d3-chord (1.0.6+~1.0.11-1) ... 379s Setting up libjs-jquery-jstree (3.3.16+dfsg1-1) ... 379s Setting up dbconfig-mysql (2.0.24) ... 379s Setting up php-symfony-service-contracts (3.5.2-5) ... 379s Setting up snmp (5.9.4+dfsg-1.1ubuntu6) ... 379s Setting up libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 379s Setting up php8.3-cli (8.3.11-0ubuntu4) ... 379s update-alternatives: using /usr/bin/php8.3 to provide /usr/bin/php (php) in auto mode 379s update-alternatives: using /usr/bin/phar8.3 to provide /usr/bin/phar (phar) in auto mode 379s update-alternatives: using /usr/bin/phar.phar8.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode 379s Creating config file /etc/php/8.3/cli/php.ini with new version 380s Setting up php-mbstring (2:8.3+93ubuntu2) ... 380s Setting up node-d3-shape (1.3.7+~1.3.8-1) ... 380s Setting up libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 380s Setting up libthai0:s390x (0.1.29-2build1) ... 380s Setting up node-d3-drag (1.2.5+~1.2.5-1) ... 380s Setting up node-iconv-lite (0.6.3-3) ... 380s Setting up php-ldap (2:8.3+93ubuntu2) ... 380s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 380s Setting up libjs-jquery-metadata (12-4) ... 380s Setting up libraqm0:s390x (0.10.2-1) ... 380s Setting up node-d3-scale (2.2.2+~2.2.6-1) ... 380s Setting up node-d3-force (2.1.1+~2.1.4-1) ... 380s Setting up node-d3-contour (1.3.2+~1.3.3-1) ... 380s Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 380s Setting up node-d3-brush (1.1.6+~1.1.5-1) ... 380s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 380s Setting up libjs-jquery-timepicker (1.6.3-6) ... 380s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 380s Setting up php-symfony-var-exporter (6.4.10+dfsg-1ubuntu1) ... 380s Setting up node-d3-dsv (1.2.0+~1.2.3-1) ... 380s Setting up php8.3-snmp (8.3.11-0ubuntu4) ... 380s Creating config file /etc/php/8.3/mods-available/snmp.ini with new version 380s Setting up apache2-utils (2.4.63-1ubuntu1) ... 380s Setting up mysql-server (8.4.4-0ubuntu1) ... 380s update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 380s Renaming removed key_buffer and myisam-recover options (if present) 386s mysqld will log errors to /var/log/mysql/error.log 386s mysqld is running as pid 11532 391s Created symlink '/etc/systemd/system/multi-user.target.wants/mysql.service' → '/usr/lib/systemd/system/mysql.service'. 392s Setting up fontconfig (2.15.0-2ubuntu1) ... 394s Regenerating fonts cache... done. 394s Setting up libjs-jquery-colorpicker (1.2.20-4) ... 394s Setting up node-d3-zoom (1.8.3+~1.8.4-1) ... 394s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 394s Setting up node-d3-fetch (1.2.0+~1.2.2-1) ... 394s Setting up node-d3 (5.16.0+~cs5.28.10-2) ... 394s Setting up apache2-bin (2.4.63-1ubuntu1) ... 394s Setting up libcairo2:s390x (1.18.2-2) ... 394s Setting up libjs-jquery-ui-touch-punch (0.0~git20141218.2.4bc0091+dfsg1-4.1) ... 394s Setting up php-symfony-cache (6.4.10+dfsg-1ubuntu1) ... 394s Setting up php-symfony-expression-language (6.4.10+dfsg-1ubuntu1) ... 394s Setting up php-snmp (2:8.3+93ubuntu2) ... 394s Setting up libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 394s Package apache2 is not configured yet. Will defer actions by package libapache2-mod-php8.3. 394s Creating config file /etc/php/8.3/apache2/php.ini with new version 394s No module matches 395s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 395s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 395s Setting up apache2 (2.4.63-1ubuntu1) ... 395s Enabling module mpm_event. 395s Enabling module authz_core. 395s Enabling module authz_host. 395s Enabling module authn_core. 395s Enabling module auth_basic. 395s Enabling module access_compat. 395s Enabling module authn_file. 395s Enabling module authz_user. 395s Enabling module alias. 395s Enabling module dir. 395s Enabling module autoindex. 395s Enabling module env. 395s Enabling module mime. 395s Enabling module negotiation. 395s Enabling module setenvif. 395s Enabling module filter. 395s Enabling module deflate. 395s Enabling module status. 395s Enabling module reqtimeout. 395s Enabling conf charset. 395s Enabling conf localized-error-pages. 395s Enabling conf other-vhosts-access-log. 395s Enabling conf security. 395s Enabling conf serve-cgi-bin. 395s Enabling site 000-default. 395s info: Executing deferred 'a2enconf javascript-common' for package javascript-common 395s Enabling conf javascript-common. 395s info: Switch to mpm prefork for package libapache2-mod-php8.3 395s Module mpm_event disabled. 395s Enabling module mpm_prefork. 395s info: Executing deferred 'a2enmod php8.3' for package libapache2-mod-php8.3 395s Enabling module php8.3. 396s Created symlink '/etc/systemd/system/multi-user.target.wants/apache2.service' → '/usr/lib/systemd/system/apache2.service'. 396s Created symlink '/etc/systemd/system/multi-user.target.wants/apache-htcacheclean.service' → '/usr/lib/systemd/system/apache-htcacheclean.service'. 397s Setting up php-phpmyadmin-motranslator (5.3.1-1) ... 397s Setting up libapache2-mod-php (2:8.3+93ubuntu2) ... 397s Setting up librrd8t64:s390x (1.7.2-4.2ubuntu1) ... 397s Setting up rrdtool (1.7.2-4.2ubuntu1) ... 397s Setting up libheif1:s390x (1.19.5-1build1) ... 397s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 397s Setting up php8.3-gd (8.3.11-0ubuntu4) ... 397s Creating config file /etc/php/8.3/mods-available/gd.ini with new version 397s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 397s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 397s Setting up cacti (1.2.28+ds1-3ubuntu1) ... 397s Determining localhost credentials from /etc/mysql/debian.cnf: succeeded. 397s dbconfig-common: writing config to /etc/dbconfig-common/cacti.conf 397s Creating config file /etc/dbconfig-common/cacti.conf with new version 397s Creating config file /etc/cacti/debian.php with new version 398s checking privileges on database cacti for cacti@localhost: user creation needed. 398s granting access to database cacti for cacti@localhost: success. 398s verifying access for cacti@localhost: success. 398s creating database cacti: success. 398s verifying database cacti exists: success. 398s populating database via administrative sql... done. 400s populating database via sql... done. 400s dbconfig-common: flushing administrative password 400s Creating config file /etc/apache2/conf-available/cacti.conf with new version 400s Creating config file /etc/lighttpd/conf-available/20-cacti.conf with new version 437s Loading default cacti templates (may take some time)............................. done. 437s apache2_invoke: Enable configuration cacti 437s Setting up php-gd (2:8.3+93ubuntu2) ... 437s Processing triggers for libc-bin (2.40-4ubuntu1) ... 437s Processing triggers for ufw (0.36.2-9) ... 437s Processing triggers for man-db (2.13.0-1) ... 438s Processing triggers for php8.3-cli (8.3.11-0ubuntu4) ... 438s Processing triggers for libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 439s autopkgtest: DBG: testbed command exited with code 0 439s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cacti'], kind short, sout pipe, serr pipe, env [] 439s autopkgtest: DBG: testbed command exited with code 0 439s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-packages.all"], kind short, sout raw, serr pipe, env [] 439s autopkgtest: DBG: testbed command exited with code 0 439s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-packages.all /tmp/autopkgtest-work.hhfgazt4/out/check-all-pages-with-mysql-packages.all 439s autopkgtest: DBG: got reply from testbed: ok 439s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ysJYGH/build.Eyz/src'], kind short, sout raw, serr raw, env [] 439s autopkgtest: DBG: testbed command exited with code 1 439s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH/build.Eyz'], kind short, sout raw, serr pipe, env [] 440s autopkgtest: DBG: testbed command exited with code 0 440s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.hhfgazt4/out/tests-tree/ /tmp/autopkgtest.ysJYGH/build.Eyz/src/ 447s autopkgtest: DBG: got reply from testbed: ok 447s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.ysJYGH/build.Eyz/src'], kind short, sout raw, serr pipe, env [] 448s autopkgtest: DBG: testbed command exited with code 0 448s autopkgtest [11:06:39]: test check-all-pages-with-mysql: debian/tests/check_all_pages 448s autopkgtest [11:06:39]: test check-all-pages-with-mysql: [----------------------- 448s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.ysJYGH/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-artifacts --chdir=/tmp/autopkgtest.ysJYGH/build.Eyz/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stderr --stdout=/tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stdout --tmp=/tmp/autopkgtest.ysJYGH/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 -- bash -ec debian/tests/check_all_pages'], kind test, sout raw, serr raw, env [] 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-artifacts 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: changing to directory: /tmp/autopkgtest.ysJYGH/build.Eyz/src 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: LANG=C.UTF-8 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LANGUAGE 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_ADDRESS 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_ALL 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_COLLATE 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_CTYPE 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_IDENTIFICATION 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MEASUREMENT 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MESSAGES 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MONETARY 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_NAME 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_NUMERIC 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_PAPER 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_TELEPHONE 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_TIME 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: pretending to be a login shell 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: will write standard error to /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stderr 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: will write stdout to /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stdout 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ysJYGH/autopkgtest_tmp 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: command to run: bash -ec debian/tests/check_all_pages 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: copying /tmp/tmp.p0n0QHKF1N/out to stdout and file: /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stdout 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: copying /tmp/tmp.p0n0QHKF1N/err to standard error and file: /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stdout 448s /tmp/autopkgtest.ysJYGH/wrapper.sh: writing script pid 14707 to /tmp/autopkgtest_script_pid 448s --2025-02-19 11:06:39-- http://localhost/cacti/index.php 448s Resolving localhost (localhost)... ::1, 127.0.0.1 448s Connecting to localhost (localhost)|::1|:80... connected. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘/tmp/tmp.ZGCaxCPcha’ 448s 448s 0K .......... .... 1.61G=0s 448s 448s 2025-02-19 11:06:39 (1.61 GB/s) - ‘/tmp/tmp.ZGCaxCPcha’ saved [14702] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/index.php 448s Resolving localhost (localhost)... ::1, 127.0.0.1 448s Connecting to localhost (localhost)|::1|:80... connected. 448s HTTP request sent, awaiting response... 302 Found 448s Location: /cacti/index.php [following] 448s --2025-02-19 11:06:39-- http://localhost/cacti/index.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘/tmp/tmp.AY3jf5NS9Z’ 448s 448s 0K .......... .......... .. 1.72G=0s 448s 448s 2025-02-19 11:06:39 (1.72 GB/s) - ‘/tmp/tmp.AY3jf5NS9Z’ saved [23072] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/index.php 448s Resolving localhost (localhost)... ::1, 127.0.0.1 448s Connecting to localhost (localhost)|::1|:80... connected. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/index.php’ 448s 448s 0K .......... .......... .. 2.36G=0s 448s 448s 2025-02-19 11:06:39 (2.36 GB/s) - ‘localhost/cacti/index.php’ saved [23072] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/images/favicon.ico 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 1406 (1.4K) [image/vnd.microsoft.icon] 448s Saving to: ‘localhost/cacti/include/themes/modern/images/favicon.ico’ 448s 448s 0K . 100% 466M=0s 448s 448s 2025-02-19 11:06:39 (466 MB/s) - ‘localhost/cacti/include/themes/modern/images/favicon.ico’ saved [1406/1406] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/images/cacti_logo.gif 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 5641 (5.5K) [image/gif] 448s Saving to: ‘localhost/cacti/include/themes/modern/images/cacti_logo.gif’ 448s 448s 0K ..... 100% 1.27G=0s 448s 448s 2025-02-19 11:06:39 (1.27 GB/s) - ‘localhost/cacti/include/themes/modern/images/cacti_logo.gif’ saved [5641/5641] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/jquery.zoom.css?aca45860e0c75f2c485ddfc17160d597 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 6200 (6.1K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/jquery.zoom.css?aca45860e0c75f2c485ddfc17160d597’ 448s 448s 0K ...... 100% 2.09G=0s 448s 448s 2025-02-19 11:06:39 (2.09 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.zoom.css?aca45860e0c75f2c485ddfc17160d597’ saved [6200/6200] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/jquery-ui.css?711a15763c7b30ce9ee722ec4bd3292a 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 36587 (36K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/jquery-ui.css?711a15763c7b30ce9ee722ec4bd3292a’ 448s 448s 0K .......... .......... .......... ..... 100% 1.45G=0s 448s 448s 2025-02-19 11:06:39 (1.45 GB/s) - ‘localhost/cacti/include/themes/modern/jquery-ui.css?711a15763c7b30ce9ee722ec4bd3292a’ saved [36587/36587] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/default/style.css?a8aa5e9a2e50468335835b6d2e37a302 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 31730 (31K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/default/style.css?a8aa5e9a2e50468335835b6d2e37a302’ 448s 448s 0K .......... .......... .......... 100% 6.58G=0s 448s 448s 2025-02-19 11:06:39 (6.58 GB/s) - ‘localhost/cacti/include/themes/modern/default/style.css?a8aa5e9a2e50468335835b6d2e37a302’ saved [31730/31730] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/jquery.multiselect.css?f83e570ae998a2a6f7b07f850c58ce8b 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 2751 (2.7K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/jquery.multiselect.css?f83e570ae998a2a6f7b07f850c58ce8b’ 448s 448s 0K .. 100% 1.63G=0s 448s 448s 2025-02-19 11:06:39 (1.63 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.multiselect.css?f83e570ae998a2a6f7b07f850c58ce8b’ saved [2751/2751] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/jquery.multiselect.filter.css?bdc527651975f5ccfb3fd6f91af0bb93 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 402 [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/jquery.multiselect.filter.css?bdc527651975f5ccfb3fd6f91af0bb93’ 448s 448s 0K 100% 354M=0s 448s 448s 2025-02-19 11:06:39 (354 MB/s) - ‘localhost/cacti/include/themes/modern/jquery.multiselect.filter.css?bdc527651975f5ccfb3fd6f91af0bb93’ saved [402/402] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/jquery.timepicker.css?431ab7d4ef48afd9c39a647c5c990b0a 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 1945 (1.9K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/jquery.timepicker.css?431ab7d4ef48afd9c39a647c5c990b0a’ 448s 448s 0K . 100% 1.33G=0s 448s 448s 2025-02-19 11:06:39 (1.33 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.timepicker.css?431ab7d4ef48afd9c39a647c5c990b0a’ saved [1945/1945] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/jquery.colorpicker.css?2764606f45aeccc0548e532b260b7cd4 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 4451 (4.3K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/jquery.colorpicker.css?2764606f45aeccc0548e532b260b7cd4’ 448s 448s 0K .... 100% 2.77G=0s 448s 448s 2025-02-19 11:06:39 (2.77 GB/s) - ‘localhost/cacti/include/themes/modern/jquery.colorpicker.css?2764606f45aeccc0548e532b260b7cd4’ saved [4451/4451] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/billboard.css?695c0029bc6c0f91e299c84485669130 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 4924 (4.8K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/billboard.css?695c0029bc6c0f91e299c84485669130’ 448s 448s 0K .... 100% 2.96G=0s 448s 448s 2025-02-19 11:06:39 (2.96 GB/s) - ‘localhost/cacti/include/themes/modern/billboard.css?695c0029bc6c0f91e299c84485669130’ saved [4924/4924] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/pace.css?cca67d465b4ea3986786a0679604a367 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 2102 (2.1K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/pace.css?cca67d465b4ea3986786a0679604a367’ 448s 448s 0K .. 100% 1.41G=0s 448s 448s 2025-02-19 11:06:39 (1.41 GB/s) - ‘localhost/cacti/include/themes/modern/pace.css?cca67d465b4ea3986786a0679604a367’ saved [2102/2102] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/Diff.css?49e6953c7461abf91ec4e7346d34bd85 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 1618 (1.6K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/Diff.css?49e6953c7461abf91ec4e7346d34bd85’ 448s 448s 0K . 100% 1.07G=0s 448s 448s 2025-02-19 11:06:39 (1.07 GB/s) - ‘localhost/cacti/include/themes/modern/Diff.css?49e6953c7461abf91ec4e7346d34bd85’ saved [1618/1618] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/fa/css/fork-awesome.css?058684ed6ffa07049b8cb69a4cf45d59 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 44305 (43K) [text/css] 448s Saving to: ‘localhost/cacti/include/fa/css/fork-awesome.css?058684ed6ffa07049b8cb69a4cf45d59’ 448s 448s 0K .......... .......... .......... .......... ... 100% 4.01G=0s 448s 448s 2025-02-19 11:06:39 (4.01 GB/s) - ‘localhost/cacti/include/fa/css/fork-awesome.css?058684ed6ffa07049b8cb69a4cf45d59’ saved [44305/44305] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/fa/css/v5-compat.css?1f32f888eb42b34e8f44ddcf889331bc 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 8537 (8.3K) [text/css] 448s Saving to: ‘localhost/cacti/include/fa/css/v5-compat.css?1f32f888eb42b34e8f44ddcf889331bc’ 448s 448s 0K ........ 100% 3.57G=0s 448s 448s 2025-02-19 11:06:39 (3.57 GB/s) - ‘localhost/cacti/include/fa/css/v5-compat.css?1f32f888eb42b34e8f44ddcf889331bc’ saved [8537/8537] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/vendor/flag-icons/css/flag-icons.css?ab806eafe572d8149eb3dba8d0283db7 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 32092 (31K) [text/css] 448s Saving to: ‘localhost/cacti/include/vendor/flag-icons/css/flag-icons.css?ab806eafe572d8149eb3dba8d0283db7’ 448s 448s 0K .......... .......... .......... . 100% 7.37G=0s 448s 448s 2025-02-19 11:06:39 (7.37 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/css/flag-icons.css?ab806eafe572d8149eb3dba8d0283db7’ saved [32092/32092] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/main.css?89dc22c5a1bc9af4ae7b7ae5e9d6e4d1 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 54770 (53K) [text/css] 448s Saving to: ‘localhost/cacti/include/themes/modern/main.css?89dc22c5a1bc9af4ae7b7ae5e9d6e4d1’ 448s 448s 0K .......... .......... .......... .......... .......... 93% 13.1G 0s 448s 50K ... 100% 6.49T=0s 448s 448s 2025-02-19 11:06:39 (14.0 GB/s) - ‘localhost/cacti/include/themes/modern/main.css?89dc22c5a1bc9af4ae7b7ae5e9d6e4d1’ saved [54770/54770] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/screenfull.js?60a2ad1d452950179fa4d2c5d1b5dee4 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 3532 (3.4K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/screenfull.js?60a2ad1d452950179fa4d2c5d1b5dee4’ 448s 448s 0K ... 100% 2.28G=0s 448s 448s 2025-02-19 11:06:39 (2.28 GB/s) - ‘localhost/cacti/include/js/screenfull.js?60a2ad1d452950179fa4d2c5d1b5dee4’ saved [3532/3532] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.js?ad949d50a30f82d86ebbe741d0309e48 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 89037 (87K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.js?ad949d50a30f82d86ebbe741d0309e48’ 448s 448s 0K .......... .......... .......... .......... .......... 57% 8.75G 0s 448s 50K .......... .......... .......... ...... 100% 758M=0s 448s 448s 2025-02-19 11:06:39 (1.56 GB/s) - ‘localhost/cacti/include/js/jquery.js?ad949d50a30f82d86ebbe741d0309e48’ saved [89037/89037] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery-ui.js?cfde8c7633ee58fc44233e7525b8f1a6 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 324622 (317K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery-ui.js?cfde8c7633ee58fc44233e7525b8f1a6’ 448s 448s 0K .......... .......... .......... .......... .......... 15% 10.5G 0s 448s 50K .......... .......... .......... .......... .......... 31% 678M 0s 448s 100K .......... .......... .......... .......... .......... 47% 390M 0s 448s 150K .......... .......... .......... .......... .......... 63% 1020M 0s 448s 200K .......... .......... .......... .......... .......... 78% 93.1T 0s 448s 250K .......... .......... .......... .......... .......... 94% 861M 0s 448s 300K .......... ....... 100% 31.7T=0s 448s 448s 2025-02-19 11:06:39 (1011 MB/s) - ‘localhost/cacti/include/js/jquery-ui.js?cfde8c7633ee58fc44233e7525b8f1a6’ saved [324622/324622] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.ui.touch.punch.js?e4784fd79bc2eaab74ec80aae760e549 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 1665 (1.6K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.ui.touch.punch.js?e4784fd79bc2eaab74ec80aae760e549’ 448s 448s 0K . 100% 1.32G=0s 448s 448s 2025-02-19 11:06:39 (1.32 GB/s) - ‘localhost/cacti/include/js/jquery.ui.touch.punch.js?e4784fd79bc2eaab74ec80aae760e549’ saved [1665/1665] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.cookie.js?55e535aee1b344497a0c1db4b7601596 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 1780 (1.7K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.cookie.js?55e535aee1b344497a0c1db4b7601596’ 448s 448s 0K . 100% 1.61G=0s 448s 448s 2025-02-19 11:06:39 (1.61 GB/s) - ‘localhost/cacti/include/js/jquery.cookie.js?55e535aee1b344497a0c1db4b7601596’ saved [1780/1780] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/js.storage.js?32df3a56e44d570b7e3177d71e892214 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 24383 (24K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/js.storage.js?32df3a56e44d570b7e3177d71e892214’ 448s 448s 0K .......... .......... ... 100% 10.1G=0s 448s 448s 2025-02-19 11:06:39 (10.1 GB/s) - ‘localhost/cacti/include/js/js.storage.js?32df3a56e44d570b7e3177d71e892214’ saved [24383/24383] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jstree.js?b79f183bde51f17d52b08b366d8c367a 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 159843 (156K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jstree.js?b79f183bde51f17d52b08b366d8c367a’ 448s 448s 0K .......... .......... .......... .......... .......... 32% 4.65G 0s 448s 50K .......... .......... .......... .......... .......... 64% 894M 0s 448s 100K .......... .......... .......... .......... .......... 96% 880M 0s 448s 150K ...... 100% 11.4T=0s 448s 448s 2025-02-19 11:06:39 (1.24 GB/s) - ‘localhost/cacti/include/js/jstree.js?b79f183bde51f17d52b08b366d8c367a’ saved [159843/159843] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.hotkeys.js?59f880239762899eccc399944264f5de 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 4629 (4.5K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.hotkeys.js?59f880239762899eccc399944264f5de’ 448s 448s 0K .... 100% 2.34G=0s 448s 448s 2025-02-19 11:06:39 (2.34 GB/s) - ‘localhost/cacti/include/js/jquery.hotkeys.js?59f880239762899eccc399944264f5de’ saved [4629/4629] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.tablednd.js?a33b14ebf8ce2abf7911e62cbc19e0c5 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 28606 (28K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.tablednd.js?a33b14ebf8ce2abf7911e62cbc19e0c5’ 448s 448s 0K .......... .......... ....... 100% 7.90G=0s 448s 448s 2025-02-19 11:06:39 (7.90 GB/s) - ‘localhost/cacti/include/js/jquery.tablednd.js?a33b14ebf8ce2abf7911e62cbc19e0c5’ saved [28606/28606] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.zoom.js?a4dcf91fed1e4be77b91d1569f4802dc 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 52015 (51K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.zoom.js?a4dcf91fed1e4be77b91d1569f4802dc’ 448s 448s 0K .......... .......... .......... .......... .......... 98% 6.22G 0s 448s 50K 100% 1.48T=0s 448s 448s 2025-02-19 11:06:39 (6.32 GB/s) - ‘localhost/cacti/include/js/jquery.zoom.js?a4dcf91fed1e4be77b91d1569f4802dc’ saved [52015/52015] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.multiselect.js?0fe69963a69cd6e5c87eb380112912bb 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 72940 (71K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.multiselect.js?0fe69963a69cd6e5c87eb380112912bb’ 448s 448s 0K .......... .......... .......... .......... .......... 70% 9.20G 0s 448s 50K .......... .......... . 100% 266M=0s 448s 448s 2025-02-19 11:06:39 (837 MB/s) - ‘localhost/cacti/include/js/jquery.multiselect.js?0fe69963a69cd6e5c87eb380112912bb’ saved [72940/72940] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.multiselect.filter.js?ccf700b33985626742e26c6707028bed 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 10341 (10K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.multiselect.filter.js?ccf700b33985626742e26c6707028bed’ 448s 448s 0K .......... 100% 4.70G=0s 448s 448s 2025-02-19 11:06:39 (4.70 GB/s) - ‘localhost/cacti/include/js/jquery.multiselect.filter.js?ccf700b33985626742e26c6707028bed’ saved [10341/10341] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.timepicker.js?dccc6af24a8f8b259937ba42202b6b48 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 78550 (77K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.timepicker.js?dccc6af24a8f8b259937ba42202b6b48’ 448s 448s 0K .......... .......... .......... .......... .......... 65% 6.32G 0s 448s 50K .......... .......... ...... 100% 442M=0s 448s 448s 2025-02-19 11:06:39 (1.10 GB/s) - ‘localhost/cacti/include/js/jquery.timepicker.js?dccc6af24a8f8b259937ba42202b6b48’ saved [78550/78550] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.colorpicker.js?e496545e3e2be2b118dbd28c8b4a9a8b 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 113049 (110K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.colorpicker.js?e496545e3e2be2b118dbd28c8b4a9a8b’ 448s 448s 0K .......... .......... .......... .......... .......... 45% 9.20G 0s 448s 50K .......... .......... .......... .......... .......... 90% 653M 0s 448s 100K .......... 100% 19.4T=0s 448s 448s 2025-02-19 11:06:39 (1.32 GB/s) - ‘localhost/cacti/include/js/jquery.colorpicker.js?e496545e3e2be2b118dbd28c8b4a9a8b’ saved [113049/113049] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.tablesorter.js?eae5523047a09fdd8fe64228d286fbdb 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 44098 (43K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.tablesorter.js?eae5523047a09fdd8fe64228d286fbdb’ 448s 448s 0K .......... .......... .......... .......... ... 100% 13.2G=0s 448s 448s 2025-02-19 11:06:39 (13.2 GB/s) - ‘localhost/cacti/include/js/jquery.tablesorter.js?eae5523047a09fdd8fe64228d286fbdb’ saved [44098/44098] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.tablesorter.widgets.js?c36a8310f55aee5a32fd8cf001805e69 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 52971 (52K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.tablesorter.widgets.js?c36a8310f55aee5a32fd8cf001805e69’ 448s 448s 0K .......... .......... .......... .......... .......... 96% 5.76G 0s 448s 50K . 100% 3.22T=0s 448s 448s 2025-02-19 11:06:39 (5.96 GB/s) - ‘localhost/cacti/include/js/jquery.tablesorter.widgets.js?c36a8310f55aee5a32fd8cf001805e69’ saved [52971/52971] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.tablesorter.pager.js?ebc01ccd8a1920959a8efb52eb0866f6 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 20452 (20K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.tablesorter.pager.js?ebc01ccd8a1920959a8efb52eb0866f6’ 448s 448s 0K .......... ......... 100% 6.42G=0s 448s 448s 2025-02-19 11:06:39 (6.42 GB/s) - ‘localhost/cacti/include/js/jquery.tablesorter.pager.js?ebc01ccd8a1920959a8efb52eb0866f6’ saved [20452/20452] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/jquery.sparkline.js?c7638b825bc7deb1cf58c990825d35b2 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 123446 (121K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/jquery.sparkline.js?c7638b825bc7deb1cf58c990825d35b2’ 448s 448s 0K .......... .......... .......... .......... .......... 41% 4.62G 0s 448s 50K .......... .......... .......... .......... .......... 82% 885M 0s 448s 100K .......... .......... 100% 38.3T=0s 448s 448s 2025-02-19 11:06:39 (1.75 GB/s) - ‘localhost/cacti/include/js/jquery.sparkline.js?c7638b825bc7deb1cf58c990825d35b2’ saved [123446/123446] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/Chart.js?5b82221e9ee4ab80eb342db32d384175 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 553492 (541K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/Chart.js?5b82221e9ee4ab80eb342db32d384175’ 448s 448s 0K .......... .......... .......... .......... .......... 9% 5.14G 0s 448s 50K .......... .......... .......... .......... .......... 18% 541M 0s 448s 100K .......... .......... .......... .......... .......... 27% 438M 0s 448s 150K .......... .......... .......... .......... .......... 37% 850M 0s 448s 200K .......... .......... .......... .......... .......... 46% 93.1T 0s 448s 250K .......... .......... .......... .......... .......... 55% 1.04G 0s 448s 300K .......... .......... .......... .......... .......... 64% 178M 0s 448s 350K .......... .......... .......... .......... .......... 74% 986M 0s 448s 400K .......... .......... .......... .......... .......... 83% 1.02G 0s 448s 450K .......... .......... .......... .......... .......... 92% 93.1T 0s 448s 500K .......... .......... .......... .......... 100% 969M=0.001s 448s 448s 2025-02-19 11:06:39 (728 MB/s) - ‘localhost/cacti/include/js/Chart.js?5b82221e9ee4ab80eb342db32d384175’ saved [553492/553492] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/dygraph-combined.js?b5b448f71f8c3eb4a39506299bd81b0c 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 125419 (122K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/dygraph-combined.js?b5b448f71f8c3eb4a39506299bd81b0c’ 448s 448s 0K .......... .......... .......... .......... .......... 40% 5.40G 0s 448s 50K .......... .......... .......... .......... .......... 81% 613M 0s 448s 100K .......... .......... .. 100% 41.9T=0s 448s 448s 2025-02-19 11:06:39 (1.32 GB/s) - ‘localhost/cacti/include/js/dygraph-combined.js?b5b448f71f8c3eb4a39506299bd81b0c’ saved [125419/125419] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/d3.js?e68910a6cdffd4e330ae4ba99a29cb98 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 260752 (255K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/d3.js?e68910a6cdffd4e330ae4ba99a29cb98’ 448s 448s 0K .......... .......... .......... .......... .......... 19% 5.59G 0s 448s 50K .......... .......... .......... .......... .......... 39% 933M 0s 448s 100K .......... .......... .......... .......... .......... 58% 993M 0s 448s 150K .......... .......... .......... .......... .......... 78% 1.14G 0s 448s 200K .......... .......... .......... .......... .......... 98% 93.1T 0s 448s 250K .... 100% 8.64T=0s 448s 448s 2025-02-19 11:06:39 (1.60 GB/s) - ‘localhost/cacti/include/js/d3.js?e68910a6cdffd4e330ae4ba99a29cb98’ saved [260752/260752] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/billboard.js?9e6056e4dff4d132adc417d1b60c4af5 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 758985 (741K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/billboard.js?9e6056e4dff4d132adc417d1b60c4af5’ 448s 448s 0K .......... .......... .......... .......... .......... 6% 6.71G 0s 448s 50K .......... .......... .......... .......... .......... 13% 635M 0s 448s 100K .......... .......... .......... .......... .......... 20% 220M 0s 448s 150K .......... .......... .......... .......... .......... 26% 1009M 0s 448s 200K .......... .......... .......... .......... .......... 33% 93.1T 0s 448s 250K .......... .......... .......... .......... .......... 40% 776M 0s 448s 300K .......... .......... .......... .......... .......... 47% 1004M 0s 448s 350K .......... .......... .......... .......... .......... 53% 1.11G 0s 448s 400K .......... .......... .......... .......... .......... 60% 1.08G 0s 448s 450K .......... .......... .......... .......... .......... 67% 93.1T 0s 448s 500K .......... .......... .......... .......... .......... 74% 770M 0s 448s 550K .......... .......... .......... .......... .......... 80% 877M 0s 448s 600K .......... .......... .......... .......... .......... 87% 1.02G 0s 448s 650K .......... .......... .......... .......... .......... 94% 93.1T 0s 448s 700K .......... .......... .......... .......... . 100% 737M=0.001s 448s 448s 2025-02-19 11:06:39 (936 MB/s) - ‘localhost/cacti/include/js/billboard.js?9e6056e4dff4d132adc417d1b60c4af5’ saved [758985/758985] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/layout.js?666a6d4acff74d80292c7cce8bb1f138 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 132139 (129K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/layout.js?666a6d4acff74d80292c7cce8bb1f138’ 448s 448s 0K .......... .......... .......... .......... .......... 38% 10.7G 0s 448s 50K .......... .......... .......... .......... .......... 77% 511M 0s 448s 100K .......... .......... ......... 100% 664M=0s 448s 448s 2025-02-19 11:06:39 (883 MB/s) - ‘localhost/cacti/include/layout.js?666a6d4acff74d80292c7cce8bb1f138’ saved [132139/132139] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/pace.js?0232dc2b5854db23a93fd46af0f3bff7 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 25868 (25K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/pace.js?0232dc2b5854db23a93fd46af0f3bff7’ 448s 448s 0K .......... .......... ..... 100% 9.11G=0s 448s 448s 2025-02-19 11:06:39 (9.11 GB/s) - ‘localhost/cacti/include/js/pace.js?0232dc2b5854db23a93fd46af0f3bff7’ saved [25868/25868] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/js/purify.js?3a21ef7f17378965e43944197da83ae9 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 21543 (21K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/js/purify.js?3a21ef7f17378965e43944197da83ae9’ 448s 448s 0K .......... .......... . 100% 9.47G=0s 448s 448s 2025-02-19 11:06:39 (9.47 GB/s) - ‘localhost/cacti/include/js/purify.js?3a21ef7f17378965e43944197da83ae9’ saved [21543/21543] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/realtime.js?487d4e7f58ab491e660fe5209f67eb81 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 9811 (9.6K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/realtime.js?487d4e7f58ab491e660fe5209f67eb81’ 448s 448s 0K ......... 100% 5.75G=0s 448s 448s 2025-02-19 11:06:39 (5.75 GB/s) - ‘localhost/cacti/include/realtime.js?487d4e7f58ab491e660fe5209f67eb81’ saved [9811/9811] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/main.js?0eb4f9ce093f3c37be9e898793037ccc 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 8753 (8.5K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/themes/modern/main.js?0eb4f9ce093f3c37be9e898793037ccc’ 448s 448s 0K ........ 100% 6.02G=0s 448s 448s 2025-02-19 11:06:39 (6.02 GB/s) - ‘localhost/cacti/include/themes/modern/main.js?0eb4f9ce093f3c37be9e898793037ccc’ saved [8753/8753] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/vendor/csrf/csrf-magic.js 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 6437 (6.3K) [text/javascript] 448s Saving to: ‘localhost/cacti/include/vendor/csrf/csrf-magic.js’ 448s 448s 0K ...... 100% 4.11G=0s 448s 448s 2025-02-19 11:06:39 (4.11 GB/s) - ‘localhost/cacti/include/vendor/csrf/csrf-magic.js’ saved [6437/6437] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/graph_view.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/graph_view.php’ 448s 448s 0K .......... ......... 3.20G=0s 448s 448s 2025-02-19 11:06:39 (3.20 GB/s) - ‘localhost/cacti/graph_view.php’ saved [20095] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/reports_admin.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/reports_admin.php’ 448s 448s 0K .......... .......... ........ 3.07G=0s 448s 448s 2025-02-19 11:06:39 (3.07 GB/s) - ‘localhost/cacti/reports_admin.php’ saved [29155] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/clog.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/clog.php’ 448s 448s 0K .......... .......... 4.61G=0s 448s 448s 2025-02-19 11:06:39 (4.61 GB/s) - ‘localhost/cacti/clog.php’ saved [20750] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/graph_view.php?action=tree 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/graph_view.php?action=tree’ 448s 448s 0K .......... ......... 4.83G=0s 448s 448s 2025-02-19 11:06:39 (4.83 GB/s) - ‘localhost/cacti/graph_view.php?action=tree’ saved [20095] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/images/tab_tree.gif 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 866 [image/gif] 448s Saving to: ‘localhost/cacti/include/themes/modern/images/tab_tree.gif’ 448s 448s 0K 100% 652M=0s 448s 448s 2025-02-19 11:06:39 (652 MB/s) - ‘localhost/cacti/include/themes/modern/images/tab_tree.gif’ saved [866/866] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/graph_view.php?action=list 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/graph_view.php?action=list’ 448s 448s 0K .......... .......... ......... 2.48G=0s 448s 448s 2025-02-19 11:06:39 (2.48 GB/s) - ‘localhost/cacti/graph_view.php?action=list’ saved [29971] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/images/tab_list.gif 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 850 [image/gif] 448s Saving to: ‘localhost/cacti/include/themes/modern/images/tab_list.gif’ 448s 448s 0K 100% 340M=0s 448s 448s 2025-02-19 11:06:39 (340 MB/s) - ‘localhost/cacti/include/themes/modern/images/tab_list.gif’ saved [850/850] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/graph_view.php?action=preview 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/graph_view.php?action=preview’ 448s 448s 0K .......... .......... .......... .. 4.44G=0s 448s 448s 2025-02-19 11:06:39 (4.44 GB/s) - ‘localhost/cacti/graph_view.php?action=preview’ saved [33407] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/include/themes/modern/images/tab_preview.gif 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: 865 [image/gif] 448s Saving to: ‘localhost/cacti/include/themes/modern/images/tab_preview.gif’ 448s 448s 0K 100% 650M=0s 448s 448s 2025-02-19 11:06:39 (650 MB/s) - ‘localhost/cacti/include/themes/modern/images/tab_preview.gif’ saved [865/865] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/auth_profile.php?action=edit 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/auth_profile.php?action=edit’ 448s 448s 0K .......... .......... .......... .......... .......... 3.85G 448s 50K ......... 18.4T=0s 448s 448s 2025-02-19 11:06:39 (4.61 GB/s) - ‘localhost/cacti/auth_profile.php?action=edit’ saved [61340] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/auth_changepassword.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/auth_changepassword.php’ 448s 448s 0K .......... ..... 753M=0s 448s 448s 2025-02-19 11:06:39 (753 MB/s) - ‘localhost/cacti/auth_changepassword.php’ saved [16038] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/graphs_new.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/graphs_new.php’ 448s 448s 0K .......... .......... .......... .......... 3.79G=0s 448s 448s 2025-02-19 11:06:39 (3.79 GB/s) - ‘localhost/cacti/graphs_new.php’ saved [40965] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/host.php?action=edit&create=true 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/host.php?action=edit&create=true’ 448s 448s 0K .......... .......... .......... .......... .......... 4.26G 448s 50K ........ 15.6T=0s 448s 448s 2025-02-19 11:06:39 (4.98 GB/s) - ‘localhost/cacti/host.php?action=edit&create=true’ saved [59797] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/host.php 448s Reusing existing connection to [localhost]:80. 448s HTTP request sent, awaiting response... 200 OK 448s Length: unspecified [text/html] 448s Saving to: ‘localhost/cacti/host.php’ 448s 448s 0K .......... .......... .......... ...... 4.60G=0s 448s 448s 2025-02-19 11:06:39 (4.60 GB/s) - ‘localhost/cacti/host.php’ saved [37040] 448s 448s --2025-02-19 11:06:39-- http://localhost/cacti/sites.php 448s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/sites.php’ 449s 449s 0K .......... .......... .......... .. 5.10G=0s 449s 449s 2025-02-19 11:06:39 (5.10 GB/s) - ‘localhost/cacti/sites.php’ saved [33375] 449s 449s --2025-02-19 11:06:39-- http://localhost/cacti/tree.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/tree.php’ 449s 449s 0K .......... .......... .......... ..... 4.11G=0s 449s 449s 2025-02-19 11:06:40 (4.11 GB/s) - ‘localhost/cacti/tree.php’ saved [36203] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/graphs.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/graphs.php’ 449s 449s 0K .......... .......... .......... ... 5.31G=0s 449s 449s 2025-02-19 11:06:40 (5.31 GB/s) - ‘localhost/cacti/graphs.php’ saved [34410] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/data_sources.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/data_sources.php’ 449s 449s 0K .......... .......... .......... ... 5.98G=0s 449s 449s 2025-02-19 11:06:40 (5.98 GB/s) - ‘localhost/cacti/data_sources.php’ saved [34734] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/aggregate_graphs.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/aggregate_graphs.php’ 449s 449s 0K .......... .......... .......... . 5.47G=0s 449s 449s 2025-02-19 11:06:40 (5.47 GB/s) - ‘localhost/cacti/aggregate_graphs.php’ saved [32294] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/pollers.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/pollers.php’ 449s 449s 0K .......... .......... .......... .... 6.85G=0s 449s 449s 2025-02-19 11:06:40 (6.85 GB/s) - ‘localhost/cacti/pollers.php’ saved [35832] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/data_queries.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/data_queries.php’ 449s 449s 0K .......... .......... .......... .......... .......... 6.16G 449s 50K 892G=0s 449s 449s 2025-02-19 11:06:40 (6.21 GB/s) - ‘localhost/cacti/data_queries.php’ saved [51679] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/data_input.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/data_input.php’ 449s 449s 0K .......... .......... .......... .......... .......... 5.74G 449s 50K 479G=0s 449s 449s 2025-02-19 11:06:40 (5.77 GB/s) - ‘localhost/cacti/data_input.php’ saved [51457] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/host_templates.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/host_templates.php’ 449s 449s 0K .......... .......... .......... .......... .......... 4.00G 449s 50K .......... ....... 86.2M=0s 449s 449s 2025-02-19 11:06:40 (313 MB/s) - ‘localhost/cacti/host_templates.php’ saved [69174] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/graph_templates.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/graph_templates.php’ 449s 449s 0K .......... .......... .......... .......... .......... 3.81G 449s 50K .. 4.54T=0s 449s 449s 2025-02-19 11:06:40 (3.99 GB/s) - ‘localhost/cacti/graph_templates.php’ saved [53696] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/data_templates.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/data_templates.php’ 449s 449s 0K .......... .......... .......... .......... .......... 477M 449s 50K ..... 9.87T=0s 449s 449s 2025-02-19 11:06:40 (528 MB/s) - ‘localhost/cacti/data_templates.php’ saved [56627] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/aggregate_templates.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/aggregate_templates.php’ 449s 449s 0K .......... .......... .......... . 1.26G=0s 449s 449s 2025-02-19 11:06:40 (1.26 GB/s) - ‘localhost/cacti/aggregate_templates.php’ saved [31899] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/color_templates.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/color_templates.php’ 449s 449s 0K .......... .......... .......... ... 2.16G=0s 449s 449s 2025-02-19 11:06:40 (2.16 GB/s) - ‘localhost/cacti/color_templates.php’ saved [34055] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/automation_networks.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/automation_networks.php’ 449s 449s 0K .......... .......... .......... ... 1.03G=0s 449s 449s 2025-02-19 11:06:40 (1.03 GB/s) - ‘localhost/cacti/automation_networks.php’ saved [34027] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/automation_devices.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/automation_devices.php’ 449s 449s 0K .......... .......... .......... .... 5.17G=0s 449s 449s 2025-02-19 11:06:40 (5.17 GB/s) - ‘localhost/cacti/automation_devices.php’ saved [34915] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/automation_templates.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/automation_templates.php’ 449s 449s 0K .......... .......... .......... 4.85G=0s 449s 449s 2025-02-19 11:06:40 (4.85 GB/s) - ‘localhost/cacti/automation_templates.php’ saved [31663] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/automation_graph_rules.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/automation_graph_rules.php’ 449s 449s 0K .......... .......... .......... ... 5.66G=0s 449s 449s 2025-02-19 11:06:40 (5.66 GB/s) - ‘localhost/cacti/automation_graph_rules.php’ saved [34701] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/automation_tree_rules.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/automation_tree_rules.php’ 449s 449s 0K .......... .......... .......... ... 5.84G=0s 449s 449s 2025-02-19 11:06:40 (5.84 GB/s) - ‘localhost/cacti/automation_tree_rules.php’ saved [34225] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/data_source_profiles.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/data_source_profiles.php’ 449s 449s 0K .......... .......... .......... .... 4.06G=0s 449s 449s 2025-02-19 11:06:40 (4.06 GB/s) - ‘localhost/cacti/data_source_profiles.php’ saved [35057] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/automation_snmp.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/automation_snmp.php’ 449s 449s 0K .......... .......... .......... .. 4.43G=0s 449s 449s 2025-02-19 11:06:40 (4.43 GB/s) - ‘localhost/cacti/automation_snmp.php’ saved [33137] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/cdef.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/cdef.php’ 449s 449s 0K .......... .......... .......... .......... ....... 2.37G=0s 449s 449s 2025-02-19 11:06:40 (2.37 GB/s) - ‘localhost/cacti/cdef.php’ saved [48819] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/vdef.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/vdef.php’ 449s 449s 0K .......... .......... .......... .... 4.03G=0s 449s 449s 2025-02-19 11:06:40 (4.03 GB/s) - ‘localhost/cacti/vdef.php’ saved [35137] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/color.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/color.php’ 449s 449s 0K .......... .......... .......... .......... .......... 2.35G 449s 50K .... 7.45T=0s 449s 449s 2025-02-19 11:06:40 (2.54 GB/s) - ‘localhost/cacti/color.php’ saved [55296] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/gprint_presets.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/gprint_presets.php’ 449s 449s 0K .......... .......... .......... ....... 4.07G=0s 449s 449s 2025-02-19 11:06:40 (4.07 GB/s) - ‘localhost/cacti/gprint_presets.php’ saved [38626] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/templates_import.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/templates_import.php’ 449s 449s 0K .......... .......... ......... 3.64G=0s 449s 449s 2025-02-19 11:06:40 (3.64 GB/s) - ‘localhost/cacti/templates_import.php’ saved [30260] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/package_import.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/package_import.php’ 449s 449s 0K .......... .......... .......... .. 3.64G=0s 449s 449s 2025-02-19 11:06:40 (3.64 GB/s) - ‘localhost/cacti/package_import.php’ saved [33201] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/templates_export.php 449s Reusing existing connection to [localhost]:80. 449s HTTP request sent, awaiting response... 200 OK 449s Length: unspecified [text/html] 449s Saving to: ‘localhost/cacti/templates_export.php’ 449s 449s 0K .......... .......... ........ 4.35G=0s 449s 449s 2025-02-19 11:06:40 (4.35 GB/s) - ‘localhost/cacti/templates_export.php’ saved [28676] 449s 449s --2025-02-19 11:06:40-- http://localhost/cacti/settings.php 449s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/settings.php’ 450s 450s 0K .......... .......... .......... .......... .......... 1.75G 450s 50K .......... .......... .......... .......... ...... 548M=0s 450s 450s 2025-02-19 11:06:40 (858 MB/s) - ‘localhost/cacti/settings.php’ saved [98424] 450s 450s --2025-02-19 11:06:40-- http://localhost/cacti/user_admin.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/user_admin.php’ 450s 450s 0K .......... .......... .......... .... 3.85G=0s 450s 450s 2025-02-19 11:06:41 (3.85 GB/s) - ‘localhost/cacti/user_admin.php’ saved [35298] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/user_group_admin.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/user_group_admin.php’ 450s 450s 0K .......... .......... .......... . 2.52G=0s 450s 450s 2025-02-19 11:06:41 (2.52 GB/s) - ‘localhost/cacti/user_group_admin.php’ saved [32555] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/user_domains.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/user_domains.php’ 450s 450s 0K .......... .......... .......... . 4.46G=0s 450s 450s 2025-02-19 11:06:41 (4.46 GB/s) - ‘localhost/cacti/user_domains.php’ saved [32498] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/plugins.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/plugins.php’ 450s 450s 0K .......... .......... .......... . 4.45G=0s 450s 450s 2025-02-19 11:06:41 (4.45 GB/s) - ‘localhost/cacti/plugins.php’ saved [32079] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/utilities.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/utilities.php’ 450s 450s 0K .......... .......... ........ 5.20G=0s 450s 450s 2025-02-19 11:06:41 (5.20 GB/s) - ‘localhost/cacti/utilities.php’ saved [29247] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/links.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/links.php’ 450s 450s 0K .......... .......... .......... . 4.25G=0s 450s 450s 2025-02-19 11:06:41 (4.25 GB/s) - ‘localhost/cacti/links.php’ saved [32025] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/data_debug.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/data_debug.php’ 450s 450s 0K .......... .......... .......... ..... 3.59G=0s 450s 450s 2025-02-19 11:06:41 (3.59 GB/s) - ‘localhost/cacti/data_debug.php’ saved [35996] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/about.php 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/about.php’ 450s 450s 0K .......... .......... ..... 4.68G=0s 450s 450s 2025-02-19 11:06:41 (4.68 GB/s) - ‘localhost/cacti/about.php’ saved [26028] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 314 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png’ 450s 450s 0K 100% 139M=0s 450s 450s 2025-02-19 11:06:41 (139 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_highlight-soft_75_cccccc_1x100.png’ saved [314/314] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 312 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png’ 450s 450s 0K 100% 36.4M=0s 450s 450s 2025-02-19 11:06:41 (36.4 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_e6e6e6_1x400.png’ saved [312/312] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 318 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png’ 450s 450s 0K 100% 207M=0s 450s 450s 2025-02-19 11:06:41 (207 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_75_dadada_1x400.png’ saved [318/318] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 265 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png’ 450s 450s 0K 100% 157M=0s 450s 450s 2025-02-19 11:06:41 (157 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_65_ffffff_1x400.png’ saved [265/265] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 380 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png’ 450s 450s 0K 100% 175M=0s 450s 450s 2025-02-19 11:06:41 (175 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_55_fbf9ee_1x400.png’ saved [380/380] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 382 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png’ 450s 450s 0K 100% 233M=0s 450s 450s 2025-02-19 11:06:41 (233 MB/s) - ‘localhost/cacti/include/themes/modern/images/ui-bg_glass_95_fef1ec_1x400.png’ saved [382/382] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-icons_222222_256x240.png 450s Connecting to localhost (localhost)|::1|:80... connected. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3794 (3.7K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_222222_256x240.png’ 450s 450s 0K ... 100% 2.82G=0s 450s 450s 2025-02-19 11:06:41 (2.82 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_222222_256x240.png’ saved [3794/3794] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-icons_454545_256x240.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3794 (3.7K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_454545_256x240.png’ 450s 450s 0K ... 100% 2.57G=0s 450s 450s 2025-02-19 11:06:41 (2.57 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_454545_256x240.png’ saved [3794/3794] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-icons_2e83ff_256x240.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3846 (3.8K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_2e83ff_256x240.png’ 450s 450s 0K ... 100% 3.03G=0s 450s 450s 2025-02-19 11:06:41 (3.03 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_2e83ff_256x240.png’ saved [3846/3846] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-icons_cd0a0a_256x240.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3846 (3.8K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_cd0a0a_256x240.png’ 450s 450s 0K ... 100% 1.73G=0s 450s 450s 2025-02-19 11:06:41 (1.73 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_cd0a0a_256x240.png’ saved [3846/3846] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/ui-icons_888888_256x240.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3794 (3.7K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/ui-icons_888888_256x240.png’ 450s 450s 0K ... 100% 2.80G=0s 450s 450s 2025-02-19 11:06:41 (2.80 GB/s) - ‘localhost/cacti/include/themes/modern/images/ui-icons_888888_256x240.png’ saved [3794/3794] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/default/32px.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5478 (5.3K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/default/32px.png’ 450s 450s 0K ..... 100% 3.25G=0s 450s 450s 2025-02-19 11:06:41 (3.25 GB/s) - ‘localhost/cacti/include/themes/modern/default/32px.png’ saved [5478/5478] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/default/throbber.gif 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1849 (1.8K) [image/gif] 450s Saving to: ‘localhost/cacti/include/themes/modern/default/throbber.gif’ 450s 450s 0K . 100% 1.42G=0s 450s 450s 2025-02-19 11:06:41 (1.42 GB/s) - ‘localhost/cacti/include/themes/modern/default/throbber.gif’ saved [1849/1849] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/default/40px.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1896 (1.9K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/default/40px.png’ 450s 450s 0K . 100% 1.51G=0s 450s 450s 2025-02-19 11:06:41 (1.51 GB/s) - ‘localhost/cacti/include/themes/modern/default/40px.png’ saved [1896/1896] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/map.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 75486 (74K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/map.png’ 450s 450s 0K .......... .......... .......... .......... .......... 67% 6.29G 0s 450s 50K .......... .......... ... 100% 352M=0s 450s 450s 2025-02-19 11:06:41 (981 MB/s) - ‘localhost/cacti/include/themes/modern/images/map.png’ saved [75486/75486] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/128/map.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 37070 (36K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/128/map.png’ 450s 450s 0K .......... .......... .......... ...... 100% 10.2G=0s 450s 450s 2025-02-19 11:06:41 (10.2 GB/s) - ‘localhost/cacti/include/themes/modern/images/128/map.png’ saved [37070/37070] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/map-opacity.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 94 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/map-opacity.png’ 450s 450s 0K 100% 93.2M=0s 450s 450s 2025-02-19 11:06:41 (93.2 MB/s) - ‘localhost/cacti/include/themes/modern/images/map-opacity.png’ saved [94/94] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/map-pointer.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 257 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/map-pointer.png’ 450s 450s 0K 100% 187M=0s 450s 450s 2025-02-19 11:06:41 (187 MB/s) - ‘localhost/cacti/include/themes/modern/images/map-pointer.png’ saved [257/257] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/bar.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 322 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/bar.png’ 450s 450s 0K 100% 257M=0s 450s 450s 2025-02-19 11:06:41 (257 MB/s) - ‘localhost/cacti/include/themes/modern/images/bar.png’ saved [322/322] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/128/bar.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 849 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/128/bar.png’ 450s 450s 0K 100% 717M=0s 450s 450s 2025-02-19 11:06:41 (717 MB/s) - ‘localhost/cacti/include/themes/modern/images/128/bar.png’ saved [849/849] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/bar-opacity.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 93 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/bar-opacity.png’ 450s 450s 0K 100% 72.0M=0s 450s 450s 2025-02-19 11:06:41 (72.0 MB/s) - ‘localhost/cacti/include/themes/modern/images/bar-opacity.png’ saved [93/93] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/bar-alpha.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1792 (1.8K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/bar-alpha.png’ 450s 450s 0K . 100% 1.38G=0s 450s 450s 2025-02-19 11:06:41 (1.38 GB/s) - ‘localhost/cacti/include/themes/modern/images/bar-alpha.png’ saved [1792/1792] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/128/bar-alpha.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1138 (1.1K) [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/128/bar-alpha.png’ 450s 450s 0K . 100% 776M=0s 450s 450s 2025-02-19 11:06:41 (776 MB/s) - ‘localhost/cacti/include/themes/modern/images/128/bar-alpha.png’ saved [1138/1138] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/bar-pointer.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 137 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/bar-pointer.png’ 450s 450s 0K 100% 99.6M=0s 450s 450s 2025-02-19 11:06:41 (99.6 MB/s) - ‘localhost/cacti/include/themes/modern/images/bar-pointer.png’ saved [137/137] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/preview-opacity.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 94 [image/png] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/preview-opacity.png’ 450s 450s 0K 100% 71.9M=0s 450s 450s 2025-02-19 11:06:41 (71.9 MB/s) - ‘localhost/cacti/include/themes/modern/images/preview-opacity.png’ saved [94/94] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?v=1.2.0 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 220460 (215K) [application/vnd.ms-fontobject] 450s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?v=1.2.0’ 450s 450s 0K .......... .......... .......... .......... .......... 23% 5.31G 0s 450s 50K .......... .......... .......... .......... .......... 46% 593M 0s 450s 100K .......... .......... .......... .......... .......... 69% 634M 0s 450s 150K .......... .......... .......... .......... .......... 92% 557M 0s 450s 200K .......... ..... 100% 28.5T=0s 450s 450s 2025-02-19 11:06:41 (821 MB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?v=1.2.0’ saved [220460/220460] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.eot? 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 220460 (215K) [application/vnd.ms-fontobject] 450s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?’ 450s 450s 0K .......... .......... .......... .......... .......... 23% 5.39G 0s 450s 50K .......... .......... .......... .......... .......... 46% 524M 0s 450s 100K .......... .......... .......... .......... .......... 69% 605M 0s 450s 150K .......... .......... .......... .......... .......... 92% 513M 0s 450s 200K .......... ..... 100% 28.5T=0s 450s 450s 2025-02-19 11:06:41 (757 MB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.eot?’ saved [220460/220460] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.woff2?v=1.2.0 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 110116 (108K) [font/woff2] 450s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff2?v=1.2.0’ 450s 450s 0K .......... .......... .......... .......... .......... 46% 4.33G 0s 450s 50K .......... .......... .......... .......... .......... 92% 568M 0s 450s 100K ....... 100% 14.0T=0s 450s 450s 2025-02-19 11:06:41 (1.06 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff2?v=1.2.0’ saved [110116/110116] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.woff?v=1.2.0 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 137068 (134K) [font/woff] 450s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff?v=1.2.0’ 450s 450s 0K .......... .......... .......... .......... .......... 37% 5.38G 0s 450s 50K .......... .......... .......... .......... .......... 74% 506M 0s 450s 100K .......... .......... .......... ... 100% 379M=0s 450s 450s 2025-02-19 11:06:41 (678 MB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.woff?v=1.2.0’ saved [137068/137068] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.ttf?v=1.2.0 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 220272 (215K) [font/ttf] 450s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.ttf?v=1.2.0’ 450s 450s 0K .......... .......... .......... .......... .......... 23% 9.15G 0s 450s 50K .......... .......... .......... .......... .......... 46% 560M 0s 450s 100K .......... .......... .......... .......... .......... 69% 668M 0s 450s 150K .......... .......... .......... .......... .......... 92% 696M 0s 450s 200K .......... ..... 100% 28.1T=0s 450s 450s 2025-02-19 11:06:41 (891 MB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.ttf?v=1.2.0’ saved [220272/220272] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/fa/fonts/forkawesome-webfont.svg?v=1.2.0 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 560561 (547K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.svg?v=1.2.0’ 450s 450s 0K .......... .......... .......... .......... .......... 9% 7.61G 0s 450s 50K .......... .......... .......... .......... .......... 18% 787M 0s 450s 100K .......... .......... .......... .......... .......... 27% 991M 0s 450s 150K .......... .......... .......... .......... .......... 36% 909M 0s 450s 200K .......... .......... .......... .......... .......... 45% 93.1T 0s 450s 250K .......... .......... .......... .......... .......... 54% 1021M 0s 450s 300K .......... .......... .......... .......... .......... 63% 1.04G 0s 450s 350K .......... .......... .......... .......... .......... 73% 878M 0s 450s 400K .......... .......... .......... .......... .......... 82% 1.14G 0s 450s 450K .......... .......... .......... .......... .......... 91% 93.1T 0s 450s 500K .......... .......... .......... .......... ....... 100% 781M=0s 450s 450s 2025-02-19 11:06:41 (1.24 GB/s) - ‘localhost/cacti/include/fa/fonts/forkawesome-webfont.svg?v=1.2.0’ saved [560561/560561] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/xx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 283 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xx.svg’ 450s 450s 0K 100% 222M=0s 450s 450s 2025-02-19 11:06:41 (222 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xx.svg’ saved [283/283] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/xx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 241 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xx.svg’ 450s 450s 0K 100% 109M=0s 450s 450s 2025-02-19 11:06:41 (109 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xx.svg’ saved [241/241] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ad.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 33869 (33K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ad.svg’ 450s 450s 0K .......... .......... .......... ... 100% 5.71G=0s 450s 450s 2025-02-19 11:06:41 (5.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ad.svg’ saved [33869/33869] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ad.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 32654 (32K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ad.svg’ 450s 450s 0K .......... .......... .......... . 100% 7.15G=0s 450s 450s 2025-02-19 11:06:41 (7.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ad.svg’ saved [32654/32654] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ae.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 251 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ae.svg’ 450s 450s 0K 100% 226M=0s 450s 450s 2025-02-19 11:06:41 (226 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ae.svg’ saved [251/251] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ae.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 259 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ae.svg’ 450s 450s 0K 100% 227M=0s 450s 450s 2025-02-19 11:06:41 (227 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ae.svg’ saved [259/259] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/af.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 21243 (21K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/af.svg’ 450s 450s 0K .......... .......... 100% 8.51G=0s 450s 450s 2025-02-19 11:06:41 (8.51 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/af.svg’ saved [21243/21243] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/af.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 21109 (21K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/af.svg’ 450s 450s 0K .......... .......... 100% 7.88G=0s 450s 450s 2025-02-19 11:06:41 (7.88 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/af.svg’ saved [21109/21109] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ag.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 756 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ag.svg’ 450s 450s 0K 100% 619M=0s 450s 450s 2025-02-19 11:06:41 (619 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ag.svg’ saved [756/756] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ag.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 774 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ag.svg’ 450s 450s 0K 100% 579M=0s 450s 450s 2025-02-19 11:06:41 (579 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ag.svg’ saved [774/774] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ai.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2355 (2.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ai.svg’ 450s 450s 0K .. 100% 1.74G=0s 450s 450s 2025-02-19 11:06:41 (1.74 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ai.svg’ saved [2355/2355] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ai.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2364 (2.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ai.svg’ 450s 450s 0K .. 100% 1.53G=0s 450s 450s 2025-02-19 11:06:41 (1.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ai.svg’ saved [2364/2364] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/al.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3217 (3.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/al.svg’ 450s 450s 0K ... 100% 2.11G=0s 450s 450s 2025-02-19 11:06:41 (2.11 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/al.svg’ saved [3217/3217] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/al.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3219 (3.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/al.svg’ 450s 450s 0K ... 100% 2.31G=0s 450s 450s 2025-02-19 11:06:41 (2.31 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/al.svg’ saved [3219/3219] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/am.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 228 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/am.svg’ 450s 450s 0K 100% 175M=0s 450s 450s 2025-02-19 11:06:41 (175 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/am.svg’ saved [228/228] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/am.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 236 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/am.svg’ 450s 450s 0K 100% 195M=0s 450s 450s 2025-02-19 11:06:41 (195 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/am.svg’ saved [236/236] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ao.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1596 (1.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ao.svg’ 450s 450s 0K . 100% 1.28G=0s 450s 450s 2025-02-19 11:06:41 (1.28 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ao.svg’ saved [1596/1596] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ao.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1596 (1.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ao.svg’ 450s 450s 0K . 100% 1.17G=0s 450s 450s 2025-02-19 11:06:41 (1.17 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ao.svg’ saved [1596/1596] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/aq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2823 (2.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aq.svg’ 450s 450s 0K .. 100% 1.62G=0s 450s 450s 2025-02-19 11:06:41 (1.62 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aq.svg’ saved [2823/2823] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/aq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2950 (2.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aq.svg’ 450s 450s 0K .. 100% 2.02G=0s 450s 450s 2025-02-19 11:06:41 (2.02 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aq.svg’ saved [2950/2950] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ar.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3570 (3.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ar.svg’ 450s 450s 0K ... 100% 2.56G=0s 450s 450s 2025-02-19 11:06:41 (2.56 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ar.svg’ saved [3570/3570] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ar.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3603 (3.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ar.svg’ 450s 450s 0K ... 100% 2.63G=0s 450s 450s 2025-02-19 11:06:41 (2.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ar.svg’ saved [3603/3603] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/as.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 32333 (32K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/as.svg’ 450s 450s 0K .......... .......... .......... . 100% 8.87G=0s 450s 450s 2025-02-19 11:06:41 (8.87 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/as.svg’ saved [32333/32333] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/as.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 32576 (32K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/as.svg’ 450s 450s 0K .......... .......... .......... . 100% 9.58G=0s 450s 450s 2025-02-19 11:06:41 (9.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/as.svg’ saved [32576/32576] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/at.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 237 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/at.svg’ 450s 450s 0K 100% 221M=0s 450s 450s 2025-02-19 11:06:41 (221 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/at.svg’ saved [237/237] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/at.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 239 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/at.svg’ 450s 450s 0K 100% 192M=0s 450s 450s 2025-02-19 11:06:41 (192 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/at.svg’ saved [239/239] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/au.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1341 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/au.svg’ 450s 450s 0K . 100% 969M=0s 450s 450s 2025-02-19 11:06:41 (969 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/au.svg’ saved [1341/1341] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/au.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1303 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/au.svg’ 450s 450s 0K . 100% 1.09G=0s 450s 450s 2025-02-19 11:06:41 (1.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/au.svg’ saved [1303/1303] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/aw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9945 (9.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aw.svg’ 450s 450s 0K ......... 100% 4.85G=0s 450s 450s 2025-02-19 11:06:41 (4.85 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/aw.svg’ saved [9945/9945] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/aw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 12079 (12K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aw.svg’ 450s 450s 0K .......... . 100% 5.53G=0s 450s 450s 2025-02-19 11:06:41 (5.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/aw.svg’ saved [12079/12079] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ax.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 556 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ax.svg’ 450s 450s 0K 100% 427M=0s 450s 450s 2025-02-19 11:06:41 (427 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ax.svg’ saved [556/556] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ax.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 544 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ax.svg’ 450s 450s 0K 100% 457M=0s 450s 450s 2025-02-19 11:06:41 (457 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ax.svg’ saved [544/544] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/az.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 509 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/az.svg’ 450s 450s 0K 100% 506M=0s 450s 450s 2025-02-19 11:06:41 (506 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/az.svg’ saved [509/509] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/az.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 495 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/az.svg’ 450s 450s 0K 100% 401M=0s 450s 450s 2025-02-19 11:06:41 (401 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/az.svg’ saved [495/495] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ba.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1306 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ba.svg’ 450s 450s 0K . 100% 1015M=0s 450s 450s 2025-02-19 11:06:41 (1015 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ba.svg’ saved [1306/1306] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ba.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1244 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ba.svg’ 450s 450s 0K . 100% 1.05G=0s 450s 450s 2025-02-19 11:06:41 (1.05 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ba.svg’ saved [1244/1244] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 613 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bb.svg’ 450s 450s 0K 100% 531M=0s 450s 450s 2025-02-19 11:06:41 (531 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bb.svg’ saved [613/613] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 616 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bb.svg’ 450s 450s 0K 100% 622M=0s 450s 450s 2025-02-19 11:06:41 (622 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bb.svg’ saved [616/616] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 187 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bd.svg’ 450s 450s 0K 100% 151M=0s 450s 450s 2025-02-19 11:06:41 (151 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bd.svg’ saved [187/187] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 189 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bd.svg’ 450s 450s 0K 100% 164M=0s 450s 450s 2025-02-19 11:06:41 (164 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bd.svg’ saved [189/189] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/be.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 287 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/be.svg’ 450s 450s 0K 100% 266M=0s 450s 450s 2025-02-19 11:06:41 (266 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/be.svg’ saved [287/287] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/be.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 287 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/be.svg’ 450s 450s 0K 100% 227M=0s 450s 450s 2025-02-19 11:06:41 (227 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/be.svg’ saved [287/287] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 353 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bf.svg’ 450s 450s 0K 100% 295M=0s 450s 450s 2025-02-19 11:06:41 (295 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bf.svg’ saved [353/353] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 379 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bf.svg’ 450s 450s 0K 100% 370M=0s 450s 450s 2025-02-19 11:06:41 (370 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bf.svg’ saved [379/379] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 283 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bg.svg’ 450s 450s 0K 100% 232M=0s 450s 450s 2025-02-19 11:06:41 (232 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bg.svg’ saved [283/283] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 291 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bg.svg’ 450s 450s 0K 100% 285M=0s 450s 450s 2025-02-19 11:06:41 (285 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bg.svg’ saved [291/291] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 252 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bh.svg’ 450s 450s 0K 100% 188M=0s 450s 450s 2025-02-19 11:06:41 (188 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bh.svg’ saved [252/252] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 276 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bh.svg’ 450s 450s 0K 100% 209M=0s 450s 450s 2025-02-19 11:06:41 (209 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bh.svg’ saved [276/276] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1079 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bi.svg’ 450s 450s 0K . 100% 924M=0s 450s 450s 2025-02-19 11:06:41 (924 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bi.svg’ saved [1079/1079] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1054 (1.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bi.svg’ 450s 450s 0K . 100% 876M=0s 450s 450s 2025-02-19 11:06:41 (876 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bi.svg’ saved [1054/1054] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 499 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bj.svg’ 450s 450s 0K 100% 382M=0s 450s 450s 2025-02-19 11:06:41 (382 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bj.svg’ saved [499/499] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 502 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bj.svg’ 450s 450s 0K 100% 489M=0s 450s 450s 2025-02-19 11:06:41 (489 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bj.svg’ saved [502/502] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bl.svg’ 450s 450s 0K 100% 176M=0s 450s 450s 2025-02-19 11:06:41 (176 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bl.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bl.svg’ 450s 450s 0K 100% 236M=0s 450s 450s 2025-02-19 11:06:41 (236 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bl.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 22843 (22K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bm.svg’ 450s 450s 0K .......... .......... .. 100% 7.54G=0s 450s 450s 2025-02-19 11:06:41 (7.54 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bm.svg’ saved [22843/22843] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 22778 (22K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bm.svg’ 450s 450s 0K .......... .......... .. 100% 8.68G=0s 450s 450s 2025-02-19 11:06:41 (8.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bm.svg’ saved [22778/22778] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 14368 (14K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bn.svg’ 450s 450s 0K .......... .... 100% 5.78G=0s 450s 450s 2025-02-19 11:06:41 (5.78 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bn.svg’ saved [14368/14368] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 14507 (14K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bn.svg’ 450s 450s 0K .......... .... 100% 5.83G=0s 450s 450s 2025-02-19 11:06:41 (5.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bn.svg’ saved [14507/14507] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 113450 (111K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bo.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 45% 7.93G 0s 450s 50K .......... .......... .......... .......... .......... 90% 843M 0s 450s 100K .......... 100% 20.1T=0s 450s 450s 2025-02-19 11:06:41 (1.65 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bo.svg’ saved [113450/113450] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 115459 (113K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bo.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 44% 9.50G 0s 450s 50K .......... .......... .......... .......... .......... 88% 662M 0s 450s 100K .......... .. 100% 23.8T=0s 450s 450s 2025-02-19 11:06:41 (1.37 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bo.svg’ saved [115459/115459] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 221 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bq.svg’ 450s 450s 0K 100% 197M=0s 450s 450s 2025-02-19 11:06:41 (197 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bq.svg’ saved [221/221] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 225 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bq.svg’ 450s 450s 0K 100% 158M=0s 450s 450s 2025-02-19 11:06:41 (158 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bq.svg’ saved [225/225] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/br.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8197 (8.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/br.svg’ 450s 450s 0K ........ 100% 4.83G=0s 450s 450s 2025-02-19 11:06:41 (4.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/br.svg’ saved [8197/8197] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/br.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7786 (7.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/br.svg’ 450s 450s 0K ....... 100% 3.45G=0s 450s 450s 2025-02-19 11:06:41 (3.45 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/br.svg’ saved [7786/7786] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bs.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 549 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bs.svg’ 450s 450s 0K 100% 517M=0s 450s 450s 2025-02-19 11:06:41 (517 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bs.svg’ saved [549/549] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bs.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 571 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bs.svg’ 450s 450s 0K 100% 459M=0s 450s 450s 2025-02-19 11:06:41 (459 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bs.svg’ saved [571/571] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 25314 (25K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bt.svg’ 450s 450s 0K .......... .......... .... 100% 7.49G=0s 450s 450s 2025-02-19 11:06:41 (7.49 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bt.svg’ saved [25314/25314] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 25135 (25K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bt.svg’ 450s 450s 0K .......... .......... .... 100% 8.58G=0s 450s 450s 2025-02-19 11:06:41 (8.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bt.svg’ saved [25135/25135] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 582 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bv.svg’ 450s 450s 0K 100% 588M=0s 450s 450s 2025-02-19 11:06:41 (588 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bv.svg’ saved [582/582] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 585 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bv.svg’ 450s 450s 0K 100% 474M=0s 450s 450s 2025-02-19 11:06:41 (474 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bv.svg’ saved [585/585] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 249 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bw.svg’ 450s 450s 0K 100% 239M=0s 450s 450s 2025-02-19 11:06:41 (239 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bw.svg’ saved [249/249] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 251 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bw.svg’ 450s 450s 0K 100% 230M=0s 450s 450s 2025-02-19 11:06:41 (230 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bw.svg’ saved [251/251] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/by.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5959 (5.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/by.svg’ 450s 450s 0K ..... 100% 3.39G=0s 450s 450s 2025-02-19 11:06:41 (3.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/by.svg’ saved [5959/5959] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/by.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6089 (5.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/by.svg’ 450s 450s 0K ..... 100% 3.52G=0s 450s 450s 2025-02-19 11:06:41 (3.52 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/by.svg’ saved [6089/6089] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/bz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 46844 (46K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bz.svg’ 450s 450s 0K .......... .......... .......... .......... ..... 100% 11.6G=0s 450s 450s 2025-02-19 11:06:41 (11.6 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/bz.svg’ saved [46844/46844] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/bz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 47105 (46K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bz.svg’ 450s 450s 0K .......... .......... .......... .......... ...... 100% 13.3G=0s 450s 450s 2025-02-19 11:06:41 (13.3 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/bz.svg’ saved [47105/47105] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ca.svg 450s Connecting to localhost (localhost)|::1|:80... connected. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 643 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ca.svg’ 450s 450s 0K 100% 283M=0s 450s 450s 2025-02-19 11:06:41 (283 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ca.svg’ saved [643/643] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ca.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 644 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ca.svg’ 450s 450s 0K 100% 356M=0s 450s 450s 2025-02-19 11:06:41 (356 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ca.svg’ saved [644/644] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3153 (3.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cc.svg’ 450s 450s 0K ... 100% 1.37G=0s 450s 450s 2025-02-19 11:06:41 (1.37 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cc.svg’ saved [3153/3153] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3107 (3.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cc.svg’ 450s 450s 0K ... 100% 1.34G=0s 450s 450s 2025-02-19 11:06:41 (1.34 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cc.svg’ saved [3107/3107] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 346 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cd.svg’ 450s 450s 0K 100% 264M=0s 450s 450s 2025-02-19 11:06:41 (264 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cd.svg’ saved [346/346] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 510 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cd.svg’ 450s 450s 0K 100% 235M=0s 450s 450s 2025-02-19 11:06:41 (235 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cd.svg’ saved [510/510] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 687 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cf.svg’ 450s 450s 0K 100% 436M=0s 450s 450s 2025-02-19 11:06:41 (436 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cf.svg’ saved [687/687] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 635 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cf.svg’ 450s 450s 0K 100% 490M=0s 450s 450s 2025-02-19 11:06:41 (490 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cf.svg’ saved [635/635] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 484 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cg.svg’ 450s 450s 0K 100% 346M=0s 450s 450s 2025-02-19 11:06:41 (346 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cg.svg’ saved [484/484] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 472 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cg.svg’ 450s 450s 0K 100% 306M=0s 450s 450s 2025-02-19 11:06:41 (306 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cg.svg’ saved [472/472] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ch.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 290 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ch.svg’ 450s 450s 0K 100% 161M=0s 450s 450s 2025-02-19 11:06:41 (161 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ch.svg’ saved [290/290] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ch.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 288 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ch.svg’ 450s 450s 0K 100% 176M=0s 450s 450s 2025-02-19 11:06:41 (176 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ch.svg’ saved [288/288] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ci.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 277 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ci.svg’ 450s 450s 0K 100% 180M=0s 450s 450s 2025-02-19 11:06:41 (180 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ci.svg’ saved [277/277] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ci.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 280 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ci.svg’ 450s 450s 0K 100% 217M=0s 450s 450s 2025-02-19 11:06:41 (217 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ci.svg’ saved [280/280] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ck.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1898 (1.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ck.svg’ 450s 450s 0K . 100% 915M=0s 450s 450s 2025-02-19 11:06:41 (915 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ck.svg’ saved [1898/1898] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ck.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1857 (1.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ck.svg’ 450s 450s 0K . 100% 1.20G=0s 450s 450s 2025-02-19 11:06:41 (1.20 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ck.svg’ saved [1857/1857] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 560 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cl.svg’ 450s 450s 0K 100% 340M=0s 450s 450s 2025-02-19 11:06:41 (340 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cl.svg’ saved [560/560] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 576 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cl.svg’ 450s 450s 0K 100% 360M=0s 450s 450s 2025-02-19 11:06:41 (360 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cl.svg’ saved [576/576] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 841 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cm.svg’ 450s 450s 0K 100% 435M=0s 450s 450s 2025-02-19 11:06:41 (435 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cm.svg’ saved [841/841] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 841 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cm.svg’ 450s 450s 0K 100% 459M=0s 450s 450s 2025-02-19 11:06:41 (459 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cm.svg’ saved [841/841] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 813 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cn.svg’ 450s 450s 0K 100% 456M=0s 450s 450s 2025-02-19 11:06:41 (456 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cn.svg’ saved [813/813] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 754 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cn.svg’ 450s 450s 0K 100% 426M=0s 450s 450s 2025-02-19 11:06:41 (426 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cn.svg’ saved [754/754] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/co.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 286 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/co.svg’ 450s 450s 0K 100% 196M=0s 450s 450s 2025-02-19 11:06:41 (196 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/co.svg’ saved [286/286] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/co.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 286 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/co.svg’ 450s 450s 0K 100% 208M=0s 450s 450s 2025-02-19 11:06:41 (208 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/co.svg’ saved [286/286] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 290 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cr.svg’ 450s 450s 0K 100% 244M=0s 450s 450s 2025-02-19 11:06:41 (244 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cr.svg’ saved [290/290] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 290 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cr.svg’ 450s 450s 0K 100% 139M=0s 450s 450s 2025-02-19 11:06:41 (139 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cr.svg’ saved [290/290] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 619 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cu.svg’ 450s 450s 0K 100% 462M=0s 450s 450s 2025-02-19 11:06:41 (462 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cu.svg’ saved [619/619] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 576 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cu.svg’ 450s 450s 0K 100% 303M=0s 450s 450s 2025-02-19 11:06:41 (303 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cu.svg’ saved [576/576] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1412 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cv.svg’ 450s 450s 0K . 100% 917M=0s 450s 450s 2025-02-19 11:06:41 (917 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cv.svg’ saved [1412/1412] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1360 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cv.svg’ 450s 450s 0K . 100% 623M=0s 450s 450s 2025-02-19 11:06:41 (623 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cv.svg’ saved [1360/1360] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 687 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cw.svg’ 450s 450s 0K 100% 435M=0s 450s 450s 2025-02-19 11:06:41 (435 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cw.svg’ saved [687/687] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 694 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cw.svg’ 450s 450s 0K 100% 423M=0s 450s 450s 2025-02-19 11:06:41 (423 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cw.svg’ saved [694/694] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2473 (2.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cx.svg’ 450s 450s 0K .. 100% 1.50G=0s 450s 450s 2025-02-19 11:06:41 (1.50 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cx.svg’ saved [2473/2473] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2512 (2.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cx.svg’ 450s 450s 0K .. 100% 1.53G=0s 450s 450s 2025-02-19 11:06:41 (1.53 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cx.svg’ saved [2512/2512] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5932 (5.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cy.svg’ 450s 450s 0K ..... 100% 2.85G=0s 450s 450s 2025-02-19 11:06:41 (2.85 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cy.svg’ saved [5932/5932] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6026 (5.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cy.svg’ 450s 450s 0K ..... 100% 2.25G=0s 450s 450s 2025-02-19 11:06:41 (2.25 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cy.svg’ saved [6026/6026] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 225 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cz.svg’ 450s 450s 0K 100% 153M=0s 450s 450s 2025-02-19 11:06:41 (153 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cz.svg’ saved [225/225] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 226 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cz.svg’ 450s 450s 0K 100% 181M=0s 450s 450s 2025-02-19 11:06:41 (181 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cz.svg’ saved [226/226] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/de.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 210 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/de.svg’ 450s 450s 0K 100% 155M=0s 450s 450s 2025-02-19 11:06:41 (155 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/de.svg’ saved [210/210] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/de.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 218 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/de.svg’ 450s 450s 0K 100% 151M=0s 450s 450s 2025-02-19 11:06:41 (151 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/de.svg’ saved [218/218] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 588 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dj.svg’ 450s 450s 0K 100% 339M=0s 450s 450s 2025-02-19 11:06:41 (339 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dj.svg’ saved [588/588] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 587 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dj.svg’ 450s 450s 0K 100% 372M=0s 450s 450s 2025-02-19 11:06:41 (372 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dj.svg’ saved [587/587] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 236 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dk.svg’ 450s 450s 0K 100% 137M=0s 450s 450s 2025-02-19 11:06:41 (137 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dk.svg’ saved [236/236] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 232 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dk.svg’ 450s 450s 0K 100% 133M=0s 450s 450s 2025-02-19 11:06:41 (133 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dk.svg’ saved [232/232] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15959 (16K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dm.svg’ 450s 450s 0K .......... ..... 100% 6.36G=0s 450s 450s 2025-02-19 11:06:41 (6.36 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dm.svg’ saved [15959/15959] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 16447 (16K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dm.svg’ 450s 450s 0K .......... ...... 100% 3.52G=0s 450s 450s 2025-02-19 11:06:41 (3.52 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dm.svg’ saved [16447/16447] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/do.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 51954 (51K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/do.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 98% 5.13G 0s 450s 50K 100% 1.37T=0s 450s 450s 2025-02-19 11:06:41 (5.20 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/do.svg’ saved [51954/51954] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/do.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 52714 (51K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/do.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 97% 5.68G 0s 450s 50K . 100% 2.75T=0s 450s 450s 2025-02-19 11:06:41 (5.85 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/do.svg’ saved [52714/52714] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 294 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dz.svg’ 450s 450s 0K 100% 182M=0s 450s 450s 2025-02-19 11:06:41 (182 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dz.svg’ saved [294/294] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 306 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dz.svg’ 450s 450s 0K 100% 211M=0s 450s 450s 2025-02-19 11:06:41 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dz.svg’ saved [306/306] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ec.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 29345 (29K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ec.svg’ 450s 450s 0K .......... .......... ........ 100% 4.93G=0s 450s 450s 2025-02-19 11:06:41 (4.93 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ec.svg’ saved [29345/29345] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ec.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 29901 (29K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ec.svg’ 450s 450s 0K .......... .......... ......... 100% 5.54G=0s 450s 450s 2025-02-19 11:06:41 (5.54 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ec.svg’ saved [29901/29901] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ee.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 318 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ee.svg’ 450s 450s 0K 100% 238M=0s 450s 450s 2025-02-19 11:06:41 (238 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ee.svg’ saved [318/318] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ee.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 349 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ee.svg’ 450s 450s 0K 100% 198M=0s 450s 450s 2025-02-19 11:06:41 (198 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ee.svg’ saved [349/349] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9962 (9.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eg.svg’ 450s 450s 0K ......... 100% 3.83G=0s 450s 450s 2025-02-19 11:06:41 (3.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eg.svg’ saved [9962/9962] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9976 (9.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eg.svg’ 450s 450s 0K ......... 100% 4.02G=0s 450s 450s 2025-02-19 11:06:41 (4.02 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eg.svg’ saved [9976/9976] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 790 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eh.svg’ 450s 450s 0K 100% 476M=0s 450s 450s 2025-02-19 11:06:41 (476 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eh.svg’ saved [790/790] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 581 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eh.svg’ 450s 450s 0K 100% 383M=0s 450s 450s 2025-02-19 11:06:41 (383 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eh.svg’ saved [581/581] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/er.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3199 (3.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/er.svg’ 450s 450s 0K ... 100% 1.86G=0s 450s 450s 2025-02-19 11:06:41 (1.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/er.svg’ saved [3199/3199] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/er.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3391 (3.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/er.svg’ 450s 450s 0K ... 100% 1.58G=0s 450s 450s 2025-02-19 11:06:41 (1.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/er.svg’ saved [3391/3391] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 91815 (90K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 55% 3.01G 0s 450s 50K .......... .......... .......... ......... 100% 689M=0s 450s 450s 2025-02-19 11:06:41 (1.19 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es.svg’ saved [91815/91815] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 93669 (91K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 54% 7.19G 0s 450s 50K .......... .......... .......... .......... . 100% 721M=0s 450s 450s 2025-02-19 11:06:41 (1.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es.svg’ saved [93669/93669] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/et.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1226 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/et.svg’ 450s 450s 0K . 100% 685M=0s 450s 450s 2025-02-19 11:06:41 (685 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/et.svg’ saved [1226/1226] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/et.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1225 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/et.svg’ 450s 450s 0K . 100% 774M=0s 450s 450s 2025-02-19 11:06:41 (774 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/et.svg’ saved [1225/1225] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 234 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fi.svg’ 450s 450s 0K 100% 136M=0s 450s 450s 2025-02-19 11:06:41 (136 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fi.svg’ saved [234/234] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 237 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fi.svg’ 450s 450s 0K 100% 213M=0s 450s 450s 2025-02-19 11:06:41 (213 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fi.svg’ saved [237/237] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 25907 (25K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fj.svg’ 450s 450s 0K .......... .......... ..... 100% 4.92G=0s 450s 450s 2025-02-19 11:06:41 (4.92 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fj.svg’ saved [25907/25907] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 26016 (25K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fj.svg’ 450s 450s 0K .......... .......... ..... 100% 5.36G=0s 450s 450s 2025-02-19 11:06:41 (5.36 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fj.svg’ saved [26016/26016] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 30089 (29K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fk.svg’ 450s 450s 0K .......... .......... ......... 100% 5.40G=0s 450s 450s 2025-02-19 11:06:41 (5.40 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fk.svg’ saved [30089/30089] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 30357 (30K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fk.svg’ 450s 450s 0K .......... .......... ......... 100% 7.30G=0s 450s 450s 2025-02-19 11:06:41 (7.30 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fk.svg’ saved [30357/30357] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 772 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fm.svg’ 450s 450s 0K 100% 520M=0s 450s 450s 2025-02-19 11:06:41 (520 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fm.svg’ saved [772/772] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 761 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fm.svg’ 450s 450s 0K 100% 525M=0s 450s 450s 2025-02-19 11:06:41 (525 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fm.svg’ saved [761/761] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 567 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fo.svg’ 450s 450s 0K 100% 394M=0s 450s 450s 2025-02-19 11:06:41 (394 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fo.svg’ saved [567/567] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 537 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fo.svg’ 450s 450s 0K 100% 289M=0s 450s 450s 2025-02-19 11:06:41 (289 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fo.svg’ saved [537/537] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/fr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fr.svg’ 450s 450s 0K 100% 154M=0s 450s 450s 2025-02-19 11:06:41 (154 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/fr.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/fr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fr.svg’ 450s 450s 0K 100% 103M=0s 450s 450s 2025-02-19 11:06:41 (103 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/fr.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ga.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 271 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ga.svg’ 450s 450s 0K 100% 223M=0s 450s 450s 2025-02-19 11:06:41 (223 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ga.svg’ saved [271/271] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ga.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 275 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ga.svg’ 450s 450s 0K 100% 149M=0s 450s 450s 2025-02-19 11:06:41 (149 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ga.svg’ saved [275/275] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 535 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb.svg’ 450s 450s 0K 100% 280M=0s 450s 450s 2025-02-19 11:06:41 (280 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb.svg’ saved [535/535] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 538 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb.svg’ 450s 450s 0K 100% 310M=0s 450s 450s 2025-02-19 11:06:41 (310 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb.svg’ saved [538/538] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1732 (1.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gd.svg’ 450s 450s 0K . 100% 974M=0s 450s 450s 2025-02-19 11:06:41 (974 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gd.svg’ saved [1732/1732] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1876 (1.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gd.svg’ 450s 450s 0K . 100% 810M=0s 450s 450s 2025-02-19 11:06:41 (810 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gd.svg’ saved [1876/1876] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ge.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1362 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ge.svg’ 450s 450s 0K . 100% 744M=0s 450s 450s 2025-02-19 11:06:41 (744 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ge.svg’ saved [1362/1362] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ge.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1506 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ge.svg’ 450s 450s 0K . 100% 586M=0s 450s 450s 2025-02-19 11:06:41 (586 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ge.svg’ saved [1506/1506] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gf.svg’ 450s 450s 0K 100% 99.1M=0s 450s 450s 2025-02-19 11:06:41 (99.1 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gf.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gf.svg’ 450s 450s 0K 100% 197M=0s 450s 450s 2025-02-19 11:06:41 (197 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gf.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 604 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gg.svg’ 450s 450s 0K 100% 375M=0s 450s 450s 2025-02-19 11:06:41 (375 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gg.svg’ saved [604/604] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 634 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gg.svg’ 450s 450s 0K 100% 395M=0s 450s 450s 2025-02-19 11:06:41 (395 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gg.svg’ saved [634/634] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 278 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gh.svg’ 450s 450s 0K 100% 162M=0s 450s 450s 2025-02-19 11:06:41 (162 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gh.svg’ saved [278/278] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 293 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gh.svg’ 450s 450s 0K 100% 216M=0s 450s 450s 2025-02-19 11:06:41 (216 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gh.svg’ saved [293/293] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2952 (2.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gi.svg’ 450s 450s 0K .. 100% 1.39G=0s 450s 450s 2025-02-19 11:06:41 (1.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gi.svg’ saved [2952/2952] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2944 (2.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gi.svg’ 450s 450s 0K .. 100% 1.27G=0s 450s 450s 2025-02-19 11:06:41 (1.27 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gi.svg’ saved [2944/2944] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 223 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gl.svg’ 450s 450s 0K 100% 157M=0s 450s 450s 2025-02-19 11:06:41 (157 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gl.svg’ saved [223/223] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 237 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gl.svg’ 450s 450s 0K 100% 131M=0s 450s 450s 2025-02-19 11:06:41 (131 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gl.svg’ saved [237/237] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 543 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gm.svg’ 450s 450s 0K 100% 334M=0s 450s 450s 2025-02-19 11:06:41 (334 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gm.svg’ saved [543/543] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 379 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gm.svg’ 450s 450s 0K 100% 263M=0s 450s 450s 2025-02-19 11:06:41 (263 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gm.svg’ saved [379/379] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 292 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gn.svg’ 450s 450s 0K 100% 169M=0s 450s 450s 2025-02-19 11:06:41 (169 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gn.svg’ saved [292/292] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 292 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gn.svg’ 450s 450s 0K 100% 204M=0s 450s 450s 2025-02-19 11:06:41 (204 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gn.svg’ saved [292/292] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gp.svg’ 450s 450s 0K 100% 160M=0s 450s 450s 2025-02-19 11:06:41 (160 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gp.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gp.svg’ 450s 450s 0K 100% 139M=0s 450s 450s 2025-02-19 11:06:41 (139 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gp.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5170 (5.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gq.svg’ 450s 450s 0K ..... 100% 515M=0s 450s 450s 2025-02-19 11:06:41 (515 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gq.svg’ saved [5170/5170] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gq.svg 450s Connecting to localhost (localhost)|::1|:80... connected. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5261 (5.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gq.svg’ 450s 450s 0K ..... 100% 3.05G=0s 450s 450s 2025-02-19 11:06:41 (3.05 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gq.svg’ saved [5261/5261] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 868 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gr.svg’ 450s 450s 0K 100% 69.4M=0s 450s 450s 2025-02-19 11:06:41 (69.4 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gr.svg’ saved [868/868] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 861 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gr.svg’ 450s 450s 0K 100% 378M=0s 450s 450s 2025-02-19 11:06:41 (378 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gr.svg’ saved [861/861] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gs.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 32731 (32K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gs.svg’ 450s 450s 0K .......... .......... .......... . 100% 4.75G=0s 450s 450s 2025-02-19 11:06:41 (4.75 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gs.svg’ saved [32731/32731] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gs.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 33218 (32K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gs.svg’ 450s 450s 0K .......... .......... .......... .. 100% 6.00G=0s 450s 450s 2025-02-19 11:06:41 (6.00 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gs.svg’ saved [33218/33218] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 35412 (35K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gt.svg’ 450s 450s 0K .......... .......... .......... .... 100% 5.35G=0s 450s 450s 2025-02-19 11:06:41 (5.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gt.svg’ saved [35412/35412] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 35412 (35K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gt.svg’ 450s 450s 0K .......... .......... .......... .... 100% 5.64G=0s 450s 450s 2025-02-19 11:06:41 (5.64 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gt.svg’ saved [35412/35412] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5121 (5.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gu.svg’ 450s 450s 0K ..... 100% 3.04G=0s 450s 450s 2025-02-19 11:06:41 (3.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gu.svg’ saved [5121/5121] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 4931 (4.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gu.svg’ 450s 450s 0K .... 100% 2.19G=0s 450s 450s 2025-02-19 11:06:41 (2.19 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gu.svg’ saved [4931/4931] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 831 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gw.svg’ 450s 450s 0K 100% 371M=0s 450s 450s 2025-02-19 11:06:41 (371 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gw.svg’ saved [831/831] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 907 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gw.svg’ 450s 450s 0K 100% 556M=0s 450s 450s 2025-02-19 11:06:41 (556 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gw.svg’ saved [907/907] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 485 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gy.svg’ 450s 450s 0K 100% 341M=0s 450s 450s 2025-02-19 11:06:41 (341 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gy.svg’ saved [485/485] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 478 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gy.svg’ 450s 450s 0K 100% 276M=0s 450s 450s 2025-02-19 11:06:41 (276 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gy.svg’ saved [478/478] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 728 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hk.svg’ 450s 450s 0K 100% 447M=0s 450s 450s 2025-02-19 11:06:41 (447 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hk.svg’ saved [728/728] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 716 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hk.svg’ 450s 450s 0K 100% 464M=0s 450s 450s 2025-02-19 11:06:41 (464 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hk.svg’ saved [716/716] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1341 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hm.svg’ 450s 450s 0K . 100% 925M=0s 450s 450s 2025-02-19 11:06:41 (925 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hm.svg’ saved [1341/1341] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1303 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hm.svg’ 450s 450s 0K . 100% 696M=0s 450s 450s 2025-02-19 11:06:41 (696 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hm.svg’ saved [1303/1303] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1145 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hn.svg’ 450s 450s 0K . 100% 40.9M=0s 450s 450s 2025-02-19 11:06:41 (40.9 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hn.svg’ saved [1145/1145] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1148 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hn.svg’ 450s 450s 0K . 100% 842M=0s 450s 450s 2025-02-19 11:06:41 (842 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hn.svg’ saved [1148/1148] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 41558 (41K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hr.svg’ 450s 450s 0K .......... .......... .......... .......... 100% 6.97G=0s 450s 450s 2025-02-19 11:06:41 (6.97 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hr.svg’ saved [41558/41558] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 41748 (41K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hr.svg’ 450s 450s 0K .......... .......... .......... .......... 100% 5.35G=0s 450s 450s 2025-02-19 11:06:41 (5.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hr.svg’ saved [41748/41748] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ht.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15057 (15K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ht.svg’ 450s 450s 0K .......... .... 100% 3.81G=0s 450s 450s 2025-02-19 11:06:41 (3.81 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ht.svg’ saved [15057/15057] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ht.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15143 (15K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ht.svg’ 450s 450s 0K .......... .... 100% 3.83G=0s 450s 450s 2025-02-19 11:06:41 (3.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ht.svg’ saved [15143/15143] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/hu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 271 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hu.svg’ 450s 450s 0K 100% 179M=0s 450s 450s 2025-02-19 11:06:41 (179 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/hu.svg’ saved [271/271] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/hu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 273 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hu.svg’ 450s 450s 0K 100% 200M=0s 450s 450s 2025-02-19 11:06:41 (200 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/hu.svg’ saved [273/273] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/id.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 178 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/id.svg’ 450s 450s 0K 100% 74.2M=0s 450s 450s 2025-02-19 11:06:41 (74.2 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/id.svg’ saved [178/178] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/id.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 178 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/id.svg’ 450s 450s 0K 100% 109M=0s 450s 450s 2025-02-19 11:06:41 (109 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/id.svg’ saved [178/178] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ie.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ie.svg’ 450s 450s 0K 100% 205M=0s 450s 450s 2025-02-19 11:06:41 (205 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ie.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ie.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ie.svg’ 450s 450s 0K 100% 233M=0s 450s 450s 2025-02-19 11:06:41 (233 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ie.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/il.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 903 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/il.svg’ 450s 450s 0K 100% 567M=0s 450s 450s 2025-02-19 11:06:41 (567 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/il.svg’ saved [903/903] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/il.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 856 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/il.svg’ 450s 450s 0K 100% 465M=0s 450s 450s 2025-02-19 11:06:41 (465 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/il.svg’ saved [856/856] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/im.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9921 (9.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/im.svg’ 450s 450s 0K ......... 100% 3.50G=0s 450s 450s 2025-02-19 11:06:41 (3.50 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/im.svg’ saved [9921/9921] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/im.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 10247 (10K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/im.svg’ 450s 450s 0K .......... 100% 2.71G=0s 450s 450s 2025-02-19 11:06:41 (2.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/im.svg’ saved [10247/10247] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/in.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1097 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/in.svg’ 450s 450s 0K . 100% 645M=0s 450s 450s 2025-02-19 11:06:41 (645 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/in.svg’ saved [1097/1097] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/in.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1111 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/in.svg’ 450s 450s 0K . 100% 557M=0s 450s 450s 2025-02-19 11:06:41 (557 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/in.svg’ saved [1111/1111] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/io.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 23180 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/io.svg’ 450s 450s 0K .......... .......... .. 100% 5.09G=0s 450s 450s 2025-02-19 11:06:41 (5.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/io.svg’ saved [23180/23180] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/io.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 22905 (22K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/io.svg’ 450s 450s 0K .......... .......... .. 100% 4.99G=0s 450s 450s 2025-02-19 11:06:41 (4.99 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/io.svg’ saved [22905/22905] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/iq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1473 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/iq.svg’ 450s 450s 0K . 100% 834M=0s 450s 450s 2025-02-19 11:06:41 (834 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/iq.svg’ saved [1473/1473] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/iq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1478 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/iq.svg’ 450s 450s 0K . 100% 1.02G=0s 450s 450s 2025-02-19 11:06:41 (1.02 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/iq.svg’ saved [1478/1478] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ir.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15413 (15K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ir.svg’ 450s 450s 0K .......... ..... 100% 3.89G=0s 450s 450s 2025-02-19 11:06:41 (3.89 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ir.svg’ saved [15413/15413] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ir.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15325 (15K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ir.svg’ 450s 450s 0K .......... .... 100% 3.84G=0s 450s 450s 2025-02-19 11:06:41 (3.84 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ir.svg’ saved [15325/15325] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/is.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 521 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/is.svg’ 450s 450s 0K 100% 321M=0s 450s 450s 2025-02-19 11:06:41 (321 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/is.svg’ saved [521/521] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/is.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 529 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/is.svg’ 450s 450s 0K 100% 262M=0s 450s 450s 2025-02-19 11:06:41 (262 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/is.svg’ saved [529/529] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/it.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/it.svg’ 450s 450s 0K 100% 125M=0s 450s 450s 2025-02-19 11:06:41 (125 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/it.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/it.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/it.svg’ 450s 450s 0K 100% 192M=0s 450s 450s 2025-02-19 11:06:41 (192 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/it.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/je.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7377 (7.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/je.svg’ 450s 450s 0K ....... 100% 3.11G=0s 450s 450s 2025-02-19 11:06:41 (3.11 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/je.svg’ saved [7377/7377] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/je.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6172 (6.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/je.svg’ 450s 450s 0K ...... 100% 2.36G=0s 450s 450s 2025-02-19 11:06:41 (2.36 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/je.svg’ saved [6172/6172] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/jm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 386 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jm.svg’ 450s 450s 0K 100% 209M=0s 450s 450s 2025-02-19 11:06:41 (209 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jm.svg’ saved [386/386] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/jm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 386 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jm.svg’ 450s 450s 0K 100% 224M=0s 450s 450s 2025-02-19 11:06:41 (224 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jm.svg’ saved [386/386] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/jo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 717 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jo.svg’ 450s 450s 0K 100% 412M=0s 450s 450s 2025-02-19 11:06:41 (412 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jo.svg’ saved [717/717] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/jo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 694 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jo.svg’ 450s 450s 0K 100% 374M=0s 450s 450s 2025-02-19 11:06:41 (374 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jo.svg’ saved [694/694] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/jp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 471 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jp.svg’ 450s 450s 0K 100% 323M=0s 450s 450s 2025-02-19 11:06:41 (323 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/jp.svg’ saved [471/471] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/jp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 487 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jp.svg’ 450s 450s 0K 100% 198M=0s 450s 450s 2025-02-19 11:06:41 (198 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/jp.svg’ saved [487/487] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ke.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1410 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ke.svg’ 450s 450s 0K . 100% 747M=0s 450s 450s 2025-02-19 11:06:41 (747 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ke.svg’ saved [1410/1410] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ke.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1522 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ke.svg’ 450s 450s 0K . 100% 791M=0s 450s 450s 2025-02-19 11:06:41 (791 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ke.svg’ saved [1522/1522] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3374 (3.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kg.svg’ 450s 450s 0K ... 100% 1.63G=0s 450s 450s 2025-02-19 11:06:41 (1.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kg.svg’ saved [3374/3374] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3325 (3.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kg.svg’ 450s 450s 0K ... 100% 1.65G=0s 450s 450s 2025-02-19 11:06:41 (1.65 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kg.svg’ saved [3325/3325] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7277 (7.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kh.svg’ 450s 450s 0K ....... 100% 2.12G=0s 450s 450s 2025-02-19 11:06:41 (2.12 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kh.svg’ saved [7277/7277] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7278 (7.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kh.svg’ 450s 450s 0K ....... 100% 2.62G=0s 450s 450s 2025-02-19 11:06:41 (2.62 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kh.svg’ saved [7278/7278] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ki.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5811 (5.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ki.svg’ 450s 450s 0K ..... 100% 2.05G=0s 450s 450s 2025-02-19 11:06:41 (2.05 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ki.svg’ saved [5811/5811] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ki.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5945 (5.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ki.svg’ 450s 450s 0K ..... 100% 1.74G=0s 450s 450s 2025-02-19 11:06:41 (1.74 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ki.svg’ saved [5945/5945] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/km.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1057 (1.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/km.svg’ 450s 450s 0K . 100% 432M=0s 450s 450s 2025-02-19 11:06:41 (432 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/km.svg’ saved [1057/1057] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/km.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1040 (1.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/km.svg’ 450s 450s 0K . 100% 594M=0s 450s 450s 2025-02-19 11:06:41 (594 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/km.svg’ saved [1040/1040] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 811 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kn.svg’ 450s 450s 0K 100% 460M=0s 450s 450s 2025-02-19 11:06:41 (460 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kn.svg’ saved [811/811] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 817 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kn.svg’ 450s 450s 0K 100% 501M=0s 450s 450s 2025-02-19 11:06:41 (501 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kn.svg’ saved [817/817] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 791 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kp.svg’ 450s 450s 0K 100% 453M=0s 450s 450s 2025-02-19 11:06:41 (453 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kp.svg’ saved [791/791] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 854 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kp.svg’ 450s 450s 0K 100% 475M=0s 450s 450s 2025-02-19 11:06:41 (475 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kp.svg’ saved [854/854] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1049 (1.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kr.svg’ 450s 450s 0K . 100% 520M=0s 450s 450s 2025-02-19 11:06:41 (520 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kr.svg’ saved [1049/1049] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 841 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kr.svg’ 450s 450s 0K 100% 549M=0s 450s 450s 2025-02-19 11:06:41 (549 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kr.svg’ saved [841/841] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 506 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kw.svg’ 450s 450s 0K 100% 363M=0s 450s 450s 2025-02-19 11:06:41 (363 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kw.svg’ saved [506/506] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 510 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kw.svg’ 450s 450s 0K 100% 295M=0s 450s 450s 2025-02-19 11:06:41 (295 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kw.svg’ saved [510/510] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ky.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 24042 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ky.svg’ 450s 450s 0K .......... .......... ... 100% 6.25G=0s 450s 450s 2025-02-19 11:06:41 (6.25 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ky.svg’ saved [24042/24042] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ky.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 24028 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ky.svg’ 450s 450s 0K .......... .......... ... 100% 5.87G=0s 450s 450s 2025-02-19 11:06:41 (5.87 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ky.svg’ saved [24028/24028] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/kz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7292 (7.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kz.svg’ 450s 450s 0K ....... 100% 2.73G=0s 450s 450s 2025-02-19 11:06:41 (2.73 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/kz.svg’ saved [7292/7292] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/kz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7294 (7.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kz.svg’ 450s 450s 0K ....... 100% 2.63G=0s 450s 450s 2025-02-19 11:06:41 (2.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/kz.svg’ saved [7294/7294] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/la.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 457 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/la.svg’ 450s 450s 0K 100% 336M=0s 450s 450s 2025-02-19 11:06:41 (336 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/la.svg’ saved [457/457] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/la.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 507 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/la.svg’ 450s 450s 0K 100% 284M=0s 450s 450s 2025-02-19 11:06:41 (284 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/la.svg’ saved [507/507] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2818 (2.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lb.svg’ 450s 450s 0K .. 100% 1.49G=0s 450s 450s 2025-02-19 11:06:41 (1.49 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lb.svg’ saved [2818/2818] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2757 (2.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lb.svg’ 450s 450s 0K .. 100% 1.31G=0s 450s 450s 2025-02-19 11:06:41 (1.31 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lb.svg’ saved [2757/2757] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 367 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lc.svg’ 450s 450s 0K 100% 253M=0s 450s 450s 2025-02-19 11:06:41 (253 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lc.svg’ saved [367/367] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 367 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lc.svg’ 450s 450s 0K 100% 230M=0s 450s 450s 2025-02-19 11:06:41 (230 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lc.svg’ saved [367/367] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/li.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8296 (8.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/li.svg’ 450s 450s 0K ........ 100% 3.77G=0s 450s 450s 2025-02-19 11:06:41 (3.77 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/li.svg’ saved [8296/8296] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/li.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8319 (8.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/li.svg’ 450s 450s 0K ........ 100% 2.88G=0s 450s 450s 2025-02-19 11:06:41 (2.88 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/li.svg’ saved [8319/8319] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 11341 (11K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lk.svg’ 450s 450s 0K .......... . 100% 2.95G=0s 450s 450s 2025-02-19 11:06:41 (2.95 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lk.svg’ saved [11341/11341] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 11353 (11K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lk.svg’ 450s 450s 0K .......... . 100% 3.82G=0s 450s 450s 2025-02-19 11:06:41 (3.82 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lk.svg’ saved [11353/11353] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 723 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lr.svg’ 450s 450s 0K 100% 354M=0s 450s 450s 2025-02-19 11:06:41 (354 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lr.svg’ saved [723/723] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 696 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lr.svg’ 450s 450s 0K 100% 546M=0s 450s 450s 2025-02-19 11:06:41 (546 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lr.svg’ saved [696/696] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ls.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1213 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ls.svg’ 450s 450s 0K . 100% 617M=0s 450s 450s 2025-02-19 11:06:41 (617 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ls.svg’ saved [1213/1213] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ls.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1236 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ls.svg’ 450s 450s 0K . 100% 871M=0s 450s 450s 2025-02-19 11:06:41 (871 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ls.svg’ saved [1236/1236] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 439 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lt.svg’ 450s 450s 0K 100% 266M=0s 450s 450s 2025-02-19 11:06:41 (266 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lt.svg’ saved [439/439] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 439 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lt.svg’ 450s 450s 0K 100% 258M=0s 450s 450s 2025-02-19 11:06:41 (258 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lt.svg’ saved [439/439] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 225 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lu.svg’ 450s 450s 0K 100% 114M=0s 450s 450s 2025-02-19 11:06:41 (114 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lu.svg’ saved [225/225] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 229 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lu.svg’ 450s 450s 0K 100% 145M=0s 450s 450s 2025-02-19 11:06:41 (145 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lu.svg’ saved [229/229] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/lv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 230 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lv.svg’ 450s 450s 0K 100% 107M=0s 450s 450s 2025-02-19 11:06:41 (107 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/lv.svg’ saved [230/230] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/lv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 234 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lv.svg’ 450s 450s 0K 100% 137M=0s 450s 450s 2025-02-19 11:06:41 (137 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/lv.svg’ saved [234/234] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ly.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 534 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ly.svg’ 450s 450s 0K 100% 389M=0s 450s 450s 2025-02-19 11:06:41 (389 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ly.svg’ saved [534/534] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ly.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 533 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ly.svg’ 450s 450s 0K 100% 259M=0s 450s 450s 2025-02-19 11:06:41 (259 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ly.svg’ saved [533/533] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ma.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 247 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ma.svg’ 450s 450s 0K 100% 147M=0s 450s 450s 2025-02-19 11:06:41 (147 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ma.svg’ saved [247/247] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ma.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 246 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ma.svg’ 450s 450s 0K 100% 178M=0s 450s 450s 2025-02-19 11:06:41 (178 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ma.svg’ saved [246/246] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 234 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mc.svg’ 450s 450s 0K 100% 156M=0s 450s 450s 2025-02-19 11:06:41 (156 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mc.svg’ saved [234/234] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 234 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mc.svg’ 450s 450s 0K 100% 118M=0s 450s 450s 2025-02-19 11:06:41 (118 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mc.svg’ saved [234/234] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/md.svg 450s Connecting to localhost (localhost)|::1|:80... connected. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 11252 (11K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/md.svg’ 450s 450s 0K .......... 100% 4.35G=0s 450s 450s 2025-02-19 11:06:41 (4.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/md.svg’ saved [11252/11252] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/md.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 11357 (11K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/md.svg’ 450s 450s 0K .......... . 100% 3.87G=0s 450s 450s 2025-02-19 11:06:41 (3.87 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/md.svg’ saved [11357/11357] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/me.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 62870 (61K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/me.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 81% 4.22G 0s 450s 50K .......... . 100% 21.2T=0s 450s 450s 2025-02-19 11:06:41 (5.18 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/me.svg’ saved [62870/62870] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/me.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 63860 (62K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/me.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 80% 5.17G 0s 450s 50K .......... .. 100% 23.0T=0s 450s 450s 2025-02-19 11:06:41 (6.45 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/me.svg’ saved [63860/63860] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mf.svg’ 450s 450s 0K 100% 118M=0s 450s 450s 2025-02-19 11:06:41 (118 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mf.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mf.svg’ 450s 450s 0K 100% 167M=0s 450s 450s 2025-02-19 11:06:41 (167 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mf.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 299 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mg.svg’ 450s 450s 0K 100% 140M=0s 450s 450s 2025-02-19 11:06:41 (140 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mg.svg’ saved [299/299] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 299 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mg.svg’ 450s 450s 0K 100% 211M=0s 450s 450s 2025-02-19 11:06:41 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mg.svg’ saved [299/299] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 738 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mh.svg’ 450s 450s 0K 100% 514M=0s 450s 450s 2025-02-19 11:06:41 (514 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mh.svg’ saved [738/738] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 759 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mh.svg’ 450s 450s 0K 100% 481M=0s 450s 450s 2025-02-19 11:06:41 (481 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mh.svg’ saved [759/759] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 379 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mk.svg’ 450s 450s 0K 100% 191M=0s 450s 450s 2025-02-19 11:06:41 (191 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mk.svg’ saved [379/379] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 407 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mk.svg’ 450s 450s 0K 100% 251M=0s 450s 450s 2025-02-19 11:06:41 (251 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mk.svg’ saved [407/407] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ml.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 273 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ml.svg’ 450s 450s 0K 100% 144M=0s 450s 450s 2025-02-19 11:06:41 (144 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ml.svg’ saved [273/273] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ml.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 276 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ml.svg’ 450s 450s 0K 100% 202M=0s 450s 450s 2025-02-19 11:06:41 (202 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ml.svg’ saved [276/276] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 711 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mm.svg’ 450s 450s 0K 100% 375M=0s 450s 450s 2025-02-19 11:06:41 (375 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mm.svg’ saved [711/711] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 707 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mm.svg’ 450s 450s 0K 100% 547M=0s 450s 450s 2025-02-19 11:06:41 (547 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mm.svg’ saved [707/707] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1439 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mn.svg’ 450s 450s 0K . 100% 967M=0s 450s 450s 2025-02-19 11:06:41 (967 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mn.svg’ saved [1439/1439] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1432 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mn.svg’ 450s 450s 0K . 100% 805M=0s 450s 450s 2025-02-19 11:06:41 (805 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mn.svg’ saved [1432/1432] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1514 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mo.svg’ 450s 450s 0K . 100% 880M=0s 450s 450s 2025-02-19 11:06:41 (880 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mo.svg’ saved [1514/1514] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1548 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mo.svg’ 450s 450s 0K . 100% 828M=0s 450s 450s 2025-02-19 11:06:41 (828 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mo.svg’ saved [1548/1548] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 23403 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mp.svg’ 450s 450s 0K .......... .......... .. 100% 4.74G=0s 450s 450s 2025-02-19 11:06:41 (4.74 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mp.svg’ saved [23403/23403] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 23644 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mp.svg’ 450s 450s 0K .......... .......... ... 100% 4.86G=0s 450s 450s 2025-02-19 11:06:41 (4.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mp.svg’ saved [23644/23644] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 228 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mq.svg’ 450s 450s 0K 100% 95.1M=0s 450s 450s 2025-02-19 11:06:41 (95.1 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mq.svg’ saved [228/228] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mq.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 226 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mq.svg’ 450s 450s 0K 100% 173M=0s 450s 450s 2025-02-19 11:06:41 (173 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mq.svg’ saved [226/226] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 446 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mr.svg’ 450s 450s 0K 100% 248M=0s 450s 450s 2025-02-19 11:06:41 (248 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mr.svg’ saved [446/446] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 434 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mr.svg’ 450s 450s 0K 100% 261M=0s 450s 450s 2025-02-19 11:06:41 (261 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mr.svg’ saved [434/434] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ms.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6105 (6.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ms.svg’ 450s 450s 0K ..... 100% 2.32G=0s 450s 450s 2025-02-19 11:06:41 (2.32 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ms.svg’ saved [6105/6105] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ms.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6156 (6.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ms.svg’ 450s 450s 0K ...... 100% 2.17G=0s 450s 450s 2025-02-19 11:06:41 (2.17 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ms.svg’ saved [6156/6156] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8788 (8.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mt.svg’ 450s 450s 0K ........ 100% 3.09G=0s 450s 450s 2025-02-19 11:06:41 (3.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mt.svg’ saved [8788/8788] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 10502 (10K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mt.svg’ 450s 450s 0K .......... 100% 2.82G=0s 450s 450s 2025-02-19 11:06:41 (2.82 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mt.svg’ saved [10502/10502] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 316 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mu.svg’ 450s 450s 0K 100% 160M=0s 450s 450s 2025-02-19 11:06:41 (160 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mu.svg’ saved [316/316] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 316 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mu.svg’ 450s 450s 0K 100% 155M=0s 450s 450s 2025-02-19 11:06:41 (155 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mu.svg’ saved [316/316] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 286 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mv.svg’ 450s 450s 0K 100% 160M=0s 450s 450s 2025-02-19 11:06:41 (160 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mv.svg’ saved [286/286] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 304 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mv.svg’ 450s 450s 0K 100% 173M=0s 450s 450s 2025-02-19 11:06:41 (173 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mv.svg’ saved [304/304] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3705 (3.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mw.svg’ 450s 450s 0K ... 100% 1.98G=0s 450s 450s 2025-02-19 11:06:41 (1.98 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mw.svg’ saved [3705/3705] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3894 (3.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mw.svg’ 450s 450s 0K ... 100% 1.48G=0s 450s 450s 2025-02-19 11:06:41 (1.48 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mw.svg’ saved [3894/3894] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 95436 (93K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mx.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 53% 5.19G 0s 450s 50K .......... .......... .......... .......... ... 100% 617M=0s 450s 450s 2025-02-19 11:06:41 (1.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mx.svg’ saved [95436/95436] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 90896 (89K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mx.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 56% 7.76G 0s 450s 50K .......... .......... .......... ........ 100% 659M=0s 450s 450s 2025-02-19 11:06:41 (1.33 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mx.svg’ saved [90896/90896] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/my.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1399 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/my.svg’ 450s 450s 0K . 100% 735M=0s 450s 450s 2025-02-19 11:06:41 (735 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/my.svg’ saved [1399/1399] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/my.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1176 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/my.svg’ 450s 450s 0K . 100% 878M=0s 450s 450s 2025-02-19 11:06:41 (878 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/my.svg’ saved [1176/1176] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/mz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2618 (2.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mz.svg’ 450s 450s 0K .. 100% 1.24G=0s 450s 450s 2025-02-19 11:06:41 (1.24 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/mz.svg’ saved [2618/2618] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/mz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2601 (2.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mz.svg’ 450s 450s 0K .. 100% 1.58G=0s 450s 450s 2025-02-19 11:06:41 (1.58 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/mz.svg’ saved [2601/2601] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/na.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1002 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/na.svg’ 450s 450s 0K 100% 572M=0s 450s 450s 2025-02-19 11:06:41 (572 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/na.svg’ saved [1002/1002] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/na.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 979 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/na.svg’ 450s 450s 0K 100% 626M=0s 450s 450s 2025-02-19 11:06:41 (626 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/na.svg’ saved [979/979] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1275 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nc.svg’ 450s 450s 0K . 100% 644M=0s 450s 450s 2025-02-19 11:06:41 (644 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nc.svg’ saved [1275/1275] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1257 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nc.svg’ 450s 450s 0K . 100% 565M=0s 450s 450s 2025-02-19 11:06:41 (565 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nc.svg’ saved [1257/1257] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ne.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 273 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ne.svg’ 450s 450s 0K 100% 144M=0s 450s 450s 2025-02-19 11:06:41 (144 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ne.svg’ saved [273/273] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ne.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 279 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ne.svg’ 450s 450s 0K 100% 161M=0s 450s 450s 2025-02-19 11:06:41 (161 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ne.svg’ saved [279/279] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5833 (5.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nf.svg’ 450s 450s 0K ..... 100% 1.77G=0s 450s 450s 2025-02-19 11:06:41 (1.77 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nf.svg’ saved [5833/5833] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5584 (5.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nf.svg’ 450s 450s 0K ..... 100% 2.34G=0s 450s 450s 2025-02-19 11:06:41 (2.34 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nf.svg’ saved [5584/5584] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ng.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 257 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ng.svg’ 450s 450s 0K 100% 153M=0s 450s 450s 2025-02-19 11:06:41 (153 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ng.svg’ saved [257/257] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ng.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 257 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ng.svg’ 450s 450s 0K 100% 204M=0s 450s 450s 2025-02-19 11:06:41 (204 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ng.svg’ saved [257/257] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ni.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 18772 (18K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ni.svg’ 450s 450s 0K .......... ........ 100% 4.71G=0s 450s 450s 2025-02-19 11:06:41 (4.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ni.svg’ saved [18772/18772] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ni.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 18831 (18K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ni.svg’ 450s 450s 0K .......... ........ 100% 4.72G=0s 450s 450s 2025-02-19 11:06:41 (4.72 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ni.svg’ saved [18831/18831] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 221 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nl.svg’ 450s 450s 0K 100% 159M=0s 450s 450s 2025-02-19 11:06:41 (159 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nl.svg’ saved [221/221] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 225 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nl.svg’ 450s 450s 0K 100% 134M=0s 450s 450s 2025-02-19 11:06:41 (134 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nl.svg’ saved [225/225] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/no.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 318 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/no.svg’ 450s 450s 0K 100% 191M=0s 450s 450s 2025-02-19 11:06:41 (191 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/no.svg’ saved [318/318] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/no.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 318 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/no.svg’ 450s 450s 0K 100% 168M=0s 450s 450s 2025-02-19 11:06:41 (168 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/no.svg’ saved [318/318] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/np.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1017 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/np.svg’ 450s 450s 0K 100% 573M=0s 450s 450s 2025-02-19 11:06:41 (573 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/np.svg’ saved [1017/1017] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/np.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1143 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/np.svg’ 450s 450s 0K . 100% 902M=0s 450s 450s 2025-02-19 11:06:41 (902 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/np.svg’ saved [1143/1143] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 647 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nr.svg’ 450s 450s 0K 100% 419M=0s 450s 450s 2025-02-19 11:06:41 (419 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nr.svg’ saved [647/647] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 670 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nr.svg’ 450s 450s 0K 100% 427M=0s 450s 450s 2025-02-19 11:06:41 (427 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nr.svg’ saved [670/670] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 864 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nu.svg’ 450s 450s 0K 100% 589M=0s 450s 450s 2025-02-19 11:06:41 (589 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nu.svg’ saved [864/864] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 840 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nu.svg’ 450s 450s 0K 100% 511M=0s 450s 450s 2025-02-19 11:06:41 (511 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nu.svg’ saved [840/840] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/nz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2181 (2.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nz.svg’ 450s 450s 0K .. 100% 1.32G=0s 450s 450s 2025-02-19 11:06:41 (1.32 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/nz.svg’ saved [2181/2181] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/nz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2162 (2.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nz.svg’ 450s 450s 0K .. 100% 1.11G=0s 450s 450s 2025-02-19 11:06:41 (1.11 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/nz.svg’ saved [2162/2162] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/om.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 22684 (22K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/om.svg’ 450s 450s 0K .......... .......... .. 100% 4.63G=0s 450s 450s 2025-02-19 11:06:41 (4.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/om.svg’ saved [22684/22684] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/om.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 22668 (22K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/om.svg’ 450s 450s 0K .......... .......... .. 100% 4.82G=0s 450s 450s 2025-02-19 11:06:41 (4.82 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/om.svg’ saved [22668/22668] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pa.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 744 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pa.svg’ 450s 450s 0K 100% 541M=0s 450s 450s 2025-02-19 11:06:41 (541 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pa.svg’ saved [744/744] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pa.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 661 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pa.svg’ 450s 450s 0K 100% 290M=0s 450s 450s 2025-02-19 11:06:41 (290 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pa.svg’ saved [661/661] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pe.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 186 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pe.svg’ 450s 450s 0K 100% 112M=0s 450s 450s 2025-02-19 11:06:41 (112 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pe.svg’ saved [186/186] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pe.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 186 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pe.svg’ 450s 450s 0K 100% 117M=0s 450s 450s 2025-02-19 11:06:41 (117 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pe.svg’ saved [186/186] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 4284 (4.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pf.svg’ 450s 450s 0K .... 100% 1.86G=0s 450s 450s 2025-02-19 11:06:41 (1.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pf.svg’ saved [4284/4284] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 4225 (4.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pf.svg’ 450s 450s 0K .... 100% 1.86G=0s 450s 450s 2025-02-19 11:06:41 (1.86 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pf.svg’ saved [4225/4225] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1657 (1.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pg.svg’ 450s 450s 0K . 100% 1.03G=0s 450s 450s 2025-02-19 11:06:41 (1.03 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pg.svg’ saved [1657/1657] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2097 (2.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pg.svg’ 450s 450s 0K .. 100% 1014M=0s 450s 450s 2025-02-19 11:06:41 (1014 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pg.svg’ saved [2097/2097] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ph.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1501 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ph.svg’ 450s 450s 0K . 100% 930M=0s 450s 450s 2025-02-19 11:06:41 (930 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ph.svg’ saved [1501/1501] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ph.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1449 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ph.svg’ 450s 450s 0K . 100% 847M=0s 450s 450s 2025-02-19 11:06:41 (847 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ph.svg’ saved [1449/1449] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 742 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pk.svg’ 450s 450s 0K 100% 425M=0s 450s 450s 2025-02-19 11:06:41 (425 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pk.svg’ saved [742/742] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 693 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pk.svg’ 450s 450s 0K 100% 508M=0s 450s 450s 2025-02-19 11:06:41 (508 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pk.svg’ saved [693/693] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 219 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pl.svg’ 450s 450s 0K 100% 149M=0s 450s 450s 2025-02-19 11:06:41 (149 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pl.svg’ saved [219/219] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 219 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pl.svg’ 450s 450s 0K 100% 146M=0s 450s 450s 2025-02-19 11:06:41 (146 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pl.svg’ saved [219/219] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pm.svg’ 450s 450s 0K 100% 143M=0s 450s 450s 2025-02-19 11:06:41 (143 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pm.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pm.svg’ 450s 450s 0K 100% 123M=0s 450s 450s 2025-02-19 11:06:41 (123 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pm.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 13896 (14K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pn.svg’ 450s 450s 0K .......... ... 100% 4.15G=0s 450s 450s 2025-02-19 11:06:41 (4.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pn.svg’ saved [13896/13896] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 13854 (14K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pn.svg’ 450s 450s 0K .......... ... 100% 3.91G=0s 450s 450s 2025-02-19 11:06:41 (3.91 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pn.svg’ saved [13854/13854] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 634 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pr.svg’ 450s 450s 0K 100% 402M=0s 450s 450s 2025-02-19 11:06:41 (402 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pr.svg’ saved [634/634] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 621 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pr.svg’ 450s 450s 0K 100% 289M=0s 450s 450s 2025-02-19 11:06:41 (289 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pr.svg’ saved [621/621] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ps.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 558 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ps.svg’ 450s 450s 0K 100% 395M=0s 450s 450s 2025-02-19 11:06:41 (395 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ps.svg’ saved [558/558] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ps.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 544 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ps.svg’ 450s 450s 0K 100% 313M=0s 450s 450s 2025-02-19 11:06:41 (313 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ps.svg’ saved [544/544] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8412 (8.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pt.svg’ 450s 450s 0K ........ 100% 3.46G=0s 450s 450s 2025-02-19 11:06:41 (3.46 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pt.svg’ saved [8412/8412] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8791 (8.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pt.svg’ 450s 450s 0K ........ 100% 3.59G=0s 450s 450s 2025-02-19 11:06:41 (3.59 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pt.svg’ saved [8791/8791] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/pw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 467 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pw.svg’ 450s 450s 0K 100% 258M=0s 450s 450s 2025-02-19 11:06:41 (258 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/pw.svg’ saved [467/467] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/pw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 512 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pw.svg’ 450s 450s 0K 100% 310M=0s 450s 450s 2025-02-19 11:06:41 (310 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/pw.svg’ saved [512/512] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/py.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 17245 (17K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/py.svg’ 450s 450s 0K .......... ...... 100% 4.03G=0s 450s 450s 2025-02-19 11:06:41 (4.03 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/py.svg’ saved [17245/17245] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/py.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 17406 (17K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/py.svg’ 450s 450s 0K .......... ...... 100% 4.81G=0s 450s 450s 2025-02-19 11:06:41 (4.81 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/py.svg’ saved [17406/17406] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/qa.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 356 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/qa.svg’ 450s 450s 0K 100% 201M=0s 450s 450s 2025-02-19 11:06:41 (201 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/qa.svg’ saved [356/356] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/qa.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 353 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/qa.svg’ 450s 450s 0K 100% 214M=0s 450s 450s 2025-02-19 11:06:41 (214 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/qa.svg’ saved [353/353] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/re.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/re.svg’ 450s 450s 0K 100% 148M=0s 450s 450s 2025-02-19 11:06:41 (148 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/re.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/re.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/re.svg’ 450s 450s 0K 100% 189M=0s 450s 450s 2025-02-19 11:06:41 (189 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/re.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ro.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 302 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ro.svg’ 450s 450s 0K 100% 205M=0s 450s 450s 2025-02-19 11:06:41 (205 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ro.svg’ saved [302/302] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ro.svg 450s Connecting to localhost (localhost)|::1|:80... connected. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 302 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ro.svg’ 450s 450s 0K 100% 168M=0s 450s 450s 2025-02-19 11:06:41 (168 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ro.svg’ saved [302/302] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/rs.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 187269 (183K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rs.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 27% 2.71G 0s 450s 50K .......... .......... .......... .......... .......... 54% 686M 0s 450s 100K .......... .......... .......... .......... .......... 82% 923M 0s 450s 150K .......... .......... .......... .. 100% 61.2T=0s 450s 450s 2025-02-19 11:06:41 (1.23 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rs.svg’ saved [187269/187269] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/rs.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 187132 (183K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rs.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 27% 5.13G 0s 450s 50K .......... .......... .......... .......... .......... 54% 803M 0s 450s 100K .......... .......... .......... .......... .......... 82% 608M 0s 450s 150K .......... .......... .......... .. 100% 61.0T=0s 450s 450s 2025-02-19 11:06:41 (1.16 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rs.svg’ saved [187132/187132] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ru.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 283 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ru.svg’ 450s 450s 0K 100% 186M=0s 450s 450s 2025-02-19 11:06:41 (186 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ru.svg’ saved [283/283] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ru.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 287 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ru.svg’ 450s 450s 0K 100% 215M=0s 450s 450s 2025-02-19 11:06:41 (215 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ru.svg’ saved [287/287] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/rw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 756 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rw.svg’ 450s 450s 0K 100% 404M=0s 450s 450s 2025-02-19 11:06:41 (404 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/rw.svg’ saved [756/756] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/rw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 757 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rw.svg’ 450s 450s 0K 100% 506M=0s 450s 450s 2025-02-19 11:06:41 (506 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/rw.svg’ saved [757/757] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sa.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 10260 (10K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sa.svg’ 450s 450s 0K .......... 100% 3.22G=0s 450s 450s 2025-02-19 11:06:41 (3.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sa.svg’ saved [10260/10260] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sa.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 10195 (10.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sa.svg’ 450s 450s 0K ......... 100% 1.33G=0s 450s 450s 2025-02-19 11:06:41 (1.33 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sa.svg’ saved [10195/10195] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 950 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sb.svg’ 450s 450s 0K 100% 68.4M=0s 450s 450s 2025-02-19 11:06:41 (68.4 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sb.svg’ saved [950/950] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sb.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 955 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sb.svg’ 450s 450s 0K 100% 156M=0s 450s 450s 2025-02-19 11:06:41 (156 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sb.svg’ saved [955/955] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 317 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sc.svg’ 450s 450s 0K 100% 198M=0s 450s 450s 2025-02-19 11:06:41 (198 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sc.svg’ saved [317/317] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 321 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sc.svg’ 450s 450s 0K 100% 236M=0s 450s 450s 2025-02-19 11:06:41 (236 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sc.svg’ saved [321/321] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 494 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sd.svg’ 450s 450s 0K 100% 347M=0s 450s 450s 2025-02-19 11:06:41 (347 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sd.svg’ saved [494/494] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sd.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 496 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sd.svg’ 450s 450s 0K 100% 332M=0s 450s 450s 2025-02-19 11:06:41 (332 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sd.svg’ saved [496/496] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/se.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 213 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/se.svg’ 450s 450s 0K 100% 112M=0s 450s 450s 2025-02-19 11:06:41 (112 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/se.svg’ saved [213/213] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/se.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 227 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/se.svg’ 450s 450s 0K 100% 171M=0s 450s 450s 2025-02-19 11:06:41 (171 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/se.svg’ saved [227/227] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 889 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sg.svg’ 450s 450s 0K 100% 392M=0s 450s 450s 2025-02-19 11:06:41 (392 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sg.svg’ saved [889/889] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 950 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sg.svg’ 450s 450s 0K 100% 532M=0s 450s 450s 2025-02-19 11:06:41 (532 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sg.svg’ saved [950/950] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 535 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sh.svg’ 450s 450s 0K 100% 395M=0s 450s 450s 2025-02-19 11:06:41 (395 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sh.svg’ saved [535/535] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sh.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 538 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sh.svg’ 450s 450s 0K 100% 285M=0s 450s 450s 2025-02-19 11:06:41 (285 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sh.svg’ saved [538/538] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/si.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2057 (2.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/si.svg’ 450s 450s 0K .. 100% 1.13G=0s 450s 450s 2025-02-19 11:06:41 (1.13 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/si.svg’ saved [2057/2057] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/si.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2073 (2.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/si.svg’ 450s 450s 0K .. 100% 1.28G=0s 450s 450s 2025-02-19 11:06:41 (1.28 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/si.svg’ saved [2073/2073] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 318 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sj.svg’ 450s 450s 0K 100% 158M=0s 450s 450s 2025-02-19 11:06:41 (158 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sj.svg’ saved [318/318] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 318 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sj.svg’ 450s 450s 0K 100% 213M=0s 450s 450s 2025-02-19 11:06:41 (213 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sj.svg’ saved [318/318] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1200 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sk.svg’ 450s 450s 0K . 100% 686M=0s 450s 450s 2025-02-19 11:06:41 (686 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sk.svg’ saved [1200/1200] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1175 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sk.svg’ 450s 450s 0K . 100% 454M=0s 450s 450s 2025-02-19 11:06:41 (454 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sk.svg’ saved [1175/1175] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 272 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sl.svg’ 450s 450s 0K 100% 169M=0s 450s 450s 2025-02-19 11:06:41 (169 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sl.svg’ saved [272/272] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 441 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sl.svg’ 450s 450s 0K 100% 186M=0s 450s 450s 2025-02-19 11:06:41 (186 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sl.svg’ saved [441/441] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15930 (16K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sm.svg’ 450s 450s 0K .......... ..... 100% 5.96G=0s 450s 450s 2025-02-19 11:06:41 (5.96 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sm.svg’ saved [15930/15930] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 15842 (15K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sm.svg’ 450s 450s 0K .......... ..... 100% 6.28G=0s 450s 450s 2025-02-19 11:06:41 (6.28 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sm.svg’ saved [15842/15842] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 421 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sn.svg’ 450s 450s 0K 100% 330M=0s 450s 450s 2025-02-19 11:06:41 (330 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sn.svg’ saved [421/421] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 411 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sn.svg’ 450s 450s 0K 100% 188M=0s 450s 450s 2025-02-19 11:06:41 (188 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sn.svg’ saved [411/411] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/so.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 494 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/so.svg’ 450s 450s 0K 100% 243M=0s 450s 450s 2025-02-19 11:06:41 (243 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/so.svg’ saved [494/494] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/so.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 500 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/so.svg’ 450s 450s 0K 100% 315M=0s 450s 450s 2025-02-19 11:06:41 (315 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/so.svg’ saved [500/500] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 312 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sr.svg’ 450s 450s 0K 100% 62.6M=0s 450s 450s 2025-02-19 11:06:41 (62.6 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sr.svg’ saved [312/312] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 317 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sr.svg’ 450s 450s 0K 100% 172M=0s 450s 450s 2025-02-19 11:06:41 (172 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sr.svg’ saved [317/317] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ss.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 383 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ss.svg’ 450s 450s 0K 100% 180M=0s 450s 450s 2025-02-19 11:06:41 (180 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ss.svg’ saved [383/383] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ss.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 394 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ss.svg’ 450s 450s 0K 100% 235M=0s 450s 450s 2025-02-19 11:06:41 (235 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ss.svg’ saved [394/394] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/st.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 940 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/st.svg’ 450s 450s 0K 100% 664M=0s 450s 450s 2025-02-19 11:06:41 (664 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/st.svg’ saved [940/940] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/st.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 944 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/st.svg’ 450s 450s 0K 100% 615M=0s 450s 450s 2025-02-19 11:06:41 (615 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/st.svg’ saved [944/944] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 83296 (81K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sv.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 61% 4.65G 0s 450s 50K .......... .......... .......... . 100% 507M=0s 450s 450s 2025-02-19 11:06:41 (1.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sv.svg’ saved [83296/83296] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 83780 (82K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sv.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 61% 5.65G 0s 450s 50K .......... .......... .......... . 100% 522M=0s 450s 450s 2025-02-19 11:06:41 (1.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sv.svg’ saved [83780/83780] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 13279 (13K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sx.svg’ 450s 450s 0K .......... .. 100% 3.91G=0s 450s 450s 2025-02-19 11:06:41 (3.91 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sx.svg’ saved [13279/13279] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sx.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 13080 (13K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sx.svg’ 450s 450s 0K .......... .. 100% 4.10G=0s 450s 450s 2025-02-19 11:06:41 (4.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sx.svg’ saved [13080/13080] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 306 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sy.svg’ 450s 450s 0K 100% 191M=0s 450s 450s 2025-02-19 11:06:41 (191 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sy.svg’ saved [306/306] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 327 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sy.svg’ 450s 450s 0K 100% 198M=0s 450s 450s 2025-02-19 11:06:41 (198 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sy.svg’ saved [327/327] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/sz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 4813 (4.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sz.svg’ 450s 450s 0K .... 100% 2.31G=0s 450s 450s 2025-02-19 11:06:41 (2.31 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/sz.svg’ saved [4813/4813] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/sz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 4763 (4.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sz.svg’ 450s 450s 0K .... 100% 370M=0s 450s 450s 2025-02-19 11:06:41 (370 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/sz.svg’ saved [4763/4763] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7157 (7.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tc.svg’ 450s 450s 0K ...... 100% 2.22G=0s 450s 450s 2025-02-19 11:06:41 (2.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tc.svg’ saved [7157/7157] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 7149 (7.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tc.svg’ 450s 450s 0K ...... 100% 2.71G=0s 450s 450s 2025-02-19 11:06:41 (2.71 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tc.svg’ saved [7149/7149] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/td.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 271 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/td.svg’ 450s 450s 0K 100% 142M=0s 450s 450s 2025-02-19 11:06:41 (142 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/td.svg’ saved [271/271] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/td.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 283 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/td.svg’ 450s 450s 0K 100% 64.6M=0s 450s 450s 2025-02-19 11:06:41 (64.6 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/td.svg’ saved [283/283] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1103 (1.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tf.svg’ 450s 450s 0K . 100% 831M=0s 450s 450s 2025-02-19 11:06:41 (831 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tf.svg’ saved [1103/1103] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1211 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tf.svg’ 450s 450s 0K . 100% 1.04G=0s 450s 450s 2025-02-19 11:06:41 (1.04 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tf.svg’ saved [1211/1211] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 725 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tg.svg’ 450s 450s 0K 100% 422M=0s 450s 450s 2025-02-19 11:06:41 (422 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tg.svg’ saved [725/725] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 736 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tg.svg’ 450s 450s 0K 100% 463M=0s 450s 450s 2025-02-19 11:06:41 (463 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tg.svg’ saved [736/736] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/th.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 284 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/th.svg’ 450s 450s 0K 100% 198M=0s 450s 450s 2025-02-19 11:06:41 (198 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/th.svg’ saved [284/284] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/th.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 285 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/th.svg’ 450s 450s 0K 100% 210M=0s 450s 450s 2025-02-19 11:06:41 (210 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/th.svg’ saved [285/285] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1857 (1.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tj.svg’ 450s 450s 0K . 100% 1007M=0s 450s 450s 2025-02-19 11:06:41 (1007 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tj.svg’ saved [1857/1857] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tj.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1814 (1.8K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tj.svg’ 450s 450s 0K . 100% 906M=0s 450s 450s 2025-02-19 11:06:41 (906 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tj.svg’ saved [1814/1814] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 782 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tk.svg’ 450s 450s 0K 100% 635M=0s 450s 450s 2025-02-19 11:06:41 (635 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tk.svg’ saved [782/782] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 772 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tk.svg’ 450s 450s 0K 100% 438M=0s 450s 450s 2025-02-19 11:06:41 (438 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tk.svg’ saved [772/772] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 600 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tl.svg’ 450s 450s 0K 100% 408M=0s 450s 450s 2025-02-19 11:06:41 (408 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tl.svg’ saved [600/600] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tl.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 579 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tl.svg’ 450s 450s 0K 100% 338M=0s 450s 450s 2025-02-19 11:06:41 (338 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tl.svg’ saved [579/579] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 38514 (38K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tm.svg’ 450s 450s 0K .......... .......... .......... ....... 100% 6.22G=0s 450s 450s 2025-02-19 11:06:41 (6.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tm.svg’ saved [38514/38514] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 38377 (37K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tm.svg’ 450s 450s 0K .......... .......... .......... ....... 100% 6.90G=0s 450s 450s 2025-02-19 11:06:41 (6.90 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tm.svg’ saved [38377/38377] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 345 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tn.svg’ 450s 450s 0K 100% 189M=0s 450s 450s 2025-02-19 11:06:41 (189 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tn.svg’ saved [345/345] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 340 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tn.svg’ 450s 450s 0K 100% 211M=0s 450s 450s 2025-02-19 11:06:41 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tn.svg’ saved [340/340] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/to.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 352 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/to.svg’ 450s 450s 0K 100% 220M=0s 450s 450s 2025-02-19 11:06:41 (220 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/to.svg’ saved [352/352] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/to.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 358 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/to.svg’ 450s 450s 0K 100% 179M=0s 450s 450s 2025-02-19 11:06:41 (179 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/to.svg’ saved [358/358] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 550 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tr.svg’ 450s 450s 0K 100% 338M=0s 450s 450s 2025-02-19 11:06:41 (338 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tr.svg’ saved [550/550] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tr.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 571 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tr.svg’ 450s 450s 0K 100% 381M=0s 450s 450s 2025-02-19 11:06:41 (381 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tr.svg’ saved [571/571] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 312 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tt.svg’ 450s 450s 0K 100% 254M=0s 450s 450s 2025-02-19 11:06:41 (254 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tt.svg’ saved [312/312] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 317 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tt.svg’ 450s 450s 0K 100% 140M=0s 450s 450s 2025-02-19 11:06:41 (140 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tt.svg’ saved [317/317] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1427 (1.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tv.svg’ 450s 450s 0K . 100% 908M=0s 450s 450s 2025-02-19 11:06:41 (908 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tv.svg’ saved [1427/1427] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1342 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tv.svg’ 450s 450s 0K . 100% 814M=0s 450s 450s 2025-02-19 11:06:41 (814 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tv.svg’ saved [1342/1342] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2499 (2.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tw.svg’ 450s 450s 0K .. 100% 1.59G=0s 450s 450s 2025-02-19 11:06:41 (1.59 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tw.svg’ saved [2499/2499] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2506 (2.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tw.svg’ 450s 450s 0K .. 100% 1.39G=0s 450s 450s 2025-02-19 11:06:41 (1.39 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tw.svg’ saved [2506/2506] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/tz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 546 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tz.svg’ 450s 450s 0K 100% 227M=0s 450s 450s 2025-02-19 11:06:41 (227 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/tz.svg’ saved [546/546] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/tz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 605 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tz.svg’ 450s 450s 0K 100% 456M=0s 450s 450s 2025-02-19 11:06:41 (456 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/tz.svg’ saved [605/605] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ua.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 232 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ua.svg’ 450s 450s 0K 100% 147M=0s 450s 450s 2025-02-19 11:06:41 (147 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ua.svg’ saved [232/232] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ua.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 232 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ua.svg’ 450s 450s 0K 100% 185M=0s 450s 450s 2025-02-19 11:06:41 (185 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ua.svg’ saved [232/232] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ug.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 3953 (3.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ug.svg’ 450s 450s 0K ... 100% 2.11G=0s 450s 450s 2025-02-19 11:06:41 (2.11 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ug.svg’ saved [3953/3953] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ug.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 4034 (3.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ug.svg’ 450s 450s 0K ... 100% 1.83G=0s 450s 450s 2025-02-19 11:06:41 (1.83 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ug.svg’ saved [4034/4034] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/um.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 651 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/um.svg’ 450s 450s 0K 100% 400M=0s 450s 450s 2025-02-19 11:06:41 (400 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/um.svg’ saved [651/651] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/um.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 653 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/um.svg’ 450s 450s 0K 100% 387M=0s 450s 450s 2025-02-19 11:06:41 (387 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/um.svg’ saved [653/653] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/us.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 651 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/us.svg’ 450s 450s 0K 100% 384M=0s 450s 450s 2025-02-19 11:06:41 (384 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/us.svg’ saved [651/651] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/us.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 653 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/us.svg’ 450s 450s 0K 100% 409M=0s 450s 450s 2025-02-19 11:06:41 (409 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/us.svg’ saved [653/653] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/uy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1726 (1.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uy.svg’ 450s 450s 0K . 100% 975M=0s 450s 450s 2025-02-19 11:06:41 (975 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uy.svg’ saved [1726/1726] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/uy.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1723 (1.7K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uy.svg’ 450s 450s 0K . 100% 1.12G=0s 450s 450s 2025-02-19 11:06:41 (1.12 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uy.svg’ saved [1723/1723] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/uz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1498 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uz.svg’ 450s 450s 0K . 100% 855M=0s 450s 450s 2025-02-19 11:06:41 (855 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/uz.svg’ saved [1498/1498] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/uz.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1498 (1.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uz.svg’ 450s 450s 0K . 100% 720M=0s 450s 450s 2025-02-19 11:06:41 (720 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/uz.svg’ saved [1498/1498] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/va.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 29482 (29K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/va.svg’ 450s 450s 0K .......... .......... ........ 100% 2.09G=0s 450s 450s 2025-02-19 11:06:41 (2.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/va.svg’ saved [29482/29482] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/va.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 29416 (29K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/va.svg’ 450s 450s 0K .......... .......... ........ 100% 6.10G=0s 450s 450s 2025-02-19 11:06:41 (6.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/va.svg’ saved [29416/29416] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 445 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vc.svg’ 450s 450s 0K 100% 251M=0s 450s 450s 2025-02-19 11:06:41 (251 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vc.svg’ saved [445/445] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vc.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 493 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vc.svg’ 450s 450s 0K 100% 277M=0s 450s 450s 2025-02-19 11:06:41 (277 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vc.svg’ saved [493/493] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ve.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1206 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ve.svg’ 450s 450s 0K . 100% 694M=0s 450s 450s 2025-02-19 11:06:41 (694 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ve.svg’ saved [1206/1206] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ve.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1226 (1.2K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ve.svg’ 450s 450s 0K . 100% 621M=0s 450s 450s 2025-02-19 11:06:41 (621 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ve.svg’ saved [1226/1226] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 10515 (10K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vg.svg’ 450s 450s 0K .......... 100% 3.38G=0s 450s 450s 2025-02-19 11:06:41 (3.38 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vg.svg’ saved [10515/10515] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 10492 (10K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vg.svg’ 450s 450s 0K .......... 100% 3.17G=0s 450s 450s 2025-02-19 11:06:41 (3.17 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vg.svg’ saved [10492/10492] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vi.svg 450s Connecting to localhost (localhost)|::1|:80... connected. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8754 (8.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vi.svg’ 450s 450s 0K ........ 100% 3.22G=0s 450s 450s 2025-02-19 11:06:41 (3.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vi.svg’ saved [8754/8754] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vi.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8708 (8.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vi.svg’ 450s 450s 0K ........ 100% 2.47G=0s 450s 450s 2025-02-19 11:06:41 (2.47 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vi.svg’ saved [8708/8708] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 491 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vn.svg’ 450s 450s 0K 100% 337M=0s 450s 450s 2025-02-19 11:06:41 (337 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vn.svg’ saved [491/491] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vn.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 500 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vn.svg’ 450s 450s 0K 100% 377M=0s 450s 450s 2025-02-19 11:06:41 (377 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vn.svg’ saved [500/500] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/vu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2136 (2.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vu.svg’ 450s 450s 0K .. 100% 1.07G=0s 450s 450s 2025-02-19 11:06:41 (1.07 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/vu.svg’ saved [2136/2136] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/vu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 2141 (2.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vu.svg’ 450s 450s 0K .. 100% 1.17G=0s 450s 450s 2025-02-19 11:06:41 (1.17 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/vu.svg’ saved [2141/2141] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/wf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/wf.svg’ 450s 450s 0K 100% 177M=0s 450s 450s 2025-02-19 11:06:41 (177 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/wf.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/wf.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/wf.svg’ 450s 450s 0K 100% 132M=0s 450s 450s 2025-02-19 11:06:41 (132 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/wf.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ws.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 687 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ws.svg’ 450s 450s 0K 100% 393M=0s 450s 450s 2025-02-19 11:06:41 (393 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ws.svg’ saved [687/687] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ws.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 699 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ws.svg’ 450s 450s 0K 100% 520M=0s 450s 450s 2025-02-19 11:06:41 (520 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ws.svg’ saved [699/699] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ye.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 272 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ye.svg’ 450s 450s 0K 100% 187M=0s 450s 450s 2025-02-19 11:06:41 (187 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ye.svg’ saved [272/272] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ye.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 272 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ye.svg’ 450s 450s 0K 100% 221M=0s 450s 450s 2025-02-19 11:06:41 (221 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ye.svg’ saved [272/272] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/yt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/yt.svg’ 450s 450s 0K 100% 154M=0s 450s 450s 2025-02-19 11:06:41 (154 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/yt.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/yt.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 231 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/yt.svg’ 450s 450s 0K 100% 201M=0s 450s 450s 2025-02-19 11:06:41 (201 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/yt.svg’ saved [231/231] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/za.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 869 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/za.svg’ 450s 450s 0K 100% 443M=0s 450s 450s 2025-02-19 11:06:41 (443 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/za.svg’ saved [869/869] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/za.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 888 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/za.svg’ 450s 450s 0K 100% 560M=0s 450s 450s 2025-02-19 11:06:41 (560 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/za.svg’ saved [888/888] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/zm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5505 (5.4K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zm.svg’ 450s 450s 0K ..... 100% 2.10G=0s 450s 450s 2025-02-19 11:06:41 (2.10 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zm.svg’ saved [5505/5505] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/zm.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 5421 (5.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zm.svg’ 450s 450s 0K ..... 100% 2.06G=0s 450s 450s 2025-02-19 11:06:41 (2.06 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zm.svg’ saved [5421/5421] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/zw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6789 (6.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zw.svg’ 450s 450s 0K ...... 100% 2.75G=0s 450s 450s 2025-02-19 11:06:41 (2.75 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/zw.svg’ saved [6789/6789] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/zw.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 6768 (6.6K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zw.svg’ 450s 450s 0K ...... 100% 2.76G=0s 450s 450s 2025-02-19 11:06:41 (2.76 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/zw.svg’ saved [6768/6768] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ac.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 156293 (153K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ac.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 32% 1.77G 0s 450s 50K .......... .......... .......... .......... .......... 65% 920M 0s 450s 100K .......... .......... .......... .......... .......... 98% 921M 0s 450s 150K .. 100% 4.90T=0s 450s 450s 2025-02-19 11:06:41 (1.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ac.svg’ saved [156293/156293] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ac.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 153600 (150K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ac.svg’ 450s 450s 0K .......... .......... .......... .......... .......... 33% 3.88G 0s 450s 50K .......... .......... .......... .......... .......... 66% 812M 0s 450s 100K .......... .......... .......... .......... ..........100% 942M 0s 450s 150K 100% 0.00 =0s 450s 450s 2025-02-19 11:06:41 (1.15 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ac.svg’ saved [153600/153600] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/arab.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 26365 (26K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/arab.svg’ 450s 450s 0K .......... .......... ..... 100% 5.22G=0s 450s 450s 2025-02-19 11:06:41 (5.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/arab.svg’ saved [26365/26365] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/arab.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 26490 (26K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/arab.svg’ 450s 450s 0K .......... .......... ..... 100% 5.74G=0s 450s 450s 2025-02-19 11:06:41 (5.74 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/arab.svg’ saved [26490/26490] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cefta.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 910 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cefta.svg’ 450s 450s 0K 100% 565M=0s 450s 450s 2025-02-19 11:06:41 (565 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cefta.svg’ saved [910/910] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cefta.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 908 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cefta.svg’ 450s 450s 0K 100% 476M=0s 450s 450s 2025-02-19 11:06:41 (476 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cefta.svg’ saved [908/908] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/cp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cp.svg’ 450s 450s 0K 100% 197M=0s 450s 450s 2025-02-19 11:06:41 (197 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/cp.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/cp.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 289 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cp.svg’ 450s 450s 0K 100% 201M=0s 450s 450s 2025-02-19 11:06:41 (201 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/cp.svg’ saved [289/289] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/dg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 23180 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dg.svg’ 450s 450s 0K .......... .......... .. 100% 6.28G=0s 450s 450s 2025-02-19 11:06:41 (6.28 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/dg.svg’ saved [23180/23180] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/dg.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 22905 (22K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dg.svg’ 450s 450s 0K .......... .......... .. 100% 4.95G=0s 450s 450s 2025-02-19 11:06:41 (4.95 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/dg.svg’ saved [22905/22905] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eac.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 14622 (14K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eac.svg’ 450s 450s 0K .......... .... 100% 4.22G=0s 450s 450s 2025-02-19 11:06:41 (4.22 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eac.svg’ saved [14622/14622] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eac.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 14631 (14K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eac.svg’ 450s 450s 0K .......... .... 100% 4.32G=0s 450s 450s 2025-02-19 11:06:41 (4.32 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eac.svg’ saved [14631/14631] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ct.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 255 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ct.svg’ 450s 450s 0K 100% 146M=0s 450s 450s 2025-02-19 11:06:41 (146 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ct.svg’ saved [255/255] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ct.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 254 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ct.svg’ 450s 450s 0K 100% 181M=0s 450s 450s 2025-02-19 11:06:41 (181 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ct.svg’ saved [254/254] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ga.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 28686 (28K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ga.svg’ 450s 450s 0K .......... .......... ........ 100% 5.12G=0s 450s 450s 2025-02-19 11:06:41 (5.12 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-ga.svg’ saved [28686/28686] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ga.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 28814 (28K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ga.svg’ 450s 450s 0K .......... .......... ........ 100% 6.18G=0s 450s 450s 2025-02-19 11:06:41 (6.18 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-ga.svg’ saved [28814/28814] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/es-pv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 446 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-pv.svg’ 450s 450s 0K 100% 211M=0s 450s 450s 2025-02-19 11:06:41 (211 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/es-pv.svg’ saved [446/446] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/es-pv.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 428 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-pv.svg’ 450s 450s 0K 100% 261M=0s 450s 450s 2025-02-19 11:06:41 (261 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/es-pv.svg’ saved [428/428] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/eu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1296 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eu.svg’ 450s 450s 0K . 100% 852M=0s 450s 450s 2025-02-19 11:06:41 (852 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/eu.svg’ saved [1296/1296] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/eu.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 1297 (1.3K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eu.svg’ 450s 450s 0K . 100% 754M=0s 450s 450s 2025-02-19 11:06:41 (754 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/eu.svg’ saved [1297/1297] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-eng.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 239 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-eng.svg’ 450s 450s 0K 100% 169M=0s 450s 450s 2025-02-19 11:06:41 (169 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-eng.svg’ saved [239/239] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-eng.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 229 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-eng.svg’ 450s 450s 0K 100% 104M=0s 450s 450s 2025-02-19 11:06:41 (104 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-eng.svg’ saved [229/229] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-nir.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 23734 (23K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-nir.svg’ 450s 450s 0K .......... .......... ... 100% 6.74G=0s 450s 450s 2025-02-19 11:06:41 (6.74 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-nir.svg’ saved [23734/23734] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-nir.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 25259 (25K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-nir.svg’ 450s 450s 0K .......... .......... .... 100% 5.63G=0s 450s 450s 2025-02-19 11:06:41 (5.63 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-nir.svg’ saved [25259/25259] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-sct.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 228 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-sct.svg’ 450s 450s 0K 100% 125M=0s 450s 450s 2025-02-19 11:06:41 (125 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-sct.svg’ saved [228/228] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-sct.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 236 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-sct.svg’ 450s 450s 0K 100% 139M=0s 450s 450s 2025-02-19 11:06:41 (139 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-sct.svg’ saved [236/236] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-wls.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9178 (9.0K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-wls.svg’ 450s 450s 0K ........ 100% 3.75G=0s 450s 450s 2025-02-19 11:06:41 (3.75 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/gb-wls.svg’ saved [9178/9178] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-wls.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9070 (8.9K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-wls.svg’ 450s 450s 0K ........ 100% 3.47G=0s 450s 450s 2025-02-19 11:06:41 (3.47 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/gb-wls.svg’ saved [9070/9070] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ic.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 286 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ic.svg’ 450s 450s 0K 100% 51.3M=0s 450s 450s 2025-02-19 11:06:41 (51.3 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ic.svg’ saved [286/286] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ic.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 286 [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ic.svg’ 450s 450s 0K 100% 171M=0s 450s 450s 2025-02-19 11:06:41 (171 MB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ic.svg’ saved [286/286] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/ta.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 30886 (30K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ta.svg’ 450s 450s 0K .......... .......... .......... 100% 5.68G=0s 450s 450s 2025-02-19 11:06:41 (5.68 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/ta.svg’ saved [30886/30886] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/ta.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 30646 (30K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ta.svg’ 450s 450s 0K .......... .......... ......... 100% 5.82G=0s 450s 450s 2025-02-19 11:06:41 (5.82 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/ta.svg’ saved [30646/30646] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/un.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 20175 (20K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/un.svg’ 450s 450s 0K .......... ......... 100% 4.73G=0s 450s 450s 2025-02-19 11:06:41 (4.73 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/un.svg’ saved [20175/20175] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/un.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 20410 (20K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/un.svg’ 450s 450s 0K .......... ......... 100% 6.48G=0s 450s 450s 2025-02-19 11:06:41 (6.48 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/un.svg’ saved [20410/20410] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/4x3/xk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 9358 (9.1K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xk.svg’ 450s 450s 0K ......... 100% 3.35G=0s 450s 450s 2025-02-19 11:06:41 (3.35 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/4x3/xk.svg’ saved [9358/9358] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/vendor/flag-icons/flags/1x1/xk.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 8669 (8.5K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xk.svg’ 450s 450s 0K ........ 100% 3.09G=0s 450s 450s 2025-02-19 11:06:41 (3.09 GB/s) - ‘localhost/cacti/include/vendor/flag-icons/flags/1x1/xk.svg’ saved [8669/8669] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/images/bullet_arrow_down.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 201 [image/png] 450s Saving to: ‘localhost/cacti/images/bullet_arrow_down.png’ 450s 450s 0K 100% 107M=0s 450s 450s 2025-02-19 11:06:41 (107 MB/s) - ‘localhost/cacti/images/bullet_arrow_down.png’ saved [201/201] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/images/bullet_arrow_up.png 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 201 [image/png] 450s Saving to: ‘localhost/cacti/images/bullet_arrow_up.png’ 450s 450s 0K 100% 109M=0s 450s 450s 2025-02-19 11:06:41 (109 MB/s) - ‘localhost/cacti/images/bullet_arrow_up.png’ saved [201/201] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/include/themes/modern/images/cacti_logo.svg 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 17040 (17K) [image/svg+xml] 450s Saving to: ‘localhost/cacti/include/themes/modern/images/cacti_logo.svg’ 450s 450s 0K .......... ...... 100% 4.53G=0s 450s 450s 2025-02-19 11:06:41 (4.53 GB/s) - ‘localhost/cacti/include/themes/modern/images/cacti_logo.svg’ saved [17040/17040] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/images/shadow_gray.gif 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 90 [image/gif] 450s Saving to: ‘localhost/cacti/images/shadow_gray.gif’ 450s 450s 0K 100% 62.3M=0s 450s 450s 2025-02-19 11:06:41 (62.3 MB/s) - ‘localhost/cacti/images/shadow_gray.gif’ saved [90/90] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/reports_admin.php?action=edit&tab=details 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/reports_admin.php?action=edit&tab=details’ 450s 450s 0K .......... .......... .......... .... 3.53G=0s 450s 450s 2025-02-19 11:06:41 (3.53 GB/s) - ‘localhost/cacti/reports_admin.php?action=edit&tab=details’ saved [35299] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/images/arrow.gif 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: 859 [image/gif] 450s Saving to: ‘localhost/cacti/images/arrow.gif’ 450s 450s 0K 100% 476M=0s 450s 450s 2025-02-19 11:06:41 (476 MB/s) - ‘localhost/cacti/images/arrow.gif’ saved [859/859] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/host.php?action=edit&id= 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/host.php?action=edit&id=’ 450s 450s 0K .......... .......... .......... .......... .......... 3.81G 450s 50K ........ 15.6T=0s 450s 450s 2025-02-19 11:06:41 (4.45 GB/s) - ‘localhost/cacti/host.php?action=edit&id=’ saved [59797] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/host.php?action=edit 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/host.php?action=edit’ 450s 450s 0K .......... .......... .......... .......... .......... 5.01G 450s 50K ........ 15.6T=0s 450s 450s 2025-02-19 11:06:41 (5.85 GB/s) - ‘localhost/cacti/host.php?action=edit’ saved [59797] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/sites.php?action=edit 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/sites.php?action=edit’ 450s 450s 0K .......... .......... .......... ..... 4.66G=0s 450s 450s 2025-02-19 11:06:41 (4.66 GB/s) - ‘localhost/cacti/sites.php?action=edit’ saved [36552] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/sites.php?action=edit&id=2 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/sites.php?action=edit&id=2’ 450s 450s 0K .......... .......... .......... ..... 4.22G=0s 450s 450s 2025-02-19 11:06:41 (4.22 GB/s) - ‘localhost/cacti/sites.php?action=edit&id=2’ saved [36571] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/host.php?reset=1&site_id=2 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/host.php?reset=1&site_id=2’ 450s 450s 0K .......... .......... .......... ...... 5.32G=0s 450s 450s 2025-02-19 11:06:41 (5.32 GB/s) - ‘localhost/cacti/host.php?reset=1&site_id=2’ saved [37040] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/sites.php?action=edit&id=1 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/sites.php?action=edit&id=1’ 450s 450s 0K .......... .......... .......... ..... 3.43G=0s 450s 450s 2025-02-19 11:06:41 (3.43 GB/s) - ‘localhost/cacti/sites.php?action=edit&id=1’ saved [36571] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/host.php?reset=1&site_id=1 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/host.php?reset=1&site_id=1’ 450s 450s 0K .......... .......... .......... ...... 5.28G=0s 450s 450s 2025-02-19 11:06:41 (5.28 GB/s) - ‘localhost/cacti/host.php?reset=1&site_id=1’ saved [37040] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/tree.php?action=edit 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/tree.php?action=edit’ 450s 450s 0K .......... .......... ....... 4.43G=0s 450s 450s 2025-02-19 11:06:41 (4.43 GB/s) - ‘localhost/cacti/tree.php?action=edit’ saved [27777] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/tree.php?action=sortasc 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 302 Found 450s Location: tree.php?header=false [following] 450s --2025-02-19 11:06:41-- http://localhost/cacti/tree.php?header=false 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/tree.php?action=sortasc’ 450s 450s 0K .......... ... 3.42G=0s 450s 450s 2025-02-19 11:06:41 (3.42 GB/s) - ‘localhost/cacti/tree.php?action=sortasc’ saved [14238] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/tree.php?action=sortdesc 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 302 Found 450s Location: tree.php?header=false [following] 450s --2025-02-19 11:06:41-- http://localhost/cacti/tree.php?header=false 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/tree.php?action=sortdesc’ 450s 450s 0K .......... ... 3.54G=0s 450s 450s 2025-02-19 11:06:41 (3.54 GB/s) - ‘localhost/cacti/tree.php?action=sortdesc’ saved [14238] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/tree.php?action=edit&id=1 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/tree.php?action=edit&id=1’ 450s 450s 0K .......... .......... .......... .......... .......... 4.24G 450s 50K .... 8.21T=0s 450s 450s 2025-02-19 11:06:41 (4.62 GB/s) - ‘localhost/cacti/tree.php?action=edit&id=1’ saved [55713] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/pollers.php?action=edit&id=1 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/pollers.php?action=edit&id=1’ 450s 450s 0K .......... .......... .......... . 4.41G=0s 450s 450s 2025-02-19 11:06:41 (4.41 GB/s) - ‘localhost/cacti/pollers.php?action=edit&id=1’ saved [32638] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/data_queries.php?action=edit 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/data_queries.php?action=edit’ 450s 450s 0K .......... .......... ......... 4.54G=0s 450s 450s 2025-02-19 11:06:41 (4.54 GB/s) - ‘localhost/cacti/data_queries.php?action=edit’ saved [29904] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/data_queries.php?action=edit&id=2 450s Reusing existing connection to [localhost]:80. 450s HTTP request sent, awaiting response... 200 OK 450s Length: unspecified [text/html] 450s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=2’ 450s 450s 0K .......... .......... .......... 5.00G=0s 450s 450s 2025-02-19 11:06:41 (5.00 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=2’ saved [31647] 450s 450s --2025-02-19 11:06:41-- http://localhost/cacti/data_queries.php?action=edit&id=3 450s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=3’ 451s 451s 0K .......... .......... .......... . 4.29G=0s 451s 451s 2025-02-19 11:06:41 (4.29 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=3’ saved [32200] 451s 451s --2025-02-19 11:06:41-- http://localhost/cacti/data_queries.php?action=edit&id=4 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=4’ 451s 451s 0K .......... .......... .......... 4.68G=0s 451s 451s 2025-02-19 11:06:42 (4.68 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=4’ saved [31624] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=1 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=1’ 451s 451s 0K .......... .......... .......... 5.57G=0s 451s 451s 2025-02-19 11:06:42 (5.57 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=1’ saved [31602] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=8 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=8’ 451s 451s 0K .......... .......... .......... . 4.82G=0s 451s 451s 2025-02-19 11:06:42 (4.82 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=8’ saved [32190] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=7 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=7’ 451s 451s 0K .......... .......... .......... . 3.91G=0s 451s 451s 2025-02-19 11:06:42 (3.91 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=7’ saved [32165] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=6 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=6’ 451s 451s 0K .......... .......... .......... 5.19G=0s 451s 451s 2025-02-19 11:06:42 (5.19 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=6’ saved [31640] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=5 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=5’ 451s 451s 0K .......... .......... .......... 4.19G=0s 451s 451s 2025-02-19 11:06:42 (4.19 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=5’ saved [31658] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=9 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=9’ 451s 451s 0K .......... .......... .......... . 3.89G=0s 451s 451s 2025-02-19 11:06:42 (3.89 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=9’ saved [32761] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=10 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=10’ 451s 451s 0K .......... .......... .......... ... 5.48G=0s 451s 451s 2025-02-19 11:06:42 (5.48 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=10’ saved [33857] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=11 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=11’ 451s 451s 0K .......... .......... .......... 6.34G=0s 451s 451s 2025-02-19 11:06:42 (6.34 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=11’ saved [31693] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=12 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=12’ 451s 451s 0K .......... .......... .......... .... 5.20G=0s 451s 451s 2025-02-19 11:06:42 (5.20 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=12’ saved [35000] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=22 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=22’ 451s 451s 0K .......... .......... .......... . 5.23G=0s 451s 451s 2025-02-19 11:06:42 (5.23 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=22’ saved [32299] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=21 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=21’ 451s 451s 0K .......... .......... .......... 5.76G=0s 451s 451s 2025-02-19 11:06:42 (5.76 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=21’ saved [31672] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=15 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=15’ 451s 451s 0K .......... .......... .......... 4.76G=0s 451s 451s 2025-02-19 11:06:42 (4.76 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=15’ saved [31679] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=16 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=16’ 451s 451s 0K .......... .......... .......... 6.13G=0s 451s 451s 2025-02-19 11:06:42 (6.13 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=16’ saved [31719] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=14 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=14’ 451s 451s 0K .......... .......... .......... 5.70G=0s 451s 451s 2025-02-19 11:06:42 (5.70 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=14’ saved [31688] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=17 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=17’ 451s 451s 0K .......... .......... .......... 4.81G=0s 451s 451s 2025-02-19 11:06:42 (4.81 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=17’ saved [31677] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=19 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=19’ 451s 451s 0K .......... .......... .......... 4.48G=0s 451s 451s 2025-02-19 11:06:42 (4.48 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=19’ saved [31724] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=18 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=18’ 451s 451s 0K .......... .......... .......... 5.61G=0s 451s 451s 2025-02-19 11:06:42 (5.61 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=18’ saved [31729] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=20 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=20’ 451s 451s 0K .......... .......... .......... 6.49G=0s 451s 451s 2025-02-19 11:06:42 (6.49 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=20’ saved [31723] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=24 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=24’ 451s 451s 0K .......... .......... .......... ... 5.23G=0s 451s 451s 2025-02-19 11:06:42 (5.23 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=24’ saved [33970] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=23 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=23’ 451s 451s 0K .......... .......... .......... ... 4.74G=0s 451s 451s 2025-02-19 11:06:42 (4.74 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=23’ saved [34294] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=25 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=25’ 451s 451s 0K .......... .......... .......... .. 4.49G=0s 451s 451s 2025-02-19 11:06:42 (4.49 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=25’ saved [33286] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=27 451s Connecting to localhost (localhost)|::1|:80... connected. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=27’ 451s 451s 0K .......... .......... .......... . 3.62G=0s 451s 451s 2025-02-19 11:06:42 (3.62 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=27’ saved [32193] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=26 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=26’ 451s 451s 0K .......... .......... .......... .. 4.51G=0s 451s 451s 2025-02-19 11:06:42 (4.51 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=26’ saved [33244] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=28 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=28’ 451s 451s 0K .......... .......... .......... . 3.46G=0s 451s 451s 2025-02-19 11:06:42 (3.46 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=28’ saved [32163] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=29 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=29’ 451s 451s 0K .......... .......... .......... 4.30G=0s 451s 451s 2025-02-19 11:06:42 (4.30 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=29’ saved [31603] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=37 451s Reusing existing connection to [localhost]:80. 451s HTTP request sent, awaiting response... 200 OK 451s Length: unspecified [text/html] 451s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=37’ 451s 451s 0K .......... .......... .......... 2.97G=0s 451s 451s 2025-02-19 11:06:42 (2.97 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=37’ saved [31696] 451s 451s --2025-02-19 11:06:42-- http://localhost/cacti/data_queries.php?action=edit&id=38 451s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_queries.php?action=edit&id=38’ 452s 452s 0K .......... .......... .......... 3.50G=0s 452s 452s 2025-02-19 11:06:42 (3.50 GB/s) - ‘localhost/cacti/data_queries.php?action=edit&id=38’ saved [31687] 452s 452s --2025-02-19 11:06:42-- http://localhost/cacti/data_input.php?action=edit 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit’ 452s 452s 0K .......... .......... ........ 4.08G=0s 452s 452s 2025-02-19 11:06:42 (4.08 GB/s) - ‘localhost/cacti/data_input.php?action=edit’ saved [28911] 452s 452s --2025-02-19 11:06:42-- http://localhost/cacti/data_input.php?action=edit&id=15 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=15’ 452s 452s 0K .......... .......... .......... 3.47G=0s 452s 452s 2025-02-19 11:06:42 (3.47 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=15’ saved [31418] 452s 452s --2025-02-19 11:06:42-- http://localhost/cacti/data_input.php?action=edit&id=17 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=17’ 452s 452s 0K .......... .......... .......... .... 4.43G=0s 452s 452s 2025-02-19 11:06:42 (4.43 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=17’ saved [35551] 452s 452s --2025-02-19 11:06:42-- http://localhost/cacti/data_input.php?action=edit&id=13 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=13’ 452s 452s 0K .......... .......... .......... 4.15G=0s 452s 452s 2025-02-19 11:06:42 (4.15 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=13’ saved [31410] 452s 452s --2025-02-19 11:06:42-- http://localhost/cacti/data_input.php?action=edit&id=14 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=14’ 452s 452s 0K .......... .......... .......... 3.15G=0s 452s 452s 2025-02-19 11:06:43 (3.15 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=14’ saved [31420] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=16 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=16’ 452s 452s 0K .......... .......... .......... . 4.75G=0s 452s 452s 2025-02-19 11:06:43 (4.75 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=16’ saved [31871] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=18 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=18’ 452s 452s 0K .......... .......... .......... 2.20G=0s 452s 452s 2025-02-19 11:06:43 (2.20 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=18’ saved [31341] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=19 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=19’ 452s 452s 0K .......... .......... .......... 3.60G=0s 452s 452s 2025-02-19 11:06:43 (3.60 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=19’ saved [31357] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=23 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=23’ 452s 452s 0K .......... .......... .......... 4.12G=0s 452s 452s 2025-02-19 11:06:43 (4.12 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=23’ saved [31411] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=33 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=33’ 452s 452s 0K .......... .......... .......... 2.69G=0s 452s 452s 2025-02-19 11:06:43 (2.69 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=33’ saved [31019] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=26 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=26’ 452s 452s 0K .......... .......... .......... 4.85G=0s 452s 452s 2025-02-19 11:06:43 (4.85 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=26’ saved [30980] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=34 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=34’ 452s 452s 0K .......... .......... .......... 4.96G=0s 452s 452s 2025-02-19 11:06:43 (4.96 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=34’ saved [30993] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=35 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=35’ 452s 452s 0K .......... .......... .......... 5.88G=0s 452s 452s 2025-02-19 11:06:43 (5.88 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=35’ saved [31001] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=36 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=36’ 452s 452s 0K .......... .......... .......... .. 2.93G=0s 452s 452s 2025-02-19 11:06:43 (2.93 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=36’ saved [33460] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=29 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=29’ 452s 452s 0K .......... .......... .......... 3.73G=0s 452s 452s 2025-02-19 11:06:43 (3.73 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=29’ saved [30990] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=28 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=28’ 452s 452s 0K .......... .......... .......... 4.61G=0s 452s 452s 2025-02-19 11:06:43 (4.61 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=28’ saved [30997] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=24 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=24’ 452s 452s 0K .......... .......... .......... . 4.53G=0s 452s 452s 2025-02-19 11:06:43 (4.53 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=24’ saved [31851] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=22 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=22’ 452s 452s 0K .......... .......... .......... .. 5.16G=0s 452s 452s 2025-02-19 11:06:43 (5.16 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=22’ saved [33698] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=25 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=25’ 452s 452s 0K .......... .......... .......... 2.88G=0s 452s 452s 2025-02-19 11:06:43 (2.88 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=25’ saved [31438] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=31 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=31’ 452s 452s 0K .......... .......... .......... 3.76G=0s 452s 452s 2025-02-19 11:06:43 (3.76 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=31’ saved [30985] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=30 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=30’ 452s 452s 0K .......... .......... .......... ... 4.76G=0s 452s 452s 2025-02-19 11:06:43 (4.76 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=30’ saved [33796] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=32 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=32’ 452s 452s 0K .......... .......... .......... 2.81G=0s 452s 452s 2025-02-19 11:06:43 (2.81 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=32’ saved [30989] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=27 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=27’ 452s 452s 0K .......... .......... .......... ... 3.72G=0s 452s 452s 2025-02-19 11:06:43 (3.72 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=27’ saved [33871] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=20 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=20’ 452s 452s 0K .......... .......... .......... 3.98G=0s 452s 452s 2025-02-19 11:06:43 (3.98 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=20’ saved [31388] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=21 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=21’ 452s 452s 0K .......... .......... .......... 3.06G=0s 452s 452s 2025-02-19 11:06:43 (3.06 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=21’ saved [31364] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=38 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=38’ 452s 452s 0K .......... .......... .......... 3.49G=0s 452s 452s 2025-02-19 11:06:43 (3.49 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=38’ saved [31360] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=37 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=37’ 452s 452s 0K .......... .......... .......... .. 3.64G=0s 452s 452s 2025-02-19 11:06:43 (3.64 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=37’ saved [33064] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=41 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=41’ 452s 452s 0K .......... .......... .......... .. 4.22G=0s 452s 452s 2025-02-19 11:06:43 (4.22 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=41’ saved [33121] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=40 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=40’ 452s 452s 0K .......... .......... .......... . 3.94G=0s 452s 452s 2025-02-19 11:06:43 (3.94 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=40’ saved [31788] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=39 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=39’ 452s 452s 0K .......... .......... .......... .. 3.88G=0s 452s 452s 2025-02-19 11:06:43 (3.88 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=39’ saved [33180] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/data_input.php?action=edit&id=6 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/data_input.php?action=edit&id=6’ 452s 452s 0K .......... .......... .......... 3.92G=0s 452s 452s 2025-02-19 11:06:43 (3.92 GB/s) - ‘localhost/cacti/data_input.php?action=edit&id=6’ saved [31336] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/host_templates.php?action=edit 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/host_templates.php?action=edit’ 452s 452s 0K .......... .......... ......... 3.54G=0s 452s 452s 2025-02-19 11:06:43 (3.54 GB/s) - ‘localhost/cacti/host_templates.php?action=edit’ saved [30222] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/host_templates.php?action=edit&id=1 452s Reusing existing connection to [localhost]:80. 452s HTTP request sent, awaiting response... 200 OK 452s Length: unspecified [text/html] 452s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=1’ 452s 452s 0K .......... .......... .......... .......... ....... 3.20G=0s 452s 452s 2025-02-19 11:06:43 (3.20 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=1’ saved [48561] 452s 452s --2025-02-19 11:06:43-- http://localhost/cacti/host.php?reset=true&host_template_id=1 452s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=1’ 453s 453s 0K .......... .......... .......... ...... 4.19G=0s 453s 453s 2025-02-19 11:06:43 (4.19 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=1’ saved [37054] 453s 453s --2025-02-19 11:06:43-- http://localhost/cacti/host_templates.php?action=edit&id=2 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=2’ 453s 453s 0K .......... .......... .......... .......... .... 5.53G=0s 453s 453s 2025-02-19 11:06:44 (5.53 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=2’ saved [45784] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=2 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=2’ 453s 453s 0K .......... .......... .......... ...... 4.53G=0s 453s 453s 2025-02-19 11:06:44 (4.53 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=2’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=5 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=5’ 453s 453s 0K .......... .......... .......... .......... ..... 4.73G=0s 453s 453s 2025-02-19 11:06:44 (4.73 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=5’ saved [46653] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=5 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=5’ 453s 453s 0K .......... .......... .......... ...... 4.05G=0s 453s 453s 2025-02-19 11:06:44 (4.05 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=5’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=3 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=3’ 453s 453s 0K .......... .......... .......... .......... ...... 4.41G=0s 453s 453s 2025-02-19 11:06:44 (4.41 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=3’ saved [47779] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=3 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=3’ 453s 453s 0K .......... .......... .......... ...... 4.97G=0s 453s 453s 2025-02-19 11:06:44 (4.97 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=3’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=4 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=4’ 453s 453s 0K .......... .......... .......... .......... ..... 4.56G=0s 453s 453s 2025-02-19 11:06:44 (4.56 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=4’ saved [46607] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=4 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=4’ 453s 453s 0K .......... .......... .......... ...... 6.87G=0s 453s 453s 2025-02-19 11:06:44 (6.87 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=4’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=7 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=7’ 453s 453s 0K .......... .......... .......... .......... .... 5.72G=0s 453s 453s 2025-02-19 11:06:44 (5.72 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=7’ saved [46034] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=7 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=7’ 453s 453s 0K .......... .......... .......... ...... 3.30G=0s 453s 453s 2025-02-19 11:06:44 (3.30 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=7’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=8 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=8’ 453s 453s 0K .......... .......... .......... .......... ..... 4.48G=0s 453s 453s 2025-02-19 11:06:44 (4.48 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=8’ saved [46090] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=8 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=8’ 453s 453s 0K .......... .......... .......... ...... 4.76G=0s 453s 453s 2025-02-19 11:06:44 (4.76 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=8’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=9 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=9’ 453s 453s 0K .......... .......... .......... .......... ..... 3.58G=0s 453s 453s 2025-02-19 11:06:44 (3.58 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=9’ saved [46615] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=9 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=9’ 453s 453s 0K .......... .......... .......... ...... 5.12G=0s 453s 453s 2025-02-19 11:06:44 (5.12 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=9’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=6 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=6’ 453s 453s 0K .......... .......... .......... .......... .... 5.22G=0s 453s 453s 2025-02-19 11:06:44 (5.22 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=6’ saved [45730] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=6 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=6’ 453s 453s 0K .......... .......... .......... ...... 4.62G=0s 453s 453s 2025-02-19 11:06:44 (4.62 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=6’ saved [37054] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=10 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=10’ 453s 453s 0K .......... .......... .......... .......... ...... 4.18G=0s 453s 453s 2025-02-19 11:06:44 (4.18 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=10’ saved [47176] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=10 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=10’ 453s 453s 0K .......... .......... .......... ...... 8.07G=0s 453s 453s 2025-02-19 11:06:44 (8.07 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=10’ saved [37055] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=11 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=11’ 453s 453s 0K .......... .......... .......... .......... .......... 4.62G 453s 50K 1.18T=0s 453s 453s 2025-02-19 11:06:44 (4.68 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=11’ saved [51848] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=11 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=11’ 453s 453s 0K .......... .......... .......... ...... 4.66G=0s 453s 453s 2025-02-19 11:06:44 (4.66 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=11’ saved [37055] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=12 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=12’ 453s 453s 0K .......... .......... .......... .......... ..... 4.34G=0s 453s 453s 2025-02-19 11:06:44 (4.34 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=12’ saved [46312] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=12 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=12’ 453s 453s 0K .......... .......... .......... ...... 4.10G=0s 453s 453s 2025-02-19 11:06:44 (4.10 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=12’ saved [37055] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=13 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=13’ 453s 453s 0K .......... .......... .......... .......... .......... 4.48G 453s 50K . 2.26T=0s 453s 453s 2025-02-19 11:06:44 (4.59 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=13’ saved [52443] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=13 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=13’ 453s 453s 0K .......... .......... .......... ...... 4.83G=0s 453s 453s 2025-02-19 11:06:44 (4.83 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=13’ saved [37055] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=14 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=14’ 453s 453s 0K .......... .......... .......... .......... ..... 4.75G=0s 453s 453s 2025-02-19 11:06:44 (4.75 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=14’ saved [46621] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=14 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=14’ 453s 453s 0K .......... .......... .......... ...... 4.14G=0s 453s 453s 2025-02-19 11:06:44 (4.14 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=14’ saved [37055] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=15 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=15’ 453s 453s 0K .......... .......... .......... .......... ...... 4.23G=0s 453s 453s 2025-02-19 11:06:44 (4.23 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=15’ saved [47472] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=15 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=15’ 453s 453s 0K .......... .......... .......... ...... 3.21G=0s 453s 453s 2025-02-19 11:06:44 (3.21 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=15’ saved [37055] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=16 453s Reusing existing connection to [localhost]:80. 453s HTTP request sent, awaiting response... 200 OK 453s Length: unspecified [text/html] 453s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=16’ 453s 453s 0K .......... .......... .......... .......... ...... 4.34G=0s 453s 453s 2025-02-19 11:06:44 (4.34 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=16’ saved [47468] 453s 453s --2025-02-19 11:06:44-- http://localhost/cacti/host.php?reset=true&host_template_id=16 453s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=16’ 454s 454s 0K .......... .......... .......... ...... 3.32G=0s 454s 454s 2025-02-19 11:06:44 (3.32 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=16’ saved [37055] 454s 454s --2025-02-19 11:06:44-- http://localhost/cacti/host_templates.php?action=edit&id=17 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=17’ 454s 454s 0K .......... .......... .......... .......... .... 3.55G=0s 454s 454s 2025-02-19 11:06:45 (3.55 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=17’ saved [46030] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=17 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=17’ 454s 454s 0K .......... .......... .......... ...... 4.72G=0s 454s 454s 2025-02-19 11:06:45 (4.72 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=17’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=18 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=18’ 454s 454s 0K .......... .......... .......... .......... ..... 4.92G=0s 454s 454s 2025-02-19 11:06:45 (4.92 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=18’ saved [46883] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=18 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=18’ 454s 454s 0K .......... .......... .......... ...... 2.84G=0s 454s 454s 2025-02-19 11:06:45 (2.84 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=18’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=19 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=19’ 454s 454s 0K .......... .......... .......... .......... .... 4.09G=0s 454s 454s 2025-02-19 11:06:45 (4.09 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=19’ saved [46030] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=19 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=19’ 454s 454s 0K .......... .......... .......... ...... 4.34G=0s 454s 454s 2025-02-19 11:06:45 (4.34 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=19’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=20 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=20’ 454s 454s 0K .......... .......... .......... .......... .......... 3.32G 454s 50K ... 5.98T=0s 454s 454s 2025-02-19 11:06:45 (3.53 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=20’ saved [54490] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=20 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=20’ 454s 454s 0K .......... .......... .......... ...... 5.26G=0s 454s 454s 2025-02-19 11:06:45 (5.26 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=20’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=21 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=21’ 454s 454s 0K .......... .......... .......... .......... .... 4.86G=0s 454s 454s 2025-02-19 11:06:45 (4.86 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=21’ saved [45751] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=21 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=21’ 454s 454s 0K .......... .......... .......... ...... 5.58G=0s 454s 454s 2025-02-19 11:06:45 (5.58 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=21’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=22 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=22’ 454s 454s 0K .......... .......... .......... .......... ..... 5.24G=0s 454s 454s 2025-02-19 11:06:45 (5.24 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=22’ saved [46374] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=22 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=22’ 454s 454s 0K .......... .......... .......... ...... 4.84G=0s 454s 454s 2025-02-19 11:06:45 (4.84 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=22’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=23 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=23’ 454s 454s 0K .......... .......... .......... .......... ........ 5.51G=0s 454s 454s 2025-02-19 11:06:45 (5.51 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=23’ saved [50091] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=23 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=23’ 454s 454s 0K .......... .......... .......... ...... 4.42G=0s 454s 454s 2025-02-19 11:06:45 (4.42 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=23’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=24 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=24’ 454s 454s 0K .......... .......... .......... .......... .... 5.43G=0s 454s 454s 2025-02-19 11:06:45 (5.43 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=24’ saved [45731] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=24 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=24’ 454s 454s 0K .......... .......... .......... ...... 4.53G=0s 454s 454s 2025-02-19 11:06:45 (4.53 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=24’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=25 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=25’ 454s 454s 0K .......... .......... .......... .......... ..... 4.32G=0s 454s 454s 2025-02-19 11:06:45 (4.32 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=25’ saved [46304] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=25 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=25’ 454s 454s 0K .......... .......... .......... ...... 4.20G=0s 454s 454s 2025-02-19 11:06:45 (4.20 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=25’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=26 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=26’ 454s 454s 0K .......... .......... .......... .......... .......... 5.73G 454s 50K 102G=0s 454s 454s 2025-02-19 11:06:45 (5.73 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=26’ saved [51255] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=26 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=26’ 454s 454s 0K .......... .......... .......... ...... 4.65G=0s 454s 454s 2025-02-19 11:06:45 (4.65 GB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=26’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host_templates.php?action=edit&id=27 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host_templates.php?action=edit&id=27’ 454s 454s 0K .......... .......... .......... .......... ..... 5.49G=0s 454s 454s 2025-02-19 11:06:45 (5.49 GB/s) - ‘localhost/cacti/host_templates.php?action=edit&id=27’ saved [46601] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/host.php?reset=true&host_template_id=27 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/host.php?reset=true&host_template_id=27’ 454s 454s 0K .......... .......... .......... ...... 488M=0s 454s 454s 2025-02-19 11:06:45 (488 MB/s) - ‘localhost/cacti/host.php?reset=true&host_template_id=27’ saved [37055] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit’ 454s 454s 0K .......... .......... .......... .......... .......... 2.86G 454s 50K .......... .......... . 290M=0s 454s 454s 2025-02-19 11:06:45 (783 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit’ saved [73318] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=2 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=2’ 454s 454s 0K .......... .......... .......... .......... .......... 5.52G 454s 50K .......... .......... .......... .. 417M=0s 454s 454s 2025-02-19 11:06:45 (950 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=2’ saved [84521] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=9 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=9’ 454s 454s 0K .......... .......... .......... .......... .......... 4.10G 454s 50K .......... .......... ...... 403M=0s 454s 454s 2025-02-19 11:06:45 (985 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=9’ saved [78330] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=6 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=6’ 454s 454s 0K .......... .......... .......... .......... .......... 5.62G 454s 50K .......... .......... ........ 539M=0s 454s 454s 2025-02-19 11:06:45 (1.25 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=6’ saved [80002] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=8 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=8’ 454s 454s 0K .......... .......... .......... .......... .......... 5.06G 454s 50K .......... .......... ........ 460M=0s 454s 454s 2025-02-19 11:06:45 (1.08 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=8’ saved [79973] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=5 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=5’ 454s 454s 0K .......... .......... .......... .......... .......... 4.40G 454s 50K .......... .......... .......... .. 561M=0s 454s 454s 2025-02-19 11:06:45 (1.16 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=5’ saved [84603] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=3 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=3’ 454s 454s 0K .......... .......... .......... .......... .......... 3.19G 454s 50K .......... .......... .......... .......... . 667M=0s 454s 454s 2025-02-19 11:06:45 (1.15 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=3’ saved [93830] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=7 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=7’ 454s 454s 0K .......... .......... .......... .......... .......... 1.99G 454s 50K .......... .......... .......... .. 607M=0s 454s 454s 2025-02-19 11:06:45 (1.03 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=7’ saved [84779] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=4 454s Reusing existing connection to [localhost]:80. 454s HTTP request sent, awaiting response... 200 OK 454s Length: unspecified [text/html] 454s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=4’ 454s 454s 0K .......... .......... .......... .......... .......... 5.85G 454s 50K .......... .......... ........ 526M=0s 454s 454s 2025-02-19 11:06:45 (1.23 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=4’ saved [80019] 454s 454s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=1 454s Connecting to localhost (localhost)|::1|:80... connected. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=1’ 455s 455s 0K .......... .......... .......... .......... .......... 4.39G 455s 50K .......... .......... ........ 427M=0s 455s 455s 2025-02-19 11:06:45 (1015 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=1’ saved [80016] 455s 455s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=14 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=14’ 455s 455s 0K .......... .......... .......... .......... .......... 4.88G 455s 50K .......... .......... .......... 623M=0s 455s 455s 2025-02-19 11:06:45 (1.33 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=14’ saved [82366] 455s 455s --2025-02-19 11:06:45-- http://localhost/cacti/graph_templates.php?action=template_edit&id=15 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=15’ 455s 455s 0K .......... .......... .......... .......... .......... 537M 455s 50K .......... .......... .......... 56.4T=0s 455s 455s 2025-02-19 11:06:46 (863 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=15’ saved [82233] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=12 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=12’ 455s 455s 0K .......... .......... .......... .......... .......... 3.69G 455s 50K .......... .......... .......... ......... 661M=0s 455s 455s 2025-02-19 11:06:46 (1.19 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=12’ saved [91867] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=13 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=13’ 455s 455s 0K .......... .......... .......... .......... .......... 2.11G 455s 50K .......... .......... .......... 467M=0s 455s 455s 2025-02-19 11:06:46 (913 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=13’ saved [82235] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=11 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=11’ 455s 455s 0K .......... .......... .......... .......... .......... 3.62G 455s 50K .......... .......... .......... ......... 545M=0s 455s 455s 2025-02-19 11:06:46 (1.01 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=11’ saved [91807] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=10 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=10’ 455s 455s 0K .......... .......... .......... .......... .......... 2.78G 455s 50K .......... .......... .......... ......... 655M=0s 455s 455s 2025-02-19 11:06:46 (1.12 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=10’ saved [91848] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=49 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=49’ 455s 455s 0K .......... .......... .......... .......... .......... 3.32G 455s 50K .......... .......... ........ 556M=0s 455s 455s 2025-02-19 11:06:46 (1.17 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=49’ saved [80223] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=50 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=50’ 455s 455s 0K .......... .......... .......... .......... .......... 3.00G 455s 50K .......... .......... .......... ...... 502M=0s 455s 455s 2025-02-19 11:06:46 (970 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=50’ saved [88852] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=52 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=52’ 455s 455s 0K .......... .......... .......... .......... .......... 2.22G 455s 50K .......... .......... .......... .......... ... 569M=0s 455s 455s 2025-02-19 11:06:46 (948 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=52’ saved [95991] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=51 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=51’ 455s 455s 0K .......... .......... .......... .......... .......... 2.58G 455s 50K .......... .......... .......... .......... .......... 760M 455s 100K .......... ....... 33.2T=0s 455s 455s 2025-02-19 11:06:46 (1.36 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=51’ saved [120673] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=48 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=48’ 455s 455s 0K .......... .......... .......... .......... .......... 1.98G 455s 50K .......... .......... ........ 416M=0s 455s 455s 2025-02-19 11:06:46 (846 MB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=48’ saved [80123] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=46 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=46’ 455s 455s 0K .......... .......... .......... .......... .......... 3.09G 455s 50K .......... .......... .......... .......... . 613M=0s 455s 455s 2025-02-19 11:06:46 (1.07 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=46’ saved [93453] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=47 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=47’ 455s 455s 0K .......... .......... .......... .......... .......... 4.21G 455s 50K .......... .......... ......... 530M=0s 455s 455s 2025-02-19 11:06:46 (1.16 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=47’ saved [81399] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=16 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=16’ 455s 455s 0K .......... .......... .......... .......... .......... 3.69G 455s 50K .......... .......... .......... 474M=0s 455s 455s 2025-02-19 11:06:46 (1.02 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=16’ saved [82192] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=26 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=26’ 455s 455s 0K .......... .......... .......... .......... .......... 3.87G 455s 50K .......... .......... .......... .... 647M=0s 455s 455s 2025-02-19 11:06:46 (1.25 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=26’ saved [86673] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=25 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=25’ 455s 455s 0K .......... .......... .......... .......... .......... 5.20G 455s 50K .......... .......... .......... .... 671M=0s 455s 455s 2025-02-19 11:06:46 (1.35 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=25’ saved [86813] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=27 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=27’ 455s 455s 0K .......... .......... .......... .......... .......... 5.30G 455s 50K .......... .......... .......... .... 661M=0s 455s 455s 2025-02-19 11:06:46 (1.34 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=27’ saved [86674] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=18 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=18’ 455s 455s 0K .......... .......... .......... .......... .......... 3.42G 455s 50K .......... .......... .......... 547M=0s 455s 455s 2025-02-19 11:06:46 (1.12 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=18’ saved [82335] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=19 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=19’ 455s 455s 0K .......... .......... .......... .......... .......... 4.91G 455s 50K .......... .......... .......... 559M=0s 455s 455s 2025-02-19 11:06:46 (1.22 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=19’ saved [82160] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=20 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=20’ 455s 455s 0K .......... .......... .......... .......... .......... 5.19G 455s 50K .......... .......... .......... 507M=0s 455s 455s 2025-02-19 11:06:46 (1.13 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=20’ saved [82389] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/graph_templates.php?action=template_edit&id=32 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/graph_templates.php?action=template_edit&id=32’ 455s 455s 0K .......... .......... .......... .......... .......... 5.30G 455s 50K .......... .......... .......... .... 634M=0s 455s 455s 2025-02-19 11:06:46 (1.29 GB/s) - ‘localhost/cacti/graph_templates.php?action=template_edit&id=32’ saved [86647] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit’ 455s 455s 0K .......... .......... .......... .......... .. 6.33G=0s 455s 455s 2025-02-19 11:06:46 (6.33 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit’ saved [43069] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=2 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=2’ 455s 455s 0K .......... .......... .......... .......... .......... 1.75G 455s 50K ....... 14.1T=0s 455s 455s 2025-02-19 11:06:46 (2.02 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=2’ saved [58951] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=2 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=2’ 455s 455s 0K .......... .......... .......... ... 4.75G=0s 455s 455s 2025-02-19 11:06:46 (4.75 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=2’ saved [34725] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=6 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=6’ 455s 455s 0K .......... .......... .......... .......... .......... 5.25G 455s 50K .... 8.46T=0s 455s 455s 2025-02-19 11:06:46 (5.73 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=6’ saved [55851] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=6 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=6’ 455s 455s 0K .......... .......... .......... ... 5.52G=0s 455s 455s 2025-02-19 11:06:46 (5.52 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=6’ saved [34725] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=7 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=7’ 455s 455s 0K .......... .......... .......... .......... .......... 6.28G 455s 50K .... 8.36T=0s 455s 455s 2025-02-19 11:06:46 (6.85 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=7’ saved [55798] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=7 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=7’ 455s 455s 0K .......... .......... .......... ... 5.47G=0s 455s 455s 2025-02-19 11:06:46 (5.47 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=7’ saved [34725] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=9 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=9’ 455s 455s 0K .......... .......... .......... .......... .......... 5.37G 455s 50K .... 8.47T=0s 455s 455s 2025-02-19 11:06:46 (5.86 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=9’ saved [55854] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=9 455s Reusing existing connection to [localhost]:80. 455s HTTP request sent, awaiting response... 200 OK 455s Length: unspecified [text/html] 455s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=9’ 455s 455s 0K .......... .......... .......... ... 5.86G=0s 455s 455s 2025-02-19 11:06:46 (5.86 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=9’ saved [34725] 455s 455s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=5 455s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=5’ 456s 456s 0K .......... .......... .......... .......... .......... 5.54G 456s 50K .... 8.45T=0s 456s 456s 2025-02-19 11:06:46 (6.04 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=5’ saved [55848] 456s 456s --2025-02-19 11:06:46-- http://localhost/cacti/data_sources.php?reset=true&template_id=5 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=5’ 456s 456s 0K .......... .......... .......... ... 5.52G=0s 456s 456s 2025-02-19 11:06:46 (5.52 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=5’ saved [34725] 456s 456s --2025-02-19 11:06:46-- http://localhost/cacti/data_templates.php?action=template_edit&id=8 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=8’ 456s 456s 0K .......... .......... .......... .......... .......... 5.18G 456s 50K .... 8.45T=0s 456s 456s 2025-02-19 11:06:47 (5.65 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=8’ saved [55843] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=8 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=8’ 456s 456s 0K .......... .......... .......... ... 7.22G=0s 456s 456s 2025-02-19 11:06:47 (7.22 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=8’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=3 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3’ 456s 456s 0K .......... .......... .......... .......... .......... 2.81G 456s 50K ......... 17.0T=0s 456s 456s 2025-02-19 11:06:47 (3.32 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3’ saved [60540] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=3 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=3’ 456s 456s 0K .......... .......... .......... ... 3.59G=0s 456s 456s 2025-02-19 11:06:47 (3.59 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=3’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=4 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=4’ 456s 456s 0K .......... .......... .......... .......... .......... 5.18G 456s 50K ...... 12.9T=0s 456s 456s 2025-02-19 11:06:47 (5.90 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=4’ saved [58310] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=4 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=4’ 456s 456s 0K .......... .......... .......... ... 5.92G=0s 456s 456s 2025-02-19 11:06:47 (5.92 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=4’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=1 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=1’ 456s 456s 0K .......... .......... .......... .......... .......... 5.68G 456s 50K ...... 12.9T=0s 456s 456s 2025-02-19 11:06:47 (6.47 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=1’ saved [58302] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=1 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=1’ 456s 456s 0K .......... .......... .......... ... 5.72G=0s 456s 456s 2025-02-19 11:06:47 (5.72 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=1’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=14 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=14’ 456s 456s 0K .......... .......... .......... .......... ...... 6.16G=0s 456s 456s 2025-02-19 11:06:47 (6.16 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=14’ saved [47303] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=14 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=14’ 456s 456s 0K .......... .......... .......... ... 5.57G=0s 456s 456s 2025-02-19 11:06:47 (5.57 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=14’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=15 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=15’ 456s 456s 0K .......... .......... .......... .......... ...... 4.19G=0s 456s 456s 2025-02-19 11:06:47 (4.19 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=15’ saved [47274] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=15 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=15’ 456s 456s 0K .......... .......... .......... ... 4.64G=0s 456s 456s 2025-02-19 11:06:47 (4.64 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=15’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=12 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=12’ 456s 456s 0K .......... .......... .......... .......... ...... 4.99G=0s 456s 456s 2025-02-19 11:06:47 (4.99 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=12’ saved [47295] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=12 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=12’ 456s 456s 0K .......... .......... .......... ... 5.18G=0s 456s 456s 2025-02-19 11:06:47 (5.18 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=12’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=13 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=13’ 456s 456s 0K .......... .......... .......... .......... ...... 4.16G=0s 456s 456s 2025-02-19 11:06:47 (4.16 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=13’ saved [47271] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=13 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=13’ 456s 456s 0K .......... .......... .......... ... 6.25G=0s 456s 456s 2025-02-19 11:06:47 (6.25 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=13’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=11 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=11’ 456s 456s 0K .......... .......... .......... .......... ...... 5.47G=0s 456s 456s 2025-02-19 11:06:47 (5.47 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=11’ saved [47269] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=11 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=11’ 456s 456s 0K .......... .......... .......... ... 5.06G=0s 456s 456s 2025-02-19 11:06:47 (5.06 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=11’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=10 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=10’ 456s 456s 0K .......... .......... .......... .......... ...... 4.48G=0s 456s 456s 2025-02-19 11:06:47 (4.48 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=10’ saved [47277] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=10 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=10’ 456s 456s 0K .......... .......... .......... ... 3.74G=0s 456s 456s 2025-02-19 11:06:47 (3.74 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=10’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=48 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=48’ 456s 456s 0K .......... .......... .......... .......... ..... 5.11G=0s 456s 456s 2025-02-19 11:06:47 (5.11 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=48’ saved [46528] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=48 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=48’ 456s 456s 0K .......... .......... .......... ... 5.87G=0s 456s 456s 2025-02-19 11:06:47 (5.87 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=48’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=46 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=46’ 456s 456s 0K .......... .......... .......... .......... ..... 4.67G=0s 456s 456s 2025-02-19 11:06:47 (4.67 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=46’ saved [46537] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=46 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=46’ 456s 456s 0K .......... .......... .......... ... 4.35G=0s 456s 456s 2025-02-19 11:06:47 (4.35 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=46’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=47 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=47’ 456s 456s 0K .......... .......... .......... .......... ..... 3.87G=0s 456s 456s 2025-02-19 11:06:47 (3.87 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=47’ saved [46555] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=47 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=47’ 456s 456s 0K .......... .......... .......... ... 3.64G=0s 456s 456s 2025-02-19 11:06:47 (3.64 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=47’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=49 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=49’ 456s 456s 0K .......... .......... .......... .......... ...... 3.92G=0s 456s 456s 2025-02-19 11:06:47 (3.92 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=49’ saved [47261] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=49 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=49’ 456s 456s 0K .......... .......... .......... ... 4.42G=0s 456s 456s 2025-02-19 11:06:47 (4.42 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=49’ saved [34725] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=50 456s Reusing existing connection to [localhost]:80. 456s HTTP request sent, awaiting response... 200 OK 456s Length: unspecified [text/html] 456s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50’ 456s 456s 0K .......... .......... .......... .......... ........ 4.84G=0s 456s 456s 2025-02-19 11:06:47 (4.84 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50’ saved [49911] 456s 456s --2025-02-19 11:06:47-- http://localhost/cacti/data_sources.php?reset=true&template_id=50 456s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=50’ 457s 457s 0K .......... .......... .......... ... 4.15G=0s 457s 457s 2025-02-19 11:06:47 (4.15 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=50’ saved [34725] 457s 457s --2025-02-19 11:06:47-- http://localhost/cacti/data_templates.php?action=template_edit&id=16 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=16’ 457s 457s 0K .......... .......... .......... .......... .......... 4.31G 457s 50K .... 8.55T=0s 457s 457s 2025-02-19 11:06:48 (4.71 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=16’ saved [55901] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=16 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=16’ 457s 457s 0K .......... .......... .......... ... 3.16G=0s 457s 457s 2025-02-19 11:06:48 (3.16 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=16’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=26 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=26’ 457s 457s 0K .......... .......... .......... .......... .......... 3.63G 457s 50K ....... 14.2T=0s 457s 457s 2025-02-19 11:06:48 (4.19 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=26’ saved [59003] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=26 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=26’ 457s 457s 0K .......... .......... .......... ... 3.56G=0s 457s 457s 2025-02-19 11:06:48 (3.56 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=26’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=25 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=25’ 457s 457s 0K .......... .......... .......... .......... .......... 3.83G 457s 50K ....... 14.3T=0s 457s 457s 2025-02-19 11:06:48 (4.42 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=25’ saved [59039] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=25 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=25’ 457s 457s 0K .......... .......... .......... ... 370M=0s 457s 457s 2025-02-19 11:06:48 (370 MB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=25’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=27 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=27’ 457s 457s 0K .......... .......... .......... .......... .......... 3.40G 457s 50K ....... 14.2T=0s 457s 457s 2025-02-19 11:06:48 (3.92 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=27’ saved [58999] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=27 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=27’ 457s 457s 0K .......... .......... .......... ... 4.46G=0s 457s 457s 2025-02-19 11:06:48 (4.46 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=27’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=18 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=18’ 457s 457s 0K .......... .......... .......... .......... .......... 3.80G 457s 50K .... 8.64T=0s 457s 457s 2025-02-19 11:06:48 (4.16 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=18’ saved [55952] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=18 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=18’ 457s 457s 0K .......... .......... .......... ... 4.60G=0s 457s 457s 2025-02-19 11:06:48 (4.60 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=18’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=19 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=19’ 457s 457s 0K .......... .......... .......... .......... .......... 4.78G 457s 50K .... 8.55T=0s 457s 457s 2025-02-19 11:06:48 (5.22 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=19’ saved [55898] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=19 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=19’ 457s 457s 0K .......... .......... .......... ... 5.75G=0s 457s 457s 2025-02-19 11:06:48 (5.75 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=19’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=20 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=20’ 457s 457s 0K .......... .......... .......... .......... .......... 4.93G 457s 50K .... 8.68T=0s 457s 457s 2025-02-19 11:06:48 (5.39 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=20’ saved [55974] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=20 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=20’ 457s 457s 0K .......... .......... .......... ... 3.87G=0s 457s 457s 2025-02-19 11:06:48 (3.87 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=20’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=32 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=32’ 457s 457s 0K .......... .......... .......... .......... .......... 2.28G 457s 50K ....... 14.2T=0s 457s 457s 2025-02-19 11:06:48 (2.63 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=32’ saved [58993] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=32 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=32’ 457s 457s 0K .......... .......... .......... ... 2.49G=0s 457s 457s 2025-02-19 11:06:48 (2.49 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=32’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=28 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28’ 457s 457s 0K .......... .......... .......... .......... .......... 4.44G 457s 50K ....... 14.7T=0s 457s 457s 2025-02-19 11:06:48 (5.14 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28’ saved [59273] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=28 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=28’ 457s 457s 0K .......... .......... .......... ... 4.54G=0s 457s 457s 2025-02-19 11:06:48 (4.54 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=28’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_templates.php?action=template_edit&id=21 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=21’ 457s 457s 0K .......... .......... .......... .......... .......... 5.70G 457s 50K .... 8.55T=0s 457s 457s 2025-02-19 11:06:48 (6.22 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=21’ saved [55900] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/data_sources.php?reset=true&template_id=21 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=21’ 457s 457s 0K .......... .......... .......... ... 4.93G=0s 457s 457s 2025-02-19 11:06:48 (4.93 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=21’ saved [34725] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/aggregate_templates.php?action=edit 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/aggregate_templates.php?action=edit’ 457s 457s 0K .......... .......... .......... .......... .......... 4.62G 457s 50K ... 6.72T=0s 457s 457s 2025-02-19 11:06:48 (4.96 GB/s) - ‘localhost/cacti/aggregate_templates.php?action=edit’ saved [54897] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/color_templates.php?action=template_edit 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit’ 457s 457s 0K .......... .......... ...... 4.93G=0s 457s 457s 2025-02-19 11:06:48 (4.93 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit’ saved [27058] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=4&page=1 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=4&page=1’ 457s 457s 0K .......... .......... .......... ... 4.80G=0s 457s 457s 2025-02-19 11:06:48 (4.80 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=4&page=1’ saved [34721] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=3&page=1 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=3&page=1’ 457s 457s 0K .......... .......... .......... ... 4.36G=0s 457s 457s 2025-02-19 11:06:48 (4.36 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=3&page=1’ saved [34715] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=2&page=1 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=2&page=1’ 457s 457s 0K .......... .......... .......... . 4.14G=0s 457s 457s 2025-02-19 11:06:48 (4.14 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=2&page=1’ saved [31796] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/color_templates.php?action=template_edit&color_template_id=1&page=1 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=1&page=1’ 457s 457s 0K .......... .......... ......... 4.00G=0s 457s 457s 2025-02-19 11:06:48 (4.00 GB/s) - ‘localhost/cacti/color_templates.php?action=template_edit&color_template_id=1&page=1’ saved [30316] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/automation_networks.php?action=edit 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/automation_networks.php?action=edit’ 457s 457s 0K .......... .......... .......... .......... .......... 3.28G 457s 50K .. 3.79T=0s 457s 457s 2025-02-19 11:06:48 (3.42 GB/s) - ‘localhost/cacti/automation_networks.php?action=edit’ saved [53286] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/automation_networks.php?action=edit&id=1 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/automation_networks.php?action=edit&id=1’ 457s 457s 0K .......... .......... .......... .......... .......... 8.29G 457s 50K .. 3.99T=0s 457s 457s 2025-02-19 11:06:48 (8.64 GB/s) - ‘localhost/cacti/automation_networks.php?action=edit&id=1’ saved [53396] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/automation_templates.php?action=edit 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/automation_templates.php?action=edit’ 457s 457s 0K .......... .......... .......... 5.79G=0s 457s 457s 2025-02-19 11:06:48 (5.79 GB/s) - ‘localhost/cacti/automation_templates.php?action=edit’ saved [30925] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/automation_graph_rules.php?action=edit 457s Reusing existing connection to [localhost]:80. 457s HTTP request sent, awaiting response... 200 OK 457s Length: unspecified [text/html] 457s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit’ 457s 457s 0K .......... .......... .......... . 5.27G=0s 457s 457s 2025-02-19 11:06:48 (5.27 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit’ saved [31851] 457s 457s --2025-02-19 11:06:48-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&page=1 457s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&page=1’ 458s 458s 0K .......... .......... .......... .... 4.41G=0s 458s 458s 2025-02-19 11:06:48 (4.41 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&page=1’ saved [35801] 458s 458s --2025-02-19 11:06:48-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&page=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&page=1’ 458s 458s 0K .......... .......... .......... ........ 4.79G=0s 458s 458s 2025-02-19 11:06:49 (4.79 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&page=1’ saved [39795] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&page=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&page=1’ 458s 458s 0K .......... .......... .......... ........ 5.50G=0s 458s 458s 2025-02-19 11:06:49 (5.50 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&page=1’ saved [39009] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/automation_tree_rules.php?action=edit 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit’ 458s 458s 0K .......... .......... .......... 5.49G=0s 458s 458s 2025-02-19 11:06:49 (5.49 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit’ saved [31715] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1&page=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&page=1’ 458s 458s 0K .......... .......... .......... ...... 5.07G=0s 458s 458s 2025-02-19 11:06:49 (5.07 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&page=1’ saved [36890] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2&page=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&page=1’ 458s 458s 0K .......... .......... .......... ...... 6.59G=0s 458s 458s 2025-02-19 11:06:49 (6.59 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&page=1’ saved [37629] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/data_source_profiles.php?action=edit 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit’ 458s 458s 0K .......... .......... .......... ... 5.76G=0s 458s 458s 2025-02-19 11:06:49 (5.76 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit’ saved [34196] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/data_source_profiles.php?action=edit&id=2 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit&id=2’ 458s 458s 0K .......... .......... .......... ...... 5.91G=0s 458s 458s 2025-02-19 11:06:49 (5.91 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit&id=2’ saved [36985] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/data_source_profiles.php?action=edit&id=3 458s Connecting to localhost (localhost)|::1|:80... connected. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit&id=3’ 458s 458s 0K .......... .......... .......... ...... 4.15G=0s 458s 458s 2025-02-19 11:06:49 (4.15 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit&id=3’ saved [37019] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/data_source_profiles.php?action=edit&id=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/data_source_profiles.php?action=edit&id=1’ 458s 458s 0K .......... .......... .......... ...... 5.46G=0s 458s 458s 2025-02-19 11:06:49 (5.46 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=edit&id=1’ saved [37031] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/data_templates.php?reset=true&profile=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/data_templates.php?reset=true&profile=1’ 458s 458s 0K .......... .......... .......... .......... .......... 3.07G 458s 50K ..... 10.6T=0s 458s 458s 2025-02-19 11:06:49 (3.43 GB/s) - ‘localhost/cacti/data_templates.php?reset=true&profile=1’ saved [57047] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/automation_snmp.php?action=edit 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_snmp.php?action=edit’ 458s 458s 0K .......... .......... ....... 4.85G=0s 458s 458s 2025-02-19 11:06:49 (4.85 GB/s) - ‘localhost/cacti/automation_snmp.php?action=edit’ saved [28185] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/automation_snmp.php?action=edit&id=1&page=1 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/automation_snmp.php?action=edit&id=1&page=1’ 458s 458s 0K .......... .......... ......... 5.66G=0s 458s 458s 2025-02-19 11:06:49 (5.66 GB/s) - ‘localhost/cacti/automation_snmp.php?action=edit&id=1&page=1’ saved [30184] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit’ 458s 458s 0K .......... .......... ....... 6.19G=0s 458s 458s 2025-02-19 11:06:49 (6.19 GB/s) - ‘localhost/cacti/cdef.php?action=edit’ saved [28189] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=39 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=39’ 458s 458s 0K .......... .......... ........ 4.50G=0s 458s 458s 2025-02-19 11:06:49 (4.50 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=39’ saved [29426] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=43 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=43’ 458s 458s 0K .......... .......... ........ 3.46G=0s 458s 458s 2025-02-19 11:06:49 (3.46 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=43’ saved [29486] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=66 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=66’ 458s 458s 0K .......... .......... ........ 5.60G=0s 458s 458s 2025-02-19 11:06:49 (5.60 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=66’ saved [29509] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=67 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=67’ 458s 458s 0K .......... .......... ........ 4.77G=0s 458s 458s 2025-02-19 11:06:49 (4.77 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=67’ saved [29507] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=61 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=61’ 458s 458s 0K .......... .......... ........ 5.36G=0s 458s 458s 2025-02-19 11:06:49 (5.36 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=61’ saved [29517] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=56 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=56’ 458s 458s 0K .......... .......... ........ 6.15G=0s 458s 458s 2025-02-19 11:06:49 (6.15 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=56’ saved [29515] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=63 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=63’ 458s 458s 0K .......... .......... ........ 4.84G=0s 458s 458s 2025-02-19 11:06:49 (4.84 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=63’ saved [29515] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=57 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=57’ 458s 458s 0K .......... .......... ........ 5.45G=0s 458s 458s 2025-02-19 11:06:49 (5.45 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=57’ saved [29515] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=68 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=68’ 458s 458s 0K .......... .......... ........ 5.64G=0s 458s 458s 2025-02-19 11:06:49 (5.64 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=68’ saved [29509] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=69 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=69’ 458s 458s 0K .......... .......... ........ 5.25G=0s 458s 458s 2025-02-19 11:06:49 (5.25 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=69’ saved [29507] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=64 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=64’ 458s 458s 0K .......... .......... ........ 4.69G=0s 458s 458s 2025-02-19 11:06:49 (4.69 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=64’ saved [29517] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=54 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=54’ 458s 458s 0K .......... .......... ........ 3.59G=0s 458s 458s 2025-02-19 11:06:49 (3.59 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=54’ saved [29515] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=62 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=62’ 458s 458s 0K .......... .......... ........ 4.00G=0s 458s 458s 2025-02-19 11:06:49 (4.00 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=62’ saved [29513] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=55 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=55’ 458s 458s 0K .......... .......... ........ 3.71G=0s 458s 458s 2025-02-19 11:06:49 (3.71 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=55’ saved [29511] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=65 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=65’ 458s 458s 0K .......... .......... ........ 3.41G=0s 458s 458s 2025-02-19 11:06:49 (3.41 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=65’ saved [29521] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=58 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=58’ 458s 458s 0K .......... .......... ........ 5.82G=0s 458s 458s 2025-02-19 11:06:49 (5.82 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=58’ saved [29519] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=59 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=59’ 458s 458s 0K .......... .......... ........ 5.64G=0s 458s 458s 2025-02-19 11:06:49 (5.64 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=59’ saved [29443] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=60 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=60’ 458s 458s 0K .......... .......... ........ 4.89G=0s 458s 458s 2025-02-19 11:06:49 (4.89 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=60’ saved [29463] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=70 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=70’ 458s 458s 0K .......... .......... ........ 3.80G=0s 458s 458s 2025-02-19 11:06:49 (3.80 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=70’ saved [29463] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=20 458s Reusing existing connection to [localhost]:80. 458s HTTP request sent, awaiting response... 200 OK 458s Length: unspecified [text/html] 458s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=20’ 458s 458s 0K .......... .......... ........ 3.16G=0s 458s 458s 2025-02-19 11:06:49 (3.16 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=20’ saved [29502] 458s 458s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=25 458s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=25’ 459s 459s 0K .......... .......... ......... 5.29G=0s 459s 459s 2025-02-19 11:06:49 (5.29 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=25’ saved [30166] 459s 459s --2025-02-19 11:06:49-- http://localhost/cacti/cdef.php?action=edit&id=24 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=24’ 459s 459s 0K .......... .......... ........ 4.83G=0s 459s 459s 2025-02-19 11:06:50 (4.83 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=24’ saved [29538] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=26 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=26’ 459s 459s 0K .......... .......... ........ 3.75G=0s 459s 459s 2025-02-19 11:06:50 (3.75 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=26’ saved [29538] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=22 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=22’ 459s 459s 0K .......... .......... ........ 3.06G=0s 459s 459s 2025-02-19 11:06:50 (3.06 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=22’ saved [29556] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=27 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=27’ 459s 459s 0K .......... .......... ........ 4.03G=0s 459s 459s 2025-02-19 11:06:50 (4.03 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=27’ saved [29538] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=19 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=19’ 459s 459s 0K .......... .......... ........ 3.70G=0s 459s 459s 2025-02-19 11:06:50 (3.70 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=19’ saved [29500] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=21 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=21’ 459s 459s 0K .......... .......... ........ 3.42G=0s 459s 459s 2025-02-19 11:06:50 (3.42 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=21’ saved [29524] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=34 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=34’ 459s 459s 0K .......... .......... .......... .. 3.87G=0s 459s 459s 2025-02-19 11:06:50 (3.87 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=34’ saved [33114] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=51 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=51’ 459s 459s 0K .......... .......... ......... 4.42G=0s 459s 459s 2025-02-19 11:06:50 (4.42 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=51’ saved [29798] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/cdef.php?action=edit&id=52 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/cdef.php?action=edit&id=52’ 459s 459s 0K .......... .......... ......... 3.60G=0s 459s 459s 2025-02-19 11:06:50 (3.60 GB/s) - ‘localhost/cacti/cdef.php?action=edit&id=52’ saved [30259] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit’ 459s 459s 0K .......... .......... ....... 3.38G=0s 459s 459s 2025-02-19 11:06:50 (3.38 GB/s) - ‘localhost/cacti/vdef.php?action=edit’ saved [28244] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=7 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=7’ 459s 459s 0K .......... .......... ......... 3.85G=0s 459s 459s 2025-02-19 11:06:50 (3.85 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=7’ saved [30296] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=3 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=3’ 459s 459s 0K .......... .......... ......... 3.00G=0s 459s 459s 2025-02-19 11:06:50 (3.00 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=3’ saved [29862] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=5 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=5’ 459s 459s 0K .......... .......... ......... 2.69G=0s 459s 459s 2025-02-19 11:06:50 (2.69 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=5’ saved [29857] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=4 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=4’ 459s 459s 0K .......... .......... ......... 3.29G=0s 459s 459s 2025-02-19 11:06:50 (3.29 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=4’ saved [29870] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=1 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=1’ 459s 459s 0K .......... .......... ......... 2.94G=0s 459s 459s 2025-02-19 11:06:50 (2.94 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=1’ saved [29862] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=2 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=2’ 459s 459s 0K .......... .......... ......... 3.63G=0s 459s 459s 2025-02-19 11:06:50 (3.63 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=2’ saved [29862] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/vdef.php?action=edit&id=6 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/vdef.php?action=edit&id=6’ 459s 459s 0K .......... .......... ......... 4.05G=0s 459s 459s 2025-02-19 11:06:50 (4.05 GB/s) - ‘localhost/cacti/vdef.php?action=edit&id=6’ saved [29902] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit’ 459s 459s 0K .......... .......... ....... 3.90G=0s 459s 459s 2025-02-19 11:06:50 (3.90 GB/s) - ‘localhost/cacti/color.php?action=edit’ saved [28246] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=249 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=249’ 459s 459s 0K .......... .......... ....... 4.06G=0s 459s 459s 2025-02-19 11:06:50 (4.06 GB/s) - ‘localhost/cacti/color.php?action=edit&id=249’ saved [28289] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=185 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=185’ 459s 459s 0K .......... .......... ....... 3.54G=0s 459s 459s 2025-02-19 11:06:50 (3.54 GB/s) - ‘localhost/cacti/color.php?action=edit&id=185’ saved [28287] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=233 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=233’ 459s 459s 0K .......... .......... ....... 3.83G=0s 459s 459s 2025-02-19 11:06:50 (3.83 GB/s) - ‘localhost/cacti/color.php?action=edit&id=233’ saved [28289] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=272 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=272’ 459s 459s 0K .......... .......... ....... 3.41G=0s 459s 459s 2025-02-19 11:06:50 (3.41 GB/s) - ‘localhost/cacti/color.php?action=edit&id=272’ saved [28293] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=190 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=190’ 459s 459s 0K .......... .......... ....... 5.89G=0s 459s 459s 2025-02-19 11:06:50 (5.89 GB/s) - ‘localhost/cacti/color.php?action=edit&id=190’ saved [28287] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=310 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=310’ 459s 459s 0K .......... .......... ....... 4.66G=0s 459s 459s 2025-02-19 11:06:50 (4.66 GB/s) - ‘localhost/cacti/color.php?action=edit&id=310’ saved [28287] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=119 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=119’ 459s 459s 0K .......... .......... ....... 3.48G=0s 459s 459s 2025-02-19 11:06:50 (3.48 GB/s) - ‘localhost/cacti/color.php?action=edit&id=119’ saved [28283] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=243 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=243’ 459s 459s 0K .......... .......... ....... 3.84G=0s 459s 459s 2025-02-19 11:06:50 (3.84 GB/s) - ‘localhost/cacti/color.php?action=edit&id=243’ saved [28293] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=418 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=418’ 459s 459s 0K .......... .......... ....... 4.92G=0s 459s 459s 2025-02-19 11:06:50 (4.92 GB/s) - ‘localhost/cacti/color.php?action=edit&id=418’ saved [28293] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=186 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=186’ 459s 459s 0K .......... .......... ....... 3.55G=0s 459s 459s 2025-02-19 11:06:50 (3.55 GB/s) - ‘localhost/cacti/color.php?action=edit&id=186’ saved [28277] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=159 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=159’ 459s 459s 0K .......... .......... ....... 5.10G=0s 459s 459s 2025-02-19 11:06:50 (5.10 GB/s) - ‘localhost/cacti/color.php?action=edit&id=159’ saved [28285] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=397 459s Reusing existing connection to [localhost]:80. 459s HTTP request sent, awaiting response... 200 OK 459s Length: unspecified [text/html] 459s Saving to: ‘localhost/cacti/color.php?action=edit&id=397’ 459s 459s 0K .......... .......... ....... 3.97G=0s 459s 459s 2025-02-19 11:06:50 (3.97 GB/s) - ‘localhost/cacti/color.php?action=edit&id=397’ saved [28291] 459s 459s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=331 459s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=331’ 460s 460s 0K .......... .......... ....... 6.14G=0s 460s 460s 2025-02-19 11:06:50 (6.14 GB/s) - ‘localhost/cacti/color.php?action=edit&id=331’ saved [28303] 460s 460s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=124 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=124’ 460s 460s 0K .......... .......... ....... 6.37G=0s 460s 460s 2025-02-19 11:06:50 (6.37 GB/s) - ‘localhost/cacti/color.php?action=edit&id=124’ saved [28297] 460s 460s --2025-02-19 11:06:50-- http://localhost/cacti/color.php?action=edit&id=336 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=336’ 460s 460s 0K .......... .......... ....... 5.51G=0s 460s 460s 2025-02-19 11:06:51 (5.51 GB/s) - ‘localhost/cacti/color.php?action=edit&id=336’ saved [28283] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=286 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=286’ 460s 460s 0K .......... .......... ....... 6.23G=0s 460s 460s 2025-02-19 11:06:51 (6.23 GB/s) - ‘localhost/cacti/color.php?action=edit&id=286’ saved [28287] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=284 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=284’ 460s 460s 0K .......... .......... ....... 5.43G=0s 460s 460s 2025-02-19 11:06:51 (5.43 GB/s) - ‘localhost/cacti/color.php?action=edit&id=284’ saved [28275] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=211 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=211’ 460s 460s 0K .......... .......... ....... 4.25G=0s 460s 460s 2025-02-19 11:06:51 (4.25 GB/s) - ‘localhost/cacti/color.php?action=edit&id=211’ saved [28291] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=270 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=270’ 460s 460s 0K .......... .......... ....... 4.85G=0s 460s 460s 2025-02-19 11:06:51 (4.85 GB/s) - ‘localhost/cacti/color.php?action=edit&id=270’ saved [28277] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=1 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=1’ 460s 460s 0K .......... .......... ....... 5.68G=0s 460s 460s 2025-02-19 11:06:51 (5.68 GB/s) - ‘localhost/cacti/color.php?action=edit&id=1’ saved [28275] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=111 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=111’ 460s 460s 0K .......... .......... ....... 5.82G=0s 460s 460s 2025-02-19 11:06:51 (5.82 GB/s) - ‘localhost/cacti/color.php?action=edit&id=111’ saved [28285] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=114 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=114’ 460s 460s 0K .......... .......... ....... 5.70G=0s 460s 460s 2025-02-19 11:06:51 (5.70 GB/s) - ‘localhost/cacti/color.php?action=edit&id=114’ saved [28285] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=113 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=113’ 460s 460s 0K .......... .......... ....... 5.83G=0s 460s 460s 2025-02-19 11:06:51 (5.83 GB/s) - ‘localhost/cacti/color.php?action=edit&id=113’ saved [28285] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=274 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=274’ 460s 460s 0K .......... .......... ....... 3.47G=0s 460s 460s 2025-02-19 11:06:51 (3.47 GB/s) - ‘localhost/cacti/color.php?action=edit&id=274’ saved [28297] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=271 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=271’ 460s 460s 0K .......... .......... ....... 4.50G=0s 460s 460s 2025-02-19 11:06:51 (4.50 GB/s) - ‘localhost/cacti/color.php?action=edit&id=271’ saved [28279] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=354 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=354’ 460s 460s 0K .......... .......... ....... 4.46G=0s 460s 460s 2025-02-19 11:06:51 (4.46 GB/s) - ‘localhost/cacti/color.php?action=edit&id=354’ saved [28285] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=432 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=432’ 460s 460s 0K .......... .......... ....... 3.84G=0s 460s 460s 2025-02-19 11:06:51 (3.84 GB/s) - ‘localhost/cacti/color.php?action=edit&id=432’ saved [28291] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=175 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=175’ 460s 460s 0K .......... .......... ....... 6.42G=0s 460s 460s 2025-02-19 11:06:51 (6.42 GB/s) - ‘localhost/cacti/color.php?action=edit&id=175’ saved [28287] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=196 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=196’ 460s 460s 0K .......... .......... ....... 5.33G=0s 460s 460s 2025-02-19 11:06:51 (5.33 GB/s) - ‘localhost/cacti/color.php?action=edit&id=196’ saved [28291] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/color.php?action=edit&id=163 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/color.php?action=edit&id=163’ 460s 460s 0K .......... .......... ....... 3.94G=0s 460s 460s 2025-02-19 11:06:51 (3.94 GB/s) - ‘localhost/cacti/color.php?action=edit&id=163’ saved [28287] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit’ 460s 460s 0K .......... .......... ...... 4.39G=0s 460s 460s 2025-02-19 11:06:51 (4.39 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit’ saved [27604] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=10 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=10’ 460s 460s 0K .......... .......... ...... 3.91G=0s 460s 460s 2025-02-19 11:06:51 (3.91 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=10’ saved [27640] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=11 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=11’ 460s 460s 0K .......... .......... ...... 4.49G=0s 460s 460s 2025-02-19 11:06:51 (4.49 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=11’ saved [27640] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=3 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=3’ 460s 460s 0K .......... .......... ...... 3.48G=0s 460s 460s 2025-02-19 11:06:51 (3.48 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=3’ saved [27641] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=4 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=4’ 460s 460s 0K .......... .......... ...... 4.54G=0s 460s 460s 2025-02-19 11:06:51 (4.54 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=4’ saved [27639] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=2 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=2’ 460s 460s 0K .......... .......... ...... 5.12G=0s 460s 460s 2025-02-19 11:06:51 (5.12 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=2’ saved [27630] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=5 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=5’ 460s 460s 0K .......... .......... ...... 4.54G=0s 460s 460s 2025-02-19 11:06:51 (4.54 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=5’ saved [27646] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=6 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=6’ 460s 460s 0K .......... .......... ...... 5.89G=0s 460s 460s 2025-02-19 11:06:51 (5.89 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=6’ saved [27644] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=9 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=9’ 460s 460s 0K .......... .......... ...... 6.23G=0s 460s 460s 2025-02-19 11:06:51 (6.23 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=9’ saved [27632] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=8 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=8’ 460s 460s 0K .......... .......... ...... 6.44G=0s 460s 460s 2025-02-19 11:06:51 (6.44 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=8’ saved [27642] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=7 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=7’ 460s 460s 0K .......... .......... ...... 5.34G=0s 460s 460s 2025-02-19 11:06:51 (5.34 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=7’ saved [27642] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=12 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=12’ 460s 460s 0K .......... .......... ....... 6.10G=0s 460s 460s 2025-02-19 11:06:51 (6.10 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=12’ saved [27660] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/gprint_presets.php?action=edit&id=13 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/gprint_presets.php?action=edit&id=13’ 460s 460s 0K .......... .......... ...... 5.35G=0s 460s 460s 2025-02-19 11:06:51 (5.35 GB/s) - ‘localhost/cacti/gprint_presets.php?action=edit&id=13’ saved [27627] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=general 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/settings.php?tab=general’ 460s 460s 0K .......... .......... .......... .......... .......... 1.81G 460s 50K .......... .......... .......... .......... ...... 481M=0s 460s 460s 2025-02-19 11:06:51 (782 MB/s) - ‘localhost/cacti/settings.php?tab=general’ saved [98424] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=path 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/settings.php?tab=path’ 460s 460s 0K .......... .......... .......... .......... .......... 532M 460s 50K .......... .... 27.5T=0s 460s 460s 2025-02-19 11:06:51 (688 MB/s) - ‘localhost/cacti/settings.php?tab=path’ saved [66291] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=snmp 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/settings.php?tab=snmp’ 460s 460s 0K .......... .......... .......... .......... .......... 4.23G 460s 50K .......... .......... .. 81.0M=0s 460s 460s 2025-02-19 11:06:51 (247 MB/s) - ‘localhost/cacti/settings.php?tab=snmp’ saved [74748] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=poller 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/settings.php?tab=poller’ 460s 460s 0K .......... .......... .......... .......... .......... 3.50G 460s 50K .......... .......... ........ 302M=0s 460s 460s 2025-02-19 11:06:51 (727 MB/s) - ‘localhost/cacti/settings.php?tab=poller’ saved [80207] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=data 460s Reusing existing connection to [localhost]:80. 460s HTTP request sent, awaiting response... 200 OK 460s Length: unspecified [text/html] 460s Saving to: ‘localhost/cacti/settings.php?tab=data’ 460s 460s 0K .......... .......... .......... .......... .......... 3.56G 460s 50K .......... .......... 36.5M=0.001s 460s 460s 2025-02-19 11:06:51 (122 MB/s) - ‘localhost/cacti/settings.php?tab=data’ saved [72198] 460s 460s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=visual 460s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/settings.php?tab=visual’ 461s 461s 0K .......... .......... .......... .......... .......... 3.89G 461s 50K .......... .......... .......... . 354M=0s 461s 461s 2025-02-19 11:06:51 (797 MB/s) - ‘localhost/cacti/settings.php?tab=visual’ saved [83950] 461s 461s --2025-02-19 11:06:51-- http://localhost/cacti/settings.php?tab=authentication 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/settings.php?tab=authentication’ 461s 461s 0K .......... .......... .......... .......... .......... 3.75G 461s 50K .......... .......... .......... .... 61.9M=0.001s 461s 461s 2025-02-19 11:06:52 (148 MB/s) - ‘localhost/cacti/settings.php?tab=authentication’ saved [86632] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/settings.php?tab=boost 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/settings.php?tab=boost’ 461s 461s 0K .......... .......... .......... .......... .......... 4.83G 461s 50K .......... ..... 82.8M=0s 461s 461s 2025-02-19 11:06:52 (337 MB/s) - ‘localhost/cacti/settings.php?tab=boost’ saved [66714] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/settings.php?tab=spikes 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/settings.php?tab=spikes’ 461s 461s 0K .......... .......... .......... .......... .......... 4.00G 461s 50K .......... ........ 64.0M=0s 461s 461s 2025-02-19 11:06:52 (225 MB/s) - ‘localhost/cacti/settings.php?tab=spikes’ saved [70445] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/settings.php?tab=mail 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/settings.php?tab=mail’ 461s 461s 0K .......... .......... .......... .......... .......... 4.22G 461s 50K .......... ......... 169M=0s 461s 461s 2025-02-19 11:06:52 (545 MB/s) - ‘localhost/cacti/settings.php?tab=mail’ saved [71353] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/user_admin.php?tab=general&action=user_edit 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/user_admin.php?tab=general&action=user_edit’ 461s 461s 0K .......... .......... .......... ........ 6.11G=0s 461s 461s 2025-02-19 11:06:52 (6.11 GB/s) - ‘localhost/cacti/user_admin.php?tab=general&action=user_edit’ saved [39626] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/user_admin.php?action=user_edit&tab=general&id=1 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=1’ 461s 461s 0K .......... .......... .......... ......... 6.53G=0s 461s 461s 2025-02-19 11:06:52 (6.53 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=1’ saved [40747] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/user_admin.php?action=user_edit&tab=general&id=3 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=3’ 461s 461s 0K .......... .......... .......... ......... 4.43G=0s 461s 461s 2025-02-19 11:06:52 (4.43 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&tab=general&id=3’ saved [40742] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/user_group_admin.php?action=edit&tab=general 461s Connecting to localhost (localhost)|::1|:80... connected. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/user_group_admin.php?action=edit&tab=general’ 461s 461s 0K .......... .......... .......... .... 4.98G=0s 461s 461s 2025-02-19 11:06:52 (4.98 GB/s) - ‘localhost/cacti/user_group_admin.php?action=edit&tab=general’ saved [35185] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/user_domains.php?action=edit 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/user_domains.php?action=edit’ 461s 461s 0K .......... .......... ......... 5.51G=0s 461s 461s 2025-02-19 11:06:52 (5.51 GB/s) - ‘localhost/cacti/user_domains.php?action=edit’ saved [30607] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_tech 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_tech’ 461s 461s 0K .......... .......... .......... ....... 3.36G=0s 461s 461s 2025-02-19 11:06:52 (3.36 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech’ saved [38219] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_logfile 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_logfile’ 461s 461s 0K .......... .......... ...... 2.37G=0s 461s 461s 2025-02-19 11:06:52 (2.37 GB/s) - ‘localhost/cacti/utilities.php?action=view_logfile’ saved [27497] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_user_log 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_user_log’ 461s 461s 0K .......... .......... ....... 3.46G=0s 461s 461s 2025-02-19 11:06:52 (3.46 GB/s) - ‘localhost/cacti/utilities.php?action=view_user_log’ saved [28356] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_poller_cache 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_poller_cache’ 461s 461s 0K .......... .......... ...... 4.59G=0s 461s 461s 2025-02-19 11:06:52 (4.59 GB/s) - ‘localhost/cacti/utilities.php?action=view_poller_cache’ saved [27484] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_snmp_cache 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_snmp_cache’ 461s 461s 0K .......... .......... ...... 2.67G=0s 461s 461s 2025-02-19 11:06:52 (2.67 GB/s) - ‘localhost/cacti/utilities.php?action=view_snmp_cache’ saved [26643] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=clear_poller_cache 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 302 Found 461s Location: utilities.php?action=view_poller_cache [following] 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_poller_cache 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=clear_poller_cache’ 461s 461s 0K .......... .......... ...... 2.58G=0s 461s 461s 2025-02-19 11:06:52 (2.58 GB/s) - ‘localhost/cacti/utilities.php?action=clear_poller_cache’ saved [27484] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=rebuild_resource_cache 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 302 Found 461s Location: utilities.php?header=false [following] 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?header=false 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: 7593 (7.4K) [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=rebuild_resource_cache’ 461s 461s 0K ....... 100% 2.52G=0s 461s 461s 2025-02-19 11:06:52 (2.52 GB/s) - ‘localhost/cacti/utilities.php?action=rebuild_resource_cache’ saved [7593/7593] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_boost_status 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_boost_status’ 461s 461s 0K .......... .......... ..... 3.34G=0s 461s 461s 2025-02-19 11:06:52 (3.34 GB/s) - ‘localhost/cacti/utilities.php?action=view_boost_status’ saved [26504] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=purge_data_source_statistics 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 302 Found 461s Location: utilities.php [following] 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=purge_data_source_statistics’ 461s 461s 0K .......... .......... ........ 3.31G=0s 461s 461s 2025-02-19 11:06:52 (3.31 GB/s) - ‘localhost/cacti/utilities.php?action=purge_data_source_statistics’ saved [29330] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/rrdcheck.php 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/rrdcheck.php’ 461s 461s 0K .......... .......... ......... 5.42G=0s 461s 461s 2025-02-19 11:06:52 (5.42 GB/s) - ‘localhost/cacti/rrdcheck.php’ saved [30336] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=view_snmpagent_cache 461s Reusing existing connection to [localhost]:80. 461s HTTP request sent, awaiting response... 200 OK 461s Length: unspecified [text/html] 461s Saving to: ‘localhost/cacti/utilities.php?action=view_snmpagent_cache’ 461s 461s 0K .......... .......... ..... 2.71G=0s 461s 461s 2025-02-19 11:06:52 (2.71 GB/s) - ‘localhost/cacti/utilities.php?action=view_snmpagent_cache’ saved [25876] 461s 461s --2025-02-19 11:06:52-- http://localhost/cacti/utilities.php?action=rebuild_snmpagent_cache 461s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 302 Found 462s Location: utilities.php?action=view_snmpagent_cache [following] 462s --2025-02-19 11:06:53-- http://localhost/cacti/utilities.php?action=view_snmpagent_cache 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/utilities.php?action=rebuild_snmpagent_cache’ 462s 462s 0K .......... .......... .......... .......... .. 3.36G=0s 462s 462s 2025-02-19 11:06:53 (3.36 GB/s) - ‘localhost/cacti/utilities.php?action=rebuild_snmpagent_cache’ saved [43471] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/utilities.php?action=view_snmpagent_events 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/utilities.php?action=view_snmpagent_events’ 462s 462s 0K .......... .......... ...... 5.57G=0s 462s 462s 2025-02-19 11:06:53 (5.57 GB/s) - ‘localhost/cacti/utilities.php?action=view_snmpagent_events’ saved [26877] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/managers.php 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/managers.php’ 462s 462s 0K .......... .......... .......... . 4.20G=0s 462s 462s 2025-02-19 11:06:53 (4.20 GB/s) - ‘localhost/cacti/managers.php’ saved [32184] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/links.php?action=edit 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/links.php?action=edit’ 462s 462s 0K .......... .......... .......... . 4.67G=0s 462s 462s 2025-02-19 11:06:53 (4.67 GB/s) - ‘localhost/cacti/links.php?action=edit’ saved [32313] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/images/cacti_about_logo.gif 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: 8318 (8.1K) [image/gif] 462s Saving to: ‘localhost/cacti/images/cacti_about_logo.gif’ 462s 462s 0K ........ 100% 4.72G=0s 462s 462s 2025-02-19 11:06:53 (4.72 GB/s) - ‘localhost/cacti/images/cacti_about_logo.gif’ saved [8318/8318] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=2 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=2’ 462s 462s 0K .......... .......... .......... ........ 4.53G=0s 462s 462s 2025-02-19 11:06:53 (4.53 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=2’ saved [39682] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=3 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=3’ 462s 462s 0K .......... .......... .......... ........ 4.62G=0s 462s 462s 2025-02-19 11:06:53 (4.62 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=3’ saved [39678] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=4 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=4’ 462s 462s 0K .......... .......... .......... ........ 6.27G=0s 462s 462s 2025-02-19 11:06:53 (6.27 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=4’ saved [39671] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=1 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=1’ 462s 462s 0K .......... .......... .......... ........ 6.37G=0s 462s 462s 2025-02-19 11:06:53 (6.37 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=1’ saved [39667] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=8 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=8’ 462s 462s 0K .......... .......... .......... ........ 5.16G=0s 462s 462s 2025-02-19 11:06:53 (5.16 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=8’ saved [39668] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=7 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=7’ 462s 462s 0K .......... .......... .......... ........ 5.36G=0s 462s 462s 2025-02-19 11:06:53 (5.36 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=7’ saved [39666] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=6 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=6’ 462s 462s 0K .......... .......... .......... ........ 5.30G=0s 462s 462s 2025-02-19 11:06:53 (5.30 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=6’ saved [39667] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=5 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=5’ 462s 462s 0K .......... .......... .......... ........ 1.91G=0s 462s 462s 2025-02-19 11:06:53 (1.91 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=5’ saved [39670] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=9 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=9’ 462s 462s 0K .......... .......... .......... ........ 5.16G=0s 462s 462s 2025-02-19 11:06:53 (5.16 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=9’ saved [39682] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=10 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=10’ 462s 462s 0K .......... .......... .......... ........ 4.39G=0s 462s 462s 2025-02-19 11:06:53 (4.39 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=10’ saved [39683] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=11 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=11’ 462s 462s 0K .......... .......... .......... ........ 4.64G=0s 462s 462s 2025-02-19 11:06:53 (4.64 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=11’ saved [39684] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=12 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=12’ 462s 462s 0K .......... .......... .......... ........ 5.85G=0s 462s 462s 2025-02-19 11:06:53 (5.85 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=12’ saved [39682] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=22 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=22’ 462s 462s 0K .......... .......... .......... ........ 4.83G=0s 462s 462s 2025-02-19 11:06:53 (4.83 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=22’ saved [39693] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=21 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=21’ 462s 462s 0K .......... .......... .......... ........ 3.74G=0s 462s 462s 2025-02-19 11:06:53 (3.74 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=21’ saved [39681] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=15 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=15’ 462s 462s 0K .......... .......... .......... ........ 4.20G=0s 462s 462s 2025-02-19 11:06:53 (4.20 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=15’ saved [39682] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=16 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=16’ 462s 462s 0K .......... .......... .......... ........ 4.43G=0s 462s 462s 2025-02-19 11:06:53 (4.43 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=16’ saved [39689] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=14 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=14’ 462s 462s 0K .......... .......... .......... ........ 6.08G=0s 462s 462s 2025-02-19 11:06:53 (6.08 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=14’ saved [39685] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=17 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=17’ 462s 462s 0K .......... .......... .......... ........ 4.53G=0s 462s 462s 2025-02-19 11:06:53 (4.53 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=17’ saved [39682] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=19 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=19’ 462s 462s 0K .......... .......... .......... ........ 5.10G=0s 462s 462s 2025-02-19 11:06:53 (5.10 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=19’ saved [39691] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=18 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=18’ 462s 462s 0K .......... .......... .......... ........ 4.69G=0s 462s 462s 2025-02-19 11:06:53 (4.69 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=18’ saved [39691] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=20 462s Reusing existing connection to [localhost]:80. 462s HTTP request sent, awaiting response... 200 OK 462s Length: unspecified [text/html] 462s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=20’ 462s 462s 0K .......... .......... .......... ........ 4.93G=0s 462s 462s 2025-02-19 11:06:53 (4.93 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=20’ saved [39689] 462s 462s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=24 462s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=24’ 463s 463s 0K .......... .......... .......... ........ 5.27G=0s 463s 463s 2025-02-19 11:06:53 (5.27 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=24’ saved [39684] 463s 463s --2025-02-19 11:06:53-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=23 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=23’ 463s 463s 0K .......... .......... .......... ........ 5.47G=0s 463s 463s 2025-02-19 11:06:54 (5.47 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=23’ saved [39671] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=25 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=25’ 463s 463s 0K .......... .......... .......... ........ 5.26G=0s 463s 463s 2025-02-19 11:06:54 (5.26 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=25’ saved [39688] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=65&snmp_query_id=25 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=65&snmp_query_id=25’ 463s 463s 0K .......... .......... .......... .......... ...... 4.47G=0s 463s 463s 2025-02-19 11:06:54 (4.47 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=65&snmp_query_id=25’ saved [48088] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=67&snmp_query_id=25 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=67&snmp_query_id=25’ 463s 463s 0K .......... .......... .......... .......... ..... 5.56G=0s 463s 463s 2025-02-19 11:06:54 (5.56 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=67&snmp_query_id=25’ saved [46309] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=68&snmp_query_id=25 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=68&snmp_query_id=25’ 463s 463s 0K .......... .......... .......... .......... ..... 5.03G=0s 463s 463s 2025-02-19 11:06:54 (5.03 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=68&snmp_query_id=25’ saved [46317] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=66&snmp_query_id=25 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=66&snmp_query_id=25’ 463s 463s 0K .......... .......... .......... .......... ........ 4.97G=0s 463s 463s 2025-02-19 11:06:54 (4.97 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=66&snmp_query_id=25’ saved [49864] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=27 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=27’ 463s 463s 0K .......... .......... .......... ........ 5.52G=0s 463s 463s 2025-02-19 11:06:54 (5.52 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=27’ saved [39681] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=73&snmp_query_id=27 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=73&snmp_query_id=27’ 463s 463s 0K .......... .......... .......... .......... .. 4.16G=0s 463s 463s 2025-02-19 11:06:54 (4.16 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=73&snmp_query_id=27’ saved [43940] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=74&snmp_query_id=27 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=74&snmp_query_id=27’ 463s 463s 0K .......... .......... .......... .......... .. 3.96G=0s 463s 463s 2025-02-19 11:06:54 (3.96 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=74&snmp_query_id=27’ saved [43936] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=26 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=26’ 463s 463s 0K .......... .......... .......... ........ 5.06G=0s 463s 463s 2025-02-19 11:06:54 (5.06 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=26’ saved [39690] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=71&snmp_query_id=26 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=71&snmp_query_id=26’ 463s 463s 0K .......... .......... .......... .......... ... 5.80G=0s 463s 463s 2025-02-19 11:06:54 (5.80 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=71&snmp_query_id=26’ saved [44269] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=72&snmp_query_id=26 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=72&snmp_query_id=26’ 463s 463s 0K .......... .......... .......... .......... ... 4.58G=0s 463s 463s 2025-02-19 11:06:54 (4.58 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=72&snmp_query_id=26’ saved [44273] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=70&snmp_query_id=26 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=70&snmp_query_id=26’ 463s 463s 0K .......... .......... .......... .......... ... 4.19G=0s 463s 463s 2025-02-19 11:06:54 (4.19 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=70&snmp_query_id=26’ saved [44247] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&id=69&snmp_query_id=26 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&id=69&snmp_query_id=26’ 463s 463s 0K .......... .......... .......... .......... ....... 4.35G=0s 463s 463s 2025-02-19 11:06:54 (4.35 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&id=69&snmp_query_id=26’ saved [48876] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=28 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=28’ 463s 463s 0K .......... .......... .......... ........ 4.06G=0s 463s 463s 2025-02-19 11:06:54 (4.06 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=28’ saved [39677] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=29 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=29’ 463s 463s 0K .......... .......... .......... ........ 5.10G=0s 463s 463s 2025-02-19 11:06:54 (5.10 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=29’ saved [39672] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=37 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=37’ 463s 463s 0K .......... .......... .......... ........ 4.79G=0s 463s 463s 2025-02-19 11:06:54 (4.79 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=37’ saved [39694] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=38 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=38’ 463s 463s 0K .......... .......... .......... ........ 4.04G=0s 463s 463s 2025-02-19 11:06:54 (4.04 GB/s) - ‘localhost/cacti/data_queries.php?action=item_edit&snmp_query_id=38’ saved [39689] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=51&data_input_id=15 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=51&data_input_id=15’ 463s 463s 0K .......... .......... ......... 4.04G=0s 463s 463s 2025-02-19 11:06:54 (4.04 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=51&data_input_id=15’ saved [30375] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=15 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=15’ 463s 463s 0K .......... .......... ........ 5.03G=0s 463s 463s 2025-02-19 11:06:54 (5.03 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=15’ saved [29127] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=52&data_input_id=15 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=52&data_input_id=15’ 463s 463s 0K .......... .......... ........ 2.03G=0s 463s 463s 2025-02-19 11:06:54 (2.03 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=52&data_input_id=15’ saved [29196] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=56&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=56&data_input_id=17’ 463s 463s 0K .......... .......... ......... 3.69G=0s 463s 463s 2025-02-19 11:06:54 (3.69 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=56&data_input_id=17’ saved [30374] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=17’ 463s 463s 0K .......... .......... ........ 4.18G=0s 463s 463s 2025-02-19 11:06:54 (4.18 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=17’ saved [29126] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=57&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=57&data_input_id=17’ 463s 463s 0K .......... .......... ........ 4.43G=0s 463s 463s 2025-02-19 11:06:54 (4.43 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=57&data_input_id=17’ saved [29191] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=58&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=58&data_input_id=17’ 463s 463s 0K .......... .......... ........ 5.67G=0s 463s 463s 2025-02-19 11:06:54 (5.67 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=58&data_input_id=17’ saved [29182] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=59&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=59&data_input_id=17’ 463s 463s 0K .......... .......... ........ 4.76G=0s 463s 463s 2025-02-19 11:06:54 (4.76 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=59&data_input_id=17’ saved [29190] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=60&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=60&data_input_id=17’ 463s 463s 0K .......... .......... ........ 4.93G=0s 463s 463s 2025-02-19 11:06:54 (4.93 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=60&data_input_id=17’ saved [29184] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=61&data_input_id=17 463s Reusing existing connection to [localhost]:80. 463s HTTP request sent, awaiting response... 200 OK 463s Length: unspecified [text/html] 463s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=61&data_input_id=17’ 463s 463s 0K .......... .......... ........ 3.99G=0s 463s 463s 2025-02-19 11:06:54 (3.99 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=61&data_input_id=17’ saved [29181] 463s 463s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=62&data_input_id=17 463s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=62&data_input_id=17’ 464s 464s 0K .......... .......... ........ 4.08G=0s 464s 464s 2025-02-19 11:06:54 (4.08 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=62&data_input_id=17’ saved [29179] 464s 464s --2025-02-19 11:06:54-- http://localhost/cacti/data_input.php?action=field_edit&id=63&data_input_id=17 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=63&data_input_id=17’ 464s 464s 0K .......... .......... ........ 3.62G=0s 464s 464s 2025-02-19 11:06:55 (3.62 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=63&data_input_id=17’ saved [29187] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=64&data_input_id=17 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=64&data_input_id=17’ 464s 464s 0K .......... .......... ........ 5.17G=0s 464s 464s 2025-02-19 11:06:55 (5.17 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=64&data_input_id=17’ saved [29183] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=65&data_input_id=17 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=65&data_input_id=17’ 464s 464s 0K .......... .......... ........ 4.92G=0s 464s 464s 2025-02-19 11:06:55 (4.92 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=65&data_input_id=17’ saved [29185] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=66&data_input_id=17 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=66&data_input_id=17’ 464s 464s 0K .......... .......... ........ 4.69G=0s 464s 464s 2025-02-19 11:06:55 (4.69 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=66&data_input_id=17’ saved [29182] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=47&data_input_id=13 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=47&data_input_id=13’ 464s 464s 0K .......... .......... ......... 4.64G=0s 464s 464s 2025-02-19 11:06:55 (4.64 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=47&data_input_id=13’ saved [30377] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=13 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=13’ 464s 464s 0K .......... .......... ........ 5.40G=0s 464s 464s 2025-02-19 11:06:55 (5.40 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=13’ saved [29129] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=48&data_input_id=13 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=48&data_input_id=13’ 464s 464s 0K .......... .......... ........ 4.67G=0s 464s 464s 2025-02-19 11:06:55 (4.67 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=48&data_input_id=13’ saved [29195] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=49&data_input_id=14 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=49&data_input_id=14’ 464s 464s 0K .......... .......... ......... 4.65G=0s 464s 464s 2025-02-19 11:06:55 (4.65 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=49&data_input_id=14’ saved [30379] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=14 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=14’ 464s 464s 0K .......... .......... ........ 6.29G=0s 464s 464s 2025-02-19 11:06:55 (6.29 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=14’ saved [29131] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=50&data_input_id=14 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=50&data_input_id=14’ 464s 464s 0K .......... .......... ........ 5.46G=0s 464s 464s 2025-02-19 11:06:55 (5.46 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=50&data_input_id=14’ saved [29205] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=53&data_input_id=16 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=53&data_input_id=16’ 464s 464s 0K .......... .......... ......... 5.13G=0s 464s 464s 2025-02-19 11:06:55 (5.13 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=53&data_input_id=16’ saved [30374] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=16 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=16’ 464s 464s 0K .......... .......... ........ 4.37G=0s 464s 464s 2025-02-19 11:06:55 (4.37 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=16’ saved [29126] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=54&data_input_id=16 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=54&data_input_id=16’ 464s 464s 0K .......... .......... ........ 4.80G=0s 464s 464s 2025-02-19 11:06:55 (4.80 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=54&data_input_id=16’ saved [29207] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=55&data_input_id=16 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=55&data_input_id=16’ 464s 464s 0K .......... .......... ........ 4.45G=0s 464s 464s 2025-02-19 11:06:55 (4.45 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=55&data_input_id=16’ saved [29207] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=67&data_input_id=18 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=67&data_input_id=18’ 464s 464s 0K .......... .......... ......... 5.10G=0s 464s 464s 2025-02-19 11:06:55 (5.10 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=67&data_input_id=18’ saved [30328] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=18 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=18’ 464s 464s 0K .......... .......... ........ 7.03G=0s 464s 464s 2025-02-19 11:06:55 (7.03 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=18’ saved [29120] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=68&data_input_id=18 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=68&data_input_id=18’ 464s 464s 0K .......... .......... ........ 5.28G=0s 464s 464s 2025-02-19 11:06:55 (5.28 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=68&data_input_id=18’ saved [29145] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=69&data_input_id=19 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=69&data_input_id=19’ 464s 464s 0K .......... .......... ......... 4.87G=0s 464s 464s 2025-02-19 11:06:55 (4.87 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=69&data_input_id=19’ saved [30332] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=19 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=19’ 464s 464s 0K .......... .......... ........ 6.71G=0s 464s 464s 2025-02-19 11:06:55 (6.71 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=19’ saved [29124] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=70&data_input_id=19 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=70&data_input_id=19’ 464s 464s 0K .......... .......... ........ 4.77G=0s 464s 464s 2025-02-19 11:06:55 (4.77 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=70&data_input_id=19’ saved [29149] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=23 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=23’ 464s 464s 0K .......... .......... ........ 6.07G=0s 464s 464s 2025-02-19 11:06:55 (6.07 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=23’ saved [29124] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=83&data_input_id=23 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=83&data_input_id=23’ 464s 464s 0K .......... .......... ........ 5.96G=0s 464s 464s 2025-02-19 11:06:55 (5.96 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=83&data_input_id=23’ saved [29185] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=82&data_input_id=23 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=82&data_input_id=23’ 464s 464s 0K .......... .......... ........ 5.00G=0s 464s 464s 2025-02-19 11:06:55 (5.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=82&data_input_id=23’ saved [29164] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=33 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=33’ 464s 464s 0K .......... .......... ........ 5.04G=0s 464s 464s 2025-02-19 11:06:55 (5.04 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=33’ saved [29141] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=108&data_input_id=33 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=108&data_input_id=33’ 464s 464s 0K .......... .......... ........ 6.28G=0s 464s 464s 2025-02-19 11:06:55 (6.28 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=108&data_input_id=33’ saved [29227] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=26 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=26’ 464s 464s 0K .......... .......... ........ 5.18G=0s 464s 464s 2025-02-19 11:06:55 (5.18 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=26’ saved [29131] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=89&data_input_id=26 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=89&data_input_id=26’ 464s 464s 0K .......... .......... ........ 5.38G=0s 464s 464s 2025-02-19 11:06:55 (5.38 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=89&data_input_id=26’ saved [29210] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=34 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=34’ 464s 464s 0K .......... .......... ........ 5.68G=0s 464s 464s 2025-02-19 11:06:55 (5.68 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=34’ saved [29132] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=109&data_input_id=34 464s Connecting to localhost (localhost)|::1|:80... connected. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=109&data_input_id=34’ 464s 464s 0K .......... .......... ........ 3.43G=0s 464s 464s 2025-02-19 11:06:55 (3.43 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=109&data_input_id=34’ saved [29209] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=35 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=35’ 464s 464s 0K .......... .......... ........ 3.06G=0s 464s 464s 2025-02-19 11:06:55 (3.06 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=35’ saved [29135] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=110&data_input_id=35 464s Reusing existing connection to [localhost]:80. 464s HTTP request sent, awaiting response... 200 OK 464s Length: unspecified [text/html] 464s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=110&data_input_id=35’ 464s 464s 0K .......... .......... ........ 1.97G=0s 464s 464s 2025-02-19 11:06:55 (1.97 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=110&data_input_id=35’ saved [29212] 464s 464s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=36 464s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=36’ 465s 465s 0K .......... .......... ........ 5.27G=0s 465s 465s 2025-02-19 11:06:55 (5.27 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=36’ saved [29138] 465s 465s --2025-02-19 11:06:55-- http://localhost/cacti/data_input.php?action=field_edit&id=116&data_input_id=36 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=116&data_input_id=36’ 465s 465s 0K .......... .......... ........ 4.26G=0s 465s 465s 2025-02-19 11:06:56 (4.26 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=116&data_input_id=36’ saved [29233] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=111&data_input_id=36 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=111&data_input_id=36’ 465s 465s 0K .......... .......... ........ 6.90G=0s 465s 465s 2025-02-19 11:06:56 (6.90 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=111&data_input_id=36’ saved [29230] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=114&data_input_id=36 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=114&data_input_id=36’ 465s 465s 0K .......... .......... ........ 2.27G=0s 465s 465s 2025-02-19 11:06:56 (2.27 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=114&data_input_id=36’ saved [29242] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=112&data_input_id=36 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=112&data_input_id=36’ 465s 465s 0K .......... .......... ........ 5.33G=0s 465s 465s 2025-02-19 11:06:56 (5.33 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=112&data_input_id=36’ saved [29232] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=113&data_input_id=36 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=113&data_input_id=36’ 465s 465s 0K .......... .......... ........ 5.52G=0s 465s 465s 2025-02-19 11:06:56 (5.52 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=113&data_input_id=36’ saved [29250] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=115&data_input_id=36 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=115&data_input_id=36’ 465s 465s 0K .......... .......... ........ 2.11G=0s 465s 465s 2025-02-19 11:06:56 (2.11 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=115&data_input_id=36’ saved [29216] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=29 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=29’ 465s 465s 0K .......... .......... ........ 4.22G=0s 465s 465s 2025-02-19 11:06:56 (4.22 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=29’ saved [29143] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=98&data_input_id=29 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=98&data_input_id=29’ 465s 465s 0K .......... .......... ........ 4.21G=0s 465s 465s 2025-02-19 11:06:56 (4.21 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=98&data_input_id=29’ saved [29205] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=28 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=28’ 465s 465s 0K .......... .......... ........ 5.77G=0s 465s 465s 2025-02-19 11:06:56 (5.77 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=28’ saved [29141] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=97&data_input_id=28 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=97&data_input_id=28’ 465s 465s 0K .......... .......... ........ 5.61G=0s 465s 465s 2025-02-19 11:06:56 (5.61 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=97&data_input_id=28’ saved [29224] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=24 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=24’ 465s 465s 0K .......... .......... ........ 4.06G=0s 465s 465s 2025-02-19 11:06:56 (4.06 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=24’ saved [29124] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=85&data_input_id=24 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=85&data_input_id=24’ 465s 465s 0K .......... .......... ........ 4.27G=0s 465s 465s 2025-02-19 11:06:56 (4.27 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=85&data_input_id=24’ saved [29164] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=86&data_input_id=24 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=86&data_input_id=24’ 465s 465s 0K .......... .......... ........ 4.45G=0s 465s 465s 2025-02-19 11:06:56 (4.45 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=86&data_input_id=24’ saved [29194] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=84&data_input_id=24 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=84&data_input_id=24’ 465s 465s 0K .......... .......... ........ 4.57G=0s 465s 465s 2025-02-19 11:06:56 (4.57 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=84&data_input_id=24’ saved [29156] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=22’ 465s 465s 0K .......... .......... ........ 5.87G=0s 465s 465s 2025-02-19 11:06:56 (5.87 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=22’ saved [29130] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=76&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=76&data_input_id=22’ 465s 465s 0K .......... .......... ........ 6.55G=0s 465s 465s 2025-02-19 11:06:56 (6.55 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=76&data_input_id=22’ saved [29194] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=78&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=78&data_input_id=22’ 465s 465s 0K .......... .......... ........ 6.12G=0s 465s 465s 2025-02-19 11:06:56 (6.12 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=78&data_input_id=22’ saved [29169] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=77&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=77&data_input_id=22’ 465s 465s 0K .......... .......... ........ 6.25G=0s 465s 465s 2025-02-19 11:06:56 (6.25 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=77&data_input_id=22’ saved [29197] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=80&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=80&data_input_id=22’ 465s 465s 0K .......... .......... ........ 5.51G=0s 465s 465s 2025-02-19 11:06:56 (5.51 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=80&data_input_id=22’ saved [29197] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=75&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=75&data_input_id=22’ 465s 465s 0K .......... .......... ........ 5.46G=0s 465s 465s 2025-02-19 11:06:56 (5.46 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=75&data_input_id=22’ saved [29202] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=79&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=79&data_input_id=22’ 465s 465s 0K .......... .......... ........ 5.95G=0s 465s 465s 2025-02-19 11:06:56 (5.95 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=79&data_input_id=22’ saved [29183] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=81&data_input_id=22 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=81&data_input_id=22’ 465s 465s 0K .......... .......... ........ 5.80G=0s 465s 465s 2025-02-19 11:06:56 (5.80 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=81&data_input_id=22’ saved [29171] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=25 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=25’ 465s 465s 0K .......... .......... ........ 6.73G=0s 465s 465s 2025-02-19 11:06:56 (6.73 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=25’ saved [29135] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=88&data_input_id=25 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=88&data_input_id=25’ 465s 465s 0K .......... .......... ........ 5.24G=0s 465s 465s 2025-02-19 11:06:56 (5.24 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=88&data_input_id=25’ saved [29211] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=87&data_input_id=25 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=87&data_input_id=25’ 465s 465s 0K .......... .......... ........ 6.31G=0s 465s 465s 2025-02-19 11:06:56 (6.31 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=87&data_input_id=25’ saved [29187] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=31 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=31’ 465s 465s 0K .......... .......... ........ 5.89G=0s 465s 465s 2025-02-19 11:06:56 (5.89 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=31’ saved [29133] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=106&data_input_id=31 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=106&data_input_id=31’ 465s 465s 0K .......... .......... ........ 6.58G=0s 465s 465s 2025-02-19 11:06:56 (6.58 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=106&data_input_id=31’ saved [29202] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=30 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=30’ 465s 465s 0K .......... .......... ........ 5.45G=0s 465s 465s 2025-02-19 11:06:56 (5.45 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=30’ saved [29136] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=104&data_input_id=30 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=104&data_input_id=30’ 465s 465s 0K .......... .......... ........ 6.40G=0s 465s 465s 2025-02-19 11:06:56 (6.40 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=104&data_input_id=30’ saved [29201] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=103&data_input_id=30 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=103&data_input_id=30’ 465s 465s 0K .......... .......... ........ 5.22G=0s 465s 465s 2025-02-19 11:06:56 (5.22 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=103&data_input_id=30’ saved [29199] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=99&data_input_id=30 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=99&data_input_id=30’ 465s 465s 0K .......... .......... ........ 4.97G=0s 465s 465s 2025-02-19 11:06:56 (4.97 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=99&data_input_id=30’ saved [29190] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=100&data_input_id=30 465s Reusing existing connection to [localhost]:80. 465s HTTP request sent, awaiting response... 200 OK 465s Length: unspecified [text/html] 465s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=100&data_input_id=30’ 465s 465s 0K .......... .......... ........ 6.19G=0s 465s 465s 2025-02-19 11:06:56 (6.19 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=100&data_input_id=30’ saved [29198] 465s 465s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=101&data_input_id=30 465s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=101&data_input_id=30’ 466s 466s 0K .......... .......... ........ 4.64G=0s 466s 466s 2025-02-19 11:06:56 (4.64 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=101&data_input_id=30’ saved [29205] 466s 466s --2025-02-19 11:06:56-- http://localhost/cacti/data_input.php?action=field_edit&id=105&data_input_id=30 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=105&data_input_id=30’ 466s 466s 0K .......... .......... ........ 4.67G=0s 466s 466s 2025-02-19 11:06:57 (4.67 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=105&data_input_id=30’ saved [29199] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=102&data_input_id=30 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=102&data_input_id=30’ 466s 466s 0K .......... .......... ........ 6.28G=0s 466s 466s 2025-02-19 11:06:57 (6.28 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=102&data_input_id=30’ saved [29201] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=32 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=32’ 466s 466s 0K .......... .......... ........ 6.90G=0s 466s 466s 2025-02-19 11:06:57 (6.90 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=32’ saved [29132] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=107&data_input_id=32 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=107&data_input_id=32’ 466s 466s 0K .......... .......... ........ 6.74G=0s 466s 466s 2025-02-19 11:06:57 (6.74 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=107&data_input_id=32’ saved [29206] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=in&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=in&data_input_id=27’ 466s 466s 0K .......... .......... ......... 6.78G=0s 466s 466s 2025-02-19 11:06:57 (6.78 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=in&data_input_id=27’ saved [30362] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=27’ 466s 466s 0K .......... .......... ........ 5.66G=0s 466s 466s 2025-02-19 11:06:57 (5.66 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=27’ saved [29124] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=92&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=92&data_input_id=27’ 466s 466s 0K .......... .......... ........ 4.34G=0s 466s 466s 2025-02-19 11:06:57 (4.34 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=92&data_input_id=27’ saved [29177] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=94&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=94&data_input_id=27’ 466s 466s 0K .......... .......... ........ 5.39G=0s 466s 466s 2025-02-19 11:06:57 (5.39 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=94&data_input_id=27’ saved [29182] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=91&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=91&data_input_id=27’ 466s 466s 0K .......... .......... ........ 4.72G=0s 466s 466s 2025-02-19 11:06:57 (4.72 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=91&data_input_id=27’ saved [29173] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=93&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=93&data_input_id=27’ 466s 466s 0K .......... .......... ........ 6.92G=0s 466s 466s 2025-02-19 11:06:57 (6.92 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=93&data_input_id=27’ saved [29185] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=95&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=95&data_input_id=27’ 466s 466s 0K .......... .......... ........ 6.38G=0s 466s 466s 2025-02-19 11:06:57 (6.38 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=95&data_input_id=27’ saved [29172] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=96&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=96&data_input_id=27’ 466s 466s 0K .......... .......... ........ 4.81G=0s 466s 466s 2025-02-19 11:06:57 (4.81 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=96&data_input_id=27’ saved [29180] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=90&data_input_id=27 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=90&data_input_id=27’ 466s 466s 0K .......... .......... ........ 4.60G=0s 466s 466s 2025-02-19 11:06:57 (4.60 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=90&data_input_id=27’ saved [29166] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=71&data_input_id=20 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=71&data_input_id=20’ 466s 466s 0K .......... .......... ......... 5.15G=0s 466s 466s 2025-02-19 11:06:57 (5.15 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=71&data_input_id=20’ saved [30346] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=20 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=20’ 466s 466s 0K .......... .......... ........ 4.68G=0s 466s 466s 2025-02-19 11:06:57 (4.68 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=20’ saved [29126] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=72&data_input_id=20 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=72&data_input_id=20’ 466s 466s 0K .......... .......... ........ 4.02G=0s 466s 466s 2025-02-19 11:06:57 (4.02 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=72&data_input_id=20’ saved [29195] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=73&data_input_id=21 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=73&data_input_id=21’ 466s 466s 0K .......... .......... ......... 3.94G=0s 466s 466s 2025-02-19 11:06:57 (3.94 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=73&data_input_id=21’ saved [30340] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=21 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=21’ 466s 466s 0K .......... .......... ........ 4.51G=0s 466s 466s 2025-02-19 11:06:57 (4.51 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=21’ saved [29120] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=74&data_input_id=21 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=74&data_input_id=21’ 466s 466s 0K .......... .......... ........ 4.58G=0s 466s 466s 2025-02-19 11:06:57 (4.58 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=74&data_input_id=21’ saved [29171] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=123&data_input_id=38 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=123&data_input_id=38’ 466s 466s 0K .......... .......... ......... 5.16G=0s 466s 466s 2025-02-19 11:06:57 (5.16 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=123&data_input_id=38’ saved [30350] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=38 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=38’ 466s 466s 0K .......... .......... ........ 6.27G=0s 466s 466s 2025-02-19 11:06:57 (6.27 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=38’ saved [29128] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=124&data_input_id=38 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=124&data_input_id=38’ 466s 466s 0K .......... .......... ........ 5.07G=0s 466s 466s 2025-02-19 11:06:57 (5.07 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=124&data_input_id=38’ saved [29146] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=117&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=117&data_input_id=37’ 466s 466s 0K .......... .......... ......... 4.57G=0s 466s 466s 2025-02-19 11:06:57 (4.57 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=117&data_input_id=37’ saved [30340] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=37’ 466s 466s 0K .......... .......... ........ 5.00G=0s 466s 466s 2025-02-19 11:06:57 (5.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=37’ saved [29118] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=122&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=122&data_input_id=37’ 466s 466s 0K .......... .......... ........ 5.39G=0s 466s 466s 2025-02-19 11:06:57 (5.39 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=122&data_input_id=37’ saved [29157] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=121&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=121&data_input_id=37’ 466s 466s 0K .......... .......... ........ 5.26G=0s 466s 466s 2025-02-19 11:06:57 (5.26 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=121&data_input_id=37’ saved [29154] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=120&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=120&data_input_id=37’ 466s 466s 0K .......... .......... ........ 5.78G=0s 466s 466s 2025-02-19 11:06:57 (5.78 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=120&data_input_id=37’ saved [29151] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=118&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=118&data_input_id=37’ 466s 466s 0K .......... .......... ........ 5.01G=0s 466s 466s 2025-02-19 11:06:57 (5.01 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=118&data_input_id=37’ saved [29130] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=119&data_input_id=37 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=119&data_input_id=37’ 466s 466s 0K .......... .......... ........ 5.11G=0s 466s 466s 2025-02-19 11:06:57 (5.11 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=119&data_input_id=37’ saved [29148] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=134&data_input_id=41 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=134&data_input_id=41’ 466s 466s 0K .......... .......... ......... 6.16G=0s 466s 466s 2025-02-19 11:06:57 (6.16 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=134&data_input_id=41’ saved [30329] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=41 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=41’ 466s 466s 0K .......... .......... ........ 5.32G=0s 466s 466s 2025-02-19 11:06:57 (5.32 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=41’ saved [29120] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=137&data_input_id=41 466s Reusing existing connection to [localhost]:80. 466s HTTP request sent, awaiting response... 200 OK 466s Length: unspecified [text/html] 466s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=137&data_input_id=41’ 466s 466s 0K .......... .......... ........ 5.24G=0s 466s 466s 2025-02-19 11:06:57 (5.24 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=137&data_input_id=41’ saved [29160] 466s 466s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=136&data_input_id=41 466s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=136&data_input_id=41’ 467s 467s 0K .......... .......... ........ 4.88G=0s 467s 467s 2025-02-19 11:06:57 (4.88 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=136&data_input_id=41’ saved [29170] 467s 467s --2025-02-19 11:06:57-- http://localhost/cacti/data_input.php?action=field_edit&id=139&data_input_id=41 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=139&data_input_id=41’ 467s 467s 0K .......... .......... ........ 5.45G=0s 467s 467s 2025-02-19 11:06:58 (5.45 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=139&data_input_id=41’ saved [29162] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=135&data_input_id=41 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=135&data_input_id=41’ 467s 467s 0K .......... .......... ........ 5.53G=0s 467s 467s 2025-02-19 11:06:58 (5.53 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=135&data_input_id=41’ saved [29174] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=138&data_input_id=41 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=138&data_input_id=41’ 467s 467s 0K .......... .......... ........ 5.91G=0s 467s 467s 2025-02-19 11:06:58 (5.91 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=138&data_input_id=41’ saved [29158] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=131&data_input_id=40 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=131&data_input_id=40’ 467s 467s 0K .......... .......... ......... 5.46G=0s 467s 467s 2025-02-19 11:06:58 (5.46 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=131&data_input_id=40’ saved [30339] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=40 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=40’ 467s 467s 0K .......... .......... ........ 4.46G=0s 467s 467s 2025-02-19 11:06:58 (4.46 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=40’ saved [29130] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=133&data_input_id=40 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=133&data_input_id=40’ 467s 467s 0K .......... .......... ........ 4.58G=0s 467s 467s 2025-02-19 11:06:58 (4.58 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=133&data_input_id=40’ saved [29152] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=132&data_input_id=40 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=132&data_input_id=40’ 467s 467s 0K .......... .......... ........ 4.99G=0s 467s 467s 2025-02-19 11:06:58 (4.99 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=132&data_input_id=40’ saved [29156] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=125&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=125&data_input_id=39’ 467s 467s 0K .......... .......... ......... 6.00G=0s 467s 467s 2025-02-19 11:06:58 (6.00 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=125&data_input_id=39’ saved [30333] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=39’ 467s 467s 0K .......... .......... ........ 6.38G=0s 467s 467s 2025-02-19 11:06:58 (6.38 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=39’ saved [29124] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=127&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=127&data_input_id=39’ 467s 467s 0K .......... .......... ........ 6.82G=0s 467s 467s 2025-02-19 11:06:58 (6.82 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=127&data_input_id=39’ saved [29178] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=126&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=126&data_input_id=39’ 467s 467s 0K .......... .......... ........ 7.26G=0s 467s 467s 2025-02-19 11:06:58 (7.26 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=126&data_input_id=39’ saved [29182] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=130&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=130&data_input_id=39’ 467s 467s 0K .......... .......... ........ 6.33G=0s 467s 467s 2025-02-19 11:06:58 (6.33 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=130&data_input_id=39’ saved [29187] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=129&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=129&data_input_id=39’ 467s 467s 0K .......... .......... ........ 5.64G=0s 467s 467s 2025-02-19 11:06:58 (5.64 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=129&data_input_id=39’ saved [29183] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=128&data_input_id=39 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=128&data_input_id=39’ 467s 467s 0K .......... .......... ........ 6.15G=0s 467s 467s 2025-02-19 11:06:58 (6.15 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=128&data_input_id=39’ saved [29183] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=22&data_input_id=6 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=22&data_input_id=6’ 467s 467s 0K .......... .......... ......... 4.03G=0s 467s 467s 2025-02-19 11:06:58 (4.03 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=22&data_input_id=6’ saved [30332] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=6 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=6’ 467s 467s 0K .......... .......... ........ 4.24G=0s 467s 467s 2025-02-19 11:06:58 (4.24 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&type=out&data_input_id=6’ saved [29127] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/data_input.php?action=field_edit&id=23&data_input_id=6 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/data_input.php?action=field_edit&id=23&data_input_id=6’ 467s 467s 0K .......... .......... ........ 4.55G=0s 467s 467s 2025-02-19 11:06:58 (4.55 GB/s) - ‘localhost/cacti/data_input.php?action=field_edit&id=23&data_input_id=6’ saved [29180] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=1 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=1’ 467s 467s 0K .......... .......... .......... .......... .......... 3.02G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (3.52 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=1’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=2 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=2’ 467s 467s 0K .......... .......... .......... .......... .......... 6.01G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (7.02 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=2’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=5 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=5’ 467s 467s 0K .......... .......... .......... .......... .......... 4.19G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (4.90 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=5’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=3 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=3’ 467s 467s 0K .......... .......... .......... .......... .......... 3.31G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (3.87 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=3’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=4 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=4’ 467s 467s 0K .......... .......... .......... .......... .......... 2.90G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (3.38 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=4’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=7 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=7’ 467s 467s 0K .......... .......... .......... .......... .......... 2.85G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (3.33 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=7’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=8 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=8’ 467s 467s 0K .......... .......... .......... .......... .......... 3.91G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (4.57 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=8’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=9 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=9’ 467s 467s 0K .......... .......... .......... .......... .......... 4.75G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (5.55 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=9’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=6 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=6’ 467s 467s 0K .......... .......... .......... .......... .......... 3.77G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (4.40 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=6’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=10 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=10’ 467s 467s 0K .......... .......... .......... .......... .......... 3.57G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (4.16 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=10’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=11 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=11’ 467s 467s 0K .......... .......... .......... .......... .......... 3.97G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (4.64 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=11’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=12 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=12’ 467s 467s 0K .......... .......... .......... .......... .......... 5.27G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (6.15 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=12’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=13 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=13’ 467s 467s 0K .......... .......... .......... .......... .......... 5.96G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (6.96 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=13’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=14 467s Reusing existing connection to [localhost]:80. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=14’ 467s 467s 0K .......... .......... .......... .......... .......... 6.73G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (7.86 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=14’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=15 467s Connecting to localhost (localhost)|::1|:80... connected. 467s HTTP request sent, awaiting response... 200 OK 467s Length: unspecified [text/html] 467s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=15’ 467s 467s 0K .......... .......... .......... .......... .......... 4.85G 467s 50K ........ 15.6T=0s 467s 467s 2025-02-19 11:06:58 (5.66 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=15’ saved [59797] 467s 467s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=16 467s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=16’ 468s 468s 0K .......... .......... .......... .......... .......... 214M 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:58 (249 MB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=16’ saved [59797] 468s 468s --2025-02-19 11:06:58-- http://localhost/cacti/host.php?action=edit&host_template_id=17 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=17’ 468s 468s 0K .......... .......... .......... .......... .......... 4.72G 468s 50K ........ 73.0M=0s 468s 468s 2025-02-19 11:06:59 (466 MB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=17’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=18 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=18’ 468s 468s 0K .......... .......... .......... .......... .......... 6.30G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (7.35 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=18’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=19 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=19’ 468s 468s 0K .......... .......... .......... .......... .......... 5.82G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (6.80 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=19’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=20 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=20’ 468s 468s 0K .......... .......... .......... .......... .......... 2.32G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (2.71 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=20’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=21 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=21’ 468s 468s 0K .......... .......... .......... .......... .......... 8.06G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (9.41 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=21’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=22 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=22’ 468s 468s 0K .......... .......... .......... .......... .......... 7.43G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (8.68 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=22’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=23 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=23’ 468s 468s 0K .......... .......... .......... .......... .......... 7.98G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (9.32 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=23’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=24 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=24’ 468s 468s 0K .......... .......... .......... .......... .......... 8.20G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (9.58 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=24’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=25 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=25’ 468s 468s 0K .......... .......... .......... .......... .......... 7.90G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (9.23 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=25’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=26 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=26’ 468s 468s 0K .......... .......... .......... .......... .......... 4.83G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (5.64 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=26’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/host.php?action=edit&host_template_id=27 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/host.php?action=edit&host_template_id=27’ 468s 468s 0K .......... .......... .......... .......... .......... 5.21G 468s 50K ........ 15.6T=0s 468s 468s 2025-02-19 11:06:59 (6.08 GB/s) - ‘localhost/cacti/host.php?action=edit&host_template_id=27’ saved [59797] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 3.07G 468s 50K .......... .......... .......... .......... .......... 686M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (1.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=2’ saved [120198] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=5&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=5&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 4.21G 468s 50K .......... .......... .......... .......... .......... 157M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (357 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=5&graph_template_id=2’ saved [120237] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=5&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=5&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 4.77G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (5.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=5&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=6&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=6&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 5.73G 468s 50K .......... .......... .......... .......... .......... 144M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (330 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=6&graph_template_id=2’ saved [120219] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=6&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=6&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 5.66G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (6.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=6&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=6&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=6&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 4.44G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (5.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=6&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=7&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=7&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 3.88G 468s 50K .......... .......... .......... .......... .......... 460M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (968 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=7&graph_template_id=2’ saved [120219] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=7&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=7&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 5.16G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (6.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=7&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=7&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=7&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 2.65G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (3.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=7&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=8&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=8&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 5.36G 468s 50K .......... .......... .......... .......... .......... 235M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (529 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=8&graph_template_id=2’ saved [120226] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=8&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=8&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 3.32G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (4.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=8&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=8&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=8&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 4.25G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (5.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=8&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=9&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=9&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 4.40G 468s 50K .......... .......... .......... .......... .......... 383M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (828 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=9&graph_template_id=2’ saved [120239] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=9&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=9&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 3.85G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (4.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=9&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=9&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=9&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 4.30G 468s 50K .......... . 20.5T=0s 468s 468s 2025-02-19 11:06:59 (5.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=9&graph_template_id=2’ saved [62474] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=10&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 200 OK 468s Length: unspecified [text/html] 468s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=10&graph_template_id=2’ 468s 468s 0K .......... .......... .......... .......... .......... 5.80G 468s 50K .......... .......... .......... .......... .......... 235M 468s 100K .......... ....... 32.4T=0s 468s 468s 2025-02-19 11:06:59 (532 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=10&graph_template_id=2’ saved [120220] 468s 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=10&graph_template_id=2 468s Reusing existing connection to [localhost]:80. 468s HTTP request sent, awaiting response... 302 Found 468s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 468s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 468s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=10&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 3.97G 469s 50K .......... . 20.5T=0s 469s 469s 2025-02-19 11:06:59 (4.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=10&graph_template_id=2’ saved [62474] 469s 469s --2025-02-19 11:06:59-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=10&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=10&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 4.36G 469s 50K .......... . 20.5T=0s 469s 469s 2025-02-19 11:07:00 (5.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=10&graph_template_id=2’ saved [62474] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=11&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=11&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 4.42G 469s 50K .......... .......... .......... .......... .......... 427M 469s 100K .......... ....... 32.4T=0s 469s 469s 2025-02-19 11:07:00 (916 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=11&graph_template_id=2’ saved [120220] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=11&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=11&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 4.74G 469s 50K .......... . 20.5T=0s 469s 469s 2025-02-19 11:07:00 (5.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=11&graph_template_id=2’ saved [62474] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=11&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=11&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 3.86G 469s 50K .......... . 20.5T=0s 469s 469s 2025-02-19 11:07:00 (4.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=11&graph_template_id=2’ saved [62474] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=12&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=12&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 4.25G 469s 50K .......... .......... .......... .......... .......... 560M 469s 100K .......... ....... 32.4T=0s 469s 469s 2025-02-19 11:07:00 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=12&graph_template_id=2’ saved [120227] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=12&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=12&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .......... .......... 4.68G 469s 50K .......... . 20.5T=0s 469s 469s 2025-02-19 11:07:00 (5.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=12&graph_template_id=2’ saved [62474] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=2’ 469s 469s 0K .......... .......... .......... . 3.60G=0s 469s 469s 2025-02-19 11:07:00 (3.60 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=2’ saved [32702] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=2&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=2&graph_template_id=2’ 469s 469s 0K .......... .......... .......... . 4.81G=0s 469s 469s 2025-02-19 11:07:00 (4.81 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=2&graph_template_id=2’ saved [32766] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=3&graph_template_id=2 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=3&graph_template_id=2’ 469s 469s 0K .......... .......... .......... .. 4.75G=0s 469s 469s 2025-02-19 11:07:00 (4.75 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=3&graph_template_id=2’ saved [32768] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=9’ 469s 469s 0K .......... .......... .......... .......... .......... 3.15G 469s 50K .......... .......... .......... .......... .......... 505M 469s 100K .......... ....... 32.2T=0s 469s 469s 2025-02-19 11:07:00 (1.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=9’ saved [120125] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=57&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=57&graph_template_id=9’ 469s 469s 0K .......... .......... .......... .......... .......... 3.80G 469s 50K .......... .......... .......... .......... .......... 564M 469s 100K .......... ....... 32.3T=0s 469s 469s 2025-02-19 11:07:00 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=57&graph_template_id=9’ saved [120155] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=57&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=57&graph_template_id=9’ 469s 469s 0K .......... .......... .......... .......... .......... 5.97G 469s 50K .... 9.24T=0s 469s 469s 2025-02-19 11:07:00 (6.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=57&graph_template_id=9’ saved [56282] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=58&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=58&graph_template_id=9’ 469s 469s 0K .......... .......... .......... .......... .......... 4.97G 469s 50K .......... .......... .......... .......... .......... 605M 469s 100K .......... ....... 32.3T=0s 469s 469s 2025-02-19 11:07:00 (1.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=58&graph_template_id=9’ saved [120148] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=58&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=58&graph_template_id=9’ 469s 469s 0K .......... .......... .......... .......... .......... 7.21G 469s 50K .... 9.24T=0s 469s 469s 2025-02-19 11:07:00 (7.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=58&graph_template_id=9’ saved [56282] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=9’ 469s 469s 0K .......... .......... ......... 4.99G=0s 469s 469s 2025-02-19 11:07:00 (4.99 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=9’ saved [30584] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=17&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=17&graph_template_id=9’ 469s 469s 0K .......... .......... ......... 4.18G=0s 469s 469s 2025-02-19 11:07:00 (4.18 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=17&graph_template_id=9’ saved [30617] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=18&graph_template_id=9 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=18&graph_template_id=9’ 469s 469s 0K .......... .......... ......... 4.17G=0s 469s 469s 2025-02-19 11:07:00 (4.17 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=18&graph_template_id=9’ saved [30633] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 3.42G 469s 50K .......... .......... .......... .......... .......... 594M 469s 100K .......... ....... 32.2T=0s 469s 469s 2025-02-19 11:07:00 (1.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=6’ saved [120121] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=41&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=41&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 4.35G 469s 50K .......... .......... .......... .......... .......... 578M 469s 100K .......... ....... 32.3T=0s 469s 469s 2025-02-19 11:07:00 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=41&graph_template_id=6’ saved [120157] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=41&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=41&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 5.39G 469s 50K ...... 12.3T=0s 469s 469s 2025-02-19 11:07:00 (6.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=41&graph_template_id=6’ saved [57954] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=42&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=42&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 4.41G 469s 50K .......... .......... .......... .......... .......... 124M 469s 100K .......... ....... 32.3T=0s 469s 469s 2025-02-19 11:07:00 (284 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=42&graph_template_id=6’ saved [120144] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=42&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=42&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 5.10G 469s 50K ...... 12.3T=0s 469s 469s 2025-02-19 11:07:00 (5.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=42&graph_template_id=6’ saved [57954] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=42&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=42&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 4.05G 469s 50K ...... 12.3T=0s 469s 469s 2025-02-19 11:07:00 (4.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=42&graph_template_id=6’ saved [57954] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=43&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=43&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 1.96G 469s 50K .......... .......... .......... .......... .......... 225M 469s 100K .......... ....... 32.3T=0s 469s 469s 2025-02-19 11:07:00 (475 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=43&graph_template_id=6’ saved [120144] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=43&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 200 OK 469s Length: unspecified [text/html] 469s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=43&graph_template_id=6’ 469s 469s 0K .......... .......... .......... .......... .......... 5.21G 469s 50K ...... 12.3T=0s 469s 469s 2025-02-19 11:07:00 (5.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=43&graph_template_id=6’ saved [57954] 469s 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=43&graph_template_id=6 469s Reusing existing connection to [localhost]:80. 469s HTTP request sent, awaiting response... 302 Found 469s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 469s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 469s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=43&graph_template_id=6’ 470s 470s 0K .......... .......... .......... .......... .......... 5.56G 470s 50K ...... 12.3T=0s 470s 470s 2025-02-19 11:07:00 (6.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=43&graph_template_id=6’ saved [57954] 470s 470s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=44&graph_template_id=6 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=44&graph_template_id=6’ 470s 470s 0K .......... .......... .......... .......... .......... 5.07G 470s 50K .......... .......... .......... .......... .......... 157M 470s 100K .......... ....... 32.3T=0s 470s 470s 2025-02-19 11:07:00 (357 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=44&graph_template_id=6’ saved [120151] 470s 470s --2025-02-19 11:07:00-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=44&graph_template_id=6 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=6 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=6 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=44&graph_template_id=6’ 470s 470s 0K .......... .......... .......... .......... .......... 4.80G 470s 50K ...... 12.3T=0s 470s 470s 2025-02-19 11:07:01 (5.44 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=44&graph_template_id=6’ saved [57954] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=6 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=6’ 470s 470s 0K .......... .......... .......... 5.00G=0s 470s 470s 2025-02-19 11:07:01 (5.00 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=6’ saved [31299] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=12&graph_template_id=6 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=12&graph_template_id=6’ 470s 470s 0K .......... .......... .......... 4.57G=0s 470s 470s 2025-02-19 11:07:01 (4.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=12&graph_template_id=6’ saved [31362] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 3.39G 470s 50K .......... .......... .......... .......... .......... 566M 470s 100K .......... ....... 32.2T=0s 470s 470s 2025-02-19 11:07:01 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=8’ saved [120113] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=53&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=53&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 4.61G 470s 50K .......... .......... .......... .......... .......... 538M 470s 100K .......... ....... 32.3T=0s 470s 470s 2025-02-19 11:07:01 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=53&graph_template_id=8’ saved [120149] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=53&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=53&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 5.83G 470s 50K ...... 12.2T=0s 470s 470s 2025-02-19 11:07:01 (6.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=53&graph_template_id=8’ saved [57925] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=54&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=54&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 4.35G 470s 50K .......... .......... .......... .......... .......... 634M 470s 100K .......... ....... 32.3T=0s 470s 470s 2025-02-19 11:07:01 (1.27 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=54&graph_template_id=8’ saved [120136] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=54&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=54&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 4.74G 470s 50K ...... 12.2T=0s 470s 470s 2025-02-19 11:07:01 (5.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=54&graph_template_id=8’ saved [57925] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=54&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=54&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 3.99G 470s 50K ...... 12.2T=0s 470s 470s 2025-02-19 11:07:01 (4.51 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=54&graph_template_id=8’ saved [57925] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=55&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=55&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 3.98G 470s 50K .......... .......... .......... .......... .......... 533M 470s 100K .......... ....... 32.3T=0s 470s 470s 2025-02-19 11:07:01 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=55&graph_template_id=8’ saved [120136] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=55&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=55&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 4.80G 470s 50K ...... 12.2T=0s 470s 470s 2025-02-19 11:07:01 (5.43 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=55&graph_template_id=8’ saved [57925] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=55&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=55&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 5.48G 470s 50K ...... 12.2T=0s 470s 470s 2025-02-19 11:07:01 (6.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=55&graph_template_id=8’ saved [57925] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=56&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=56&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 4.28G 470s 50K .......... .......... .......... .......... .......... 645M 470s 100K .......... ....... 32.3T=0s 470s 470s 2025-02-19 11:07:01 (1.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=56&graph_template_id=8’ saved [120143] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=56&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=8 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=56&graph_template_id=8’ 470s 470s 0K .......... .......... .......... .......... .......... 5.49G 470s 50K ...... 12.2T=0s 470s 470s 2025-02-19 11:07:01 (6.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=56&graph_template_id=8’ saved [57925] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=8’ 470s 470s 0K .......... .......... .......... 4.26G=0s 470s 470s 2025-02-19 11:07:01 (4.26 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=8’ saved [31292] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=16&graph_template_id=8 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=16&graph_template_id=8’ 470s 470s 0K .......... .......... .......... 4.34G=0s 470s 470s 2025-02-19 11:07:01 (4.34 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=16&graph_template_id=8’ saved [31358] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=5 470s Connecting to localhost (localhost)|::1|:80... connected. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 2.83G 470s 50K .......... .......... .......... .......... .......... 549M 470s 100K .......... ....... 33.1T=0s 470s 470s 2025-02-19 11:07:01 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=5’ saved [120591] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=33&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=33&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 3.31G 470s 50K .......... .......... .......... .......... .......... 547M 470s 100K .......... ....... 33.2T=0s 470s 470s 2025-02-19 11:07:01 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=33&graph_template_id=5’ saved [120637] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=33&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=33&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 2.41G 470s 50K .......... . 20.7T=0s 470s 470s 2025-02-19 11:07:01 (2.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=33&graph_template_id=5’ saved [62555] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=34&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=34&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 5.34G 470s 50K .......... .......... .......... .......... .......... 151M 470s 100K .......... ....... 33.1T=0s 470s 470s 2025-02-19 11:07:01 (345 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=34&graph_template_id=5’ saved [120613] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=34&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=34&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 6.17G 470s 50K .......... . 20.7T=0s 470s 470s 2025-02-19 11:07:01 (7.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=34&graph_template_id=5’ saved [62555] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=34&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=34&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 4.86G 470s 50K .......... . 20.7T=0s 470s 470s 2025-02-19 11:07:01 (5.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=34&graph_template_id=5’ saved [62555] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=35&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=35&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 4.53G 470s 50K .......... .......... .......... .......... .......... 209M 470s 100K .......... ....... 33.1T=0s 470s 470s 2025-02-19 11:07:01 (470 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=35&graph_template_id=5’ saved [120613] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=35&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=35&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 3.98G 470s 50K .......... . 20.7T=0s 470s 470s 2025-02-19 11:07:01 (4.86 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=35&graph_template_id=5’ saved [62555] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=35&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 302 Found 470s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 470s Reusing existing connection to [localhost]:80. 470s HTTP request sent, awaiting response... 200 OK 470s Length: unspecified [text/html] 470s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=35&graph_template_id=5’ 470s 470s 0K .......... .......... .......... .......... .......... 5.11G 470s 50K .......... . 20.7T=0s 470s 470s 2025-02-19 11:07:01 (6.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=35&graph_template_id=5’ saved [62555] 470s 470s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=36&graph_template_id=5 470s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=36&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 6.37G 471s 50K .......... .......... .......... .......... .......... 109M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:01 (252 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=36&graph_template_id=5’ saved [120620] 471s 471s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=36&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:01-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=36&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 7.75G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (9.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=36&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=36&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=36&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 4.30G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (5.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=36&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=37&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=37&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 4.91G 471s 50K .......... .......... .......... .......... .......... 177M 471s 100K .......... ....... 33.2T=0s 471s 471s 2025-02-19 11:07:02 (403 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=37&graph_template_id=5’ saved [120639] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=37&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=37&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 5.46G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (6.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=37&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=37&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=37&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 5.95G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (7.27 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=37&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=38&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=38&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 5.48G 471s 50K .......... .......... .......... .......... .......... 438M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (957 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=38&graph_template_id=5’ saved [120613] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=38&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=38&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 5.72G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (6.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=38&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=38&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=38&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 5.09G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (6.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=38&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=39&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=39&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 6.86G 471s 50K .......... .......... .......... .......... .......... 483M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=39&graph_template_id=5’ saved [120613] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=39&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=39&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 6.31G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (7.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=39&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=39&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=39&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 5.39G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (6.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=39&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=40&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=40&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 4.39G 471s 50K .......... .......... .......... .......... .......... 639M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (1.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=40&graph_template_id=5’ saved [120620] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=40&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=40&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .......... .......... 4.40G 471s 50K .......... . 20.7T=0s 471s 471s 2025-02-19 11:07:02 (5.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=40&graph_template_id=5’ saved [62555] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=5’ 471s 471s 0K .......... .......... .......... . 4.54G=0s 471s 471s 2025-02-19 11:07:02 (4.54 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=5’ saved [32732] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=10&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=10&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .. 6.14G=0s 471s 471s 2025-02-19 11:07:02 (6.14 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=10&graph_template_id=5’ saved [32802] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=11&graph_template_id=5 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=11&graph_template_id=5’ 471s 471s 0K .......... .......... .......... .. 5.25G=0s 471s 471s 2025-02-19 11:07:02 (5.25 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=11&graph_template_id=5’ saved [32803] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 3.62G 471s 50K .......... .......... .......... .......... .......... 573M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=3’ saved [120578] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=13&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=13&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 5.46G 471s 50K .......... .......... .......... .......... .......... 690M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (1.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=13&graph_template_id=3’ saved [120621] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=13&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=13&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 4.57G 471s 50K .......... .......... 170M=0s 471s 471s 2025-02-19 11:07:02 (543 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=13&graph_template_id=3’ saved [71782] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=14&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=14&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 3.55G 471s 50K .......... .......... .......... .......... .......... 530M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=14&graph_template_id=3’ saved [120601] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=14&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=14&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 4.07G 471s 50K .......... .......... 202M=0s 471s 471s 2025-02-19 11:07:02 (630 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=14&graph_template_id=3’ saved [71782] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=14&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=14&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 3.53G 471s 50K .......... .......... 227M=0s 471s 471s 2025-02-19 11:07:02 (684 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=14&graph_template_id=3’ saved [71782] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=15&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=15&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 4.67G 471s 50K .......... .......... .......... .......... .......... 553M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=15&graph_template_id=3’ saved [120601] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=15&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=15&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 3.79G 471s 50K .......... .......... 184M=0s 471s 471s 2025-02-19 11:07:02 (575 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=15&graph_template_id=3’ saved [71782] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=15&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=15&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 4.74G 471s 50K .......... .......... 183M=0s 471s 471s 2025-02-19 11:07:02 (582 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=15&graph_template_id=3’ saved [71782] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=16&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 200 OK 471s Length: unspecified [text/html] 471s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=16&graph_template_id=3’ 471s 471s 0K .......... .......... .......... .......... .......... 6.49G 471s 50K .......... .......... .......... .......... .......... 418M 471s 100K .......... ....... 33.1T=0s 471s 471s 2025-02-19 11:07:02 (926 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=16&graph_template_id=3’ saved [120608] 471s 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=16&graph_template_id=3 471s Reusing existing connection to [localhost]:80. 471s HTTP request sent, awaiting response... 302 Found 471s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 471s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 471s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=16&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 4.30G 472s 50K .......... .......... 93.4M=0s 472s 472s 2025-02-19 11:07:02 (310 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=16&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:02-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=16&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=16&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.95G 472s 50K .......... .......... 185M=0s 472s 472s 2025-02-19 11:07:03 (581 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=16&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=17&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=17&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.29G 472s 50K .......... .......... .......... .......... .......... 425M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (889 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=17&graph_template_id=3’ saved [120622] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=17&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=17&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.47G 472s 50K .......... .......... 16.3M=0.001s 472s 472s 2025-02-19 11:07:03 (56.1 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=17&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=17&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=17&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 4.18G 472s 50K .......... .......... 162M=0s 472s 472s 2025-02-19 11:07:03 (517 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=17&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=18&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=18&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.78G 472s 50K .......... .......... .......... .......... .......... 212M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (473 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=18&graph_template_id=3’ saved [120600] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=18&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=18&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.52G 472s 50K .......... .......... 188M=0s 472s 472s 2025-02-19 11:07:03 (581 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=18&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=18&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=18&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 4.17G 472s 50K .......... .......... 259M=0s 472s 472s 2025-02-19 11:07:03 (785 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=18&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=19&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=19&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 2.62G 472s 50K .......... .......... .......... .......... .......... 530M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=19&graph_template_id=3’ saved [120600] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=19&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=19&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 4.06G 472s 50K .......... .......... 241M=0s 472s 472s 2025-02-19 11:07:03 (734 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=19&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=19&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=19&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 995M 472s 50K .......... .......... 231M=0s 472s 472s 2025-02-19 11:07:03 (511 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=19&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=20&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=20&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.40G 472s 50K .......... .......... .......... .......... .......... 526M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=20&graph_template_id=3’ saved [120607] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=20&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=20&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 4.27G 472s 50K .......... .......... 271M=0s 472s 472s 2025-02-19 11:07:03 (820 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=20&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=20&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=20&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 5.07G 472s 50K .......... .......... 268M=0s 472s 472s 2025-02-19 11:07:03 (827 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=20&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=21&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=21&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 7.22G 472s 50K .......... .......... .......... .......... .......... 499M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=21&graph_template_id=3’ saved [120616] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=21&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=21&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 4.27G 472s 50K .......... .......... 232M=0s 472s 472s 2025-02-19 11:07:03 (714 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=21&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=21&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=21&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.66G 472s 50K .......... .......... 235M=0s 472s 472s 2025-02-19 11:07:03 (709 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=21&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=22&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=22&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 5.57G 472s 50K .......... .......... .......... .......... .......... 615M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (1.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=22&graph_template_id=3’ saved [120602] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=22&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=22&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 1.05G 472s 50K .......... .......... 238M=0s 472s 472s 2025-02-19 11:07:03 (535 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=22&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=22&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=22&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.20G 472s 50K .......... .......... 231M=0s 472s 472s 2025-02-19 11:07:03 (686 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=22&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=23&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=23&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.38G 472s 50K .......... .......... .......... .......... .......... 537M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=23&graph_template_id=3’ saved [120602] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=23&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=23&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.44G 472s 50K .......... .......... 243M=0s 472s 472s 2025-02-19 11:07:03 (724 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=23&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=23&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=23&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.53G 472s 50K .......... .......... 230M=0s 472s 472s 2025-02-19 11:07:03 (693 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=23&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=24&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=24&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.73G 472s 50K .......... .......... .......... .......... .......... 599M 472s 100K .......... ....... 33.1T=0s 472s 472s 2025-02-19 11:07:03 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=24&graph_template_id=3’ saved [120609] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=24&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=24&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.38G 472s 50K .......... .......... 195M=0s 472s 472s 2025-02-19 11:07:03 (596 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=24&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=24&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 302 Found 472s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 472s Reusing existing connection to [localhost]:80. 472s HTTP request sent, awaiting response... 200 OK 472s Length: unspecified [text/html] 472s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=24&graph_template_id=3’ 472s 472s 0K .......... .......... .......... .......... .......... 3.47G 472s 50K .......... .......... 172M=0s 472s 472s 2025-02-19 11:07:03 (536 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=24&graph_template_id=3’ saved [71782] 472s 472s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=25&graph_template_id=3 472s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=25&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.09G 473s 50K .......... .......... .......... .......... .......... 402M 473s 100K .......... ....... 33.1T=0s 473s 473s 2025-02-19 11:07:03 (840 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=25&graph_template_id=3’ saved [120617] 473s 473s --2025-02-19 11:07:03-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=25&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Connecting to localhost (localhost)|::1|:80... connected. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=25&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 2.96G 473s 50K .......... .......... 200M=0s 473s 473s 2025-02-19 11:07:04 (600 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=25&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=25&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=25&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 2.54G 473s 50K .......... .......... 222M=0s 473s 473s 2025-02-19 11:07:04 (639 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=25&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=26&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=26&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.02G 473s 50K .......... .......... .......... .......... .......... 531M 473s 100K .......... ....... 33.1T=0s 473s 473s 2025-02-19 11:07:04 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=26&graph_template_id=3’ saved [120601] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=26&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=26&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.35G 473s 50K .......... .......... 234M=0s 473s 473s 2025-02-19 11:07:04 (699 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=26&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=26&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=26&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 2.42G 473s 50K .......... .......... 81.2M=0s 473s 473s 2025-02-19 11:07:04 (262 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=26&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=27&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=27&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 4.32G 473s 50K .......... .......... .......... .......... .......... 382M 473s 100K .......... ....... 33.1T=0s 473s 473s 2025-02-19 11:07:04 (828 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=27&graph_template_id=3’ saved [120601] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=27&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=27&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.33G 473s 50K .......... .......... 172M=0s 473s 473s 2025-02-19 11:07:04 (532 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=27&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=27&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=27&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.49G 473s 50K .......... .......... 231M=0s 473s 473s 2025-02-19 11:07:04 (694 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=27&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=28&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=28&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.75G 473s 50K .......... .......... .......... .......... .......... 566M 473s 100K .......... ....... 33.1T=0s 473s 473s 2025-02-19 11:07:04 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=28&graph_template_id=3’ saved [120608] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=28&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=28&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .......... .......... 3.19G 473s 50K .......... .......... 275M=0s 473s 473s 2025-02-19 11:07:04 (792 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=28&graph_template_id=3’ saved [71782] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .... 4.40G=0s 473s 473s 2025-02-19 11:07:04 (4.40 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=3’ saved [35567] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=6&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=6&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .... 4.08G=0s 473s 473s 2025-02-19 11:07:04 (4.08 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=6&graph_template_id=3’ saved [35629] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=5&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=5&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .... 3.79G=0s 473s 473s 2025-02-19 11:07:04 (3.79 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=5&graph_template_id=3’ saved [35631] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=4&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=4&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .... 3.96G=0s 473s 473s 2025-02-19 11:07:04 (3.96 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=4&graph_template_id=3’ saved [35632] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=7&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=7&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .... 3.85G=0s 473s 473s 2025-02-19 11:07:04 (3.85 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=7&graph_template_id=3’ saved [35600] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=8&graph_template_id=3 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=8&graph_template_id=3’ 473s 473s 0K .......... .......... .......... .... 3.82G=0s 473s 473s 2025-02-19 11:07:04 (3.82 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=8&graph_template_id=3’ saved [35630] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 3.29G 473s 50K .......... .......... .......... .......... .......... 493M 473s 100K .......... ....... 32.2T=0s 473s 473s 2025-02-19 11:07:04 (1008 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=7’ saved [120108] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=45&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=45&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 4.17G 473s 50K .......... .......... .......... .......... .......... 434M 473s 100K .......... ....... 32.3T=0s 473s 473s 2025-02-19 11:07:04 (925 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=45&graph_template_id=7’ saved [120158] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=45&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=45&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 3.17G 473s 50K .......... . 21.0T=0s 473s 473s 2025-02-19 11:07:04 (3.88 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=45&graph_template_id=7’ saved [62731] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=46&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=46&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 3.28G 473s 50K .......... .......... .......... .......... .......... 521M 473s 100K .......... ....... 32.3T=0s 473s 473s 2025-02-19 11:07:04 (1.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=46&graph_template_id=7’ saved [120140] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=46&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=46&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 3.50G 473s 50K .......... . 21.0T=0s 473s 473s 2025-02-19 11:07:04 (4.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=46&graph_template_id=7’ saved [62731] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=46&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=46&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 4.66G 473s 50K .......... . 21.0T=0s 473s 473s 2025-02-19 11:07:04 (5.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=46&graph_template_id=7’ saved [62731] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=47&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=47&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 4.44G 473s 50K .......... .......... .......... .......... .......... 240M 473s 100K .......... ....... 32.3T=0s 473s 473s 2025-02-19 11:07:04 (535 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=47&graph_template_id=7’ saved [120140] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=47&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=47&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 4.18G 473s 50K .......... . 21.0T=0s 473s 473s 2025-02-19 11:07:04 (5.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=47&graph_template_id=7’ saved [62731] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=47&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 302 Found 473s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=47&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 3.27G 473s 50K .......... . 21.0T=0s 473s 473s 2025-02-19 11:07:04 (4.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=47&graph_template_id=7’ saved [62731] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=48&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 473s HTTP request sent, awaiting response... 200 OK 473s Length: unspecified [text/html] 473s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=48&graph_template_id=7’ 473s 473s 0K .......... .......... .......... .......... .......... 4.65G 473s 50K .......... .......... .......... .......... .......... 637M 473s 100K .......... ....... 32.3T=0s 473s 473s 2025-02-19 11:07:04 (1.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=48&graph_template_id=7’ saved [120147] 473s 473s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=48&graph_template_id=7 473s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=48&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 5.09G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:04 (6.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=48&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=48&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:04-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=48&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 5.07G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (6.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=48&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=49&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=49&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 5.97G 474s 50K .......... .......... .......... .......... .......... 464M 474s 100K .......... ....... 32.2T=0s 474s 474s 2025-02-19 11:07:05 (1012 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=49&graph_template_id=7’ saved [120129] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=49&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=49&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 3.77G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (4.62 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=49&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=49&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=49&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 4.00G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (4.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=49&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=50&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=50&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 7.02G 474s 50K .......... .......... .......... .......... .......... 528M 474s 100K .......... ....... 32.2T=0s 474s 474s 2025-02-19 11:07:05 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=50&graph_template_id=7’ saved [120119] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=50&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=50&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 4.61G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (5.65 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=50&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=50&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=50&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 6.29G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (7.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=50&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=51&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=51&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 5.11G 474s 50K .......... .......... .......... .......... .......... 359M 474s 100K .......... ....... 32.2T=0s 474s 474s 2025-02-19 11:07:05 (789 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=51&graph_template_id=7’ saved [120119] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=51&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=51&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 3.68G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (4.51 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=51&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=51&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=51&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 4.02G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (4.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=51&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=52&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=52&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 3.52G 474s 50K .......... .......... .......... .......... .......... 435M 474s 100K .......... ....... 32.2T=0s 474s 474s 2025-02-19 11:07:05 (911 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=52&graph_template_id=7’ saved [120126] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=52&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=52&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .......... .......... 4.98G 474s 50K .......... . 21.0T=0s 474s 474s 2025-02-19 11:07:05 (6.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=52&graph_template_id=7’ saved [62731] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=7’ 474s 474s 0K .......... .......... .......... . 5.91G=0s 474s 474s 2025-02-19 11:07:05 (5.91 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=7’ saved [32710] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=15&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=15&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .. 4.57G=0s 474s 474s 2025-02-19 11:07:05 (4.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=15&graph_template_id=7’ saved [32769] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=13&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=13&graph_template_id=7’ 474s 474s 0K .......... .......... .......... .. 3.92G=0s 474s 474s 2025-02-19 11:07:05 (3.92 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=13&graph_template_id=7’ saved [32779] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=14&graph_template_id=7 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=14&graph_template_id=7’ 474s 474s 0K .......... .......... .......... . 3.54G=0s 474s 474s 2025-02-19 11:07:05 (3.54 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=14&graph_template_id=7’ saved [32745] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 1.93G 474s 50K .......... .......... .......... .......... .......... 81.8M 474s 100K .......... ....... 32.2T=0.001s 474s 474s 2025-02-19 11:07:05 (184 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=4’ saved [120125] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=29&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=29&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 4.59G 474s 50K .......... .......... .......... .......... .......... 48.2M 474s 100K .......... ....... 32.3T=0.001s 474s 474s 2025-02-19 11:07:05 (112 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=29&graph_template_id=4’ saved [120159] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=29&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=29&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 5.65G 474s 50K ...... 12.3T=0s 474s 474s 2025-02-19 11:07:05 (6.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=29&graph_template_id=4’ saved [57971] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=30&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=30&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 4.77G 474s 50K .......... .......... .......... .......... .......... 544M 474s 100K .......... ....... 32.3T=0s 474s 474s 2025-02-19 11:07:05 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=30&graph_template_id=4’ saved [120148] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=30&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=30&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 5.41G 474s 50K ...... 12.3T=0s 474s 474s 2025-02-19 11:07:05 (6.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=30&graph_template_id=4’ saved [57971] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=30&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=30&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 6.36G 474s 50K ...... 12.3T=0s 474s 474s 2025-02-19 11:07:05 (7.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=30&graph_template_id=4’ saved [57971] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=31&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=31&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 4.75G 474s 50K .......... .......... .......... .......... .......... 353M 474s 100K .......... ....... 32.3T=0s 474s 474s 2025-02-19 11:07:05 (772 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=31&graph_template_id=4’ saved [120148] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=31&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=31&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 4.65G 474s 50K ...... 12.3T=0s 474s 474s 2025-02-19 11:07:05 (5.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=31&graph_template_id=4’ saved [57971] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=31&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=31&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 3.98G 474s 50K ...... 12.3T=0s 474s 474s 2025-02-19 11:07:05 (4.51 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=31&graph_template_id=4’ saved [57971] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=32&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=32&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 4.35G 474s 50K .......... .......... .......... .......... .......... 249M 474s 100K .......... ....... 32.3T=0s 474s 474s 2025-02-19 11:07:05 (553 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=32&graph_template_id=4’ saved [120155] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=32&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 302 Found 474s Location: graph_templates.php?header=false&action=template_edit&id=4 [following] 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=4 474s Reusing existing connection to [localhost]:80. 474s HTTP request sent, awaiting response... 200 OK 474s Length: unspecified [text/html] 474s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=32&graph_template_id=4’ 474s 474s 0K .......... .......... .......... .......... .......... 5.15G 474s 50K ...... 12.3T=0s 474s 474s 2025-02-19 11:07:05 (5.83 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=32&graph_template_id=4’ saved [57971] 474s 474s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=4 474s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=4’ 475s 475s 0K .......... .......... .......... 3.88G=0s 475s 475s 2025-02-19 11:07:05 (3.88 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=4’ saved [31297] 475s 475s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=9&graph_template_id=4 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=9&graph_template_id=4’ 475s 475s 0K .......... .......... .......... 5.98G=0s 475s 475s 2025-02-19 11:07:05 (5.98 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=9&graph_template_id=4’ saved [31367] 475s 475s --2025-02-19 11:07:05-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 3.37G 475s 50K .......... .......... .......... .......... .......... 501M 475s 100K .......... ....... 32.2T=0s 475s 475s 2025-02-19 11:07:06 (1.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=1’ saved [120115] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=1&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=1&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 4.08G 475s 50K .......... .......... .......... .......... .......... 559M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=1&graph_template_id=1’ saved [120150] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=1&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=1&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 4.41G 475s 50K ...... 12.3T=0s 475s 475s 2025-02-19 11:07:06 (4.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=1&graph_template_id=1’ saved [57968] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=2&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=2&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 3.80G 475s 50K .......... .......... .......... .......... .......... 520M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=2&graph_template_id=1’ saved [120136] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=2&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=2&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 3.17G 475s 50K ...... 12.3T=0s 475s 475s 2025-02-19 11:07:06 (3.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=2&graph_template_id=1’ saved [57968] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=2&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=2&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 3.20G 475s 50K ...... 12.3T=0s 475s 475s 2025-02-19 11:07:06 (3.63 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=2&graph_template_id=1’ saved [57968] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=3&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=3&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 5.10G 475s 50K .......... .......... .......... .......... .......... 276M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (614 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=3&graph_template_id=1’ saved [120136] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=3&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=3&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 4.25G 475s 50K ...... 12.3T=0s 475s 475s 2025-02-19 11:07:06 (4.81 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=3&graph_template_id=1’ saved [57968] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=3&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=3&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 4.70G 475s 50K ...... 12.3T=0s 475s 475s 2025-02-19 11:07:06 (5.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=3&graph_template_id=1’ saved [57968] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=4&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=4&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 4.36G 475s 50K .......... .......... .......... .......... .......... 476M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1010 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=4&graph_template_id=1’ saved [120143] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=4&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=1 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=4&graph_template_id=1’ 475s 475s 0K .......... .......... .......... .......... .......... 6.14G 475s 50K ...... 12.3T=0s 475s 475s 2025-02-19 11:07:06 (6.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=4&graph_template_id=1’ saved [57968] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=1’ 475s 475s 0K .......... .......... .......... 4.38G=0s 475s 475s 2025-02-19 11:07:06 (4.38 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=1’ saved [31277] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=1&graph_template_id=1 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=1&graph_template_id=1’ 475s 475s 0K .......... .......... .......... 4.12G=0s 475s 475s 2025-02-19 11:07:06 (4.12 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=1&graph_template_id=1’ saved [31336] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=14 475s Connecting to localhost (localhost)|::1|:80... connected. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 2.09G 475s 50K .......... .......... .......... .......... .......... 545M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1019 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=14’ saved [120137] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=110&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=110&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 2.98G 475s 50K .......... .......... .......... .......... .......... 535M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=110&graph_template_id=14’ saved [120177] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=110&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=110&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 4.70G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (5.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=110&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=111&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=111&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 3.21G 475s 50K .......... .......... .......... .......... .......... 543M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=111&graph_template_id=14’ saved [120161] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=111&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=111&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 4.46G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (5.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=111&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=111&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=111&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 6.86G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (8.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=111&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=112&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=112&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 6.38G 475s 50K .......... .......... .......... .......... .......... 570M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=112&graph_template_id=14’ saved [120157] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=112&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=112&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 4.40G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (5.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=112&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=112&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=112&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 3.79G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (4.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=112&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=113&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=113&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 5.20G 475s 50K .......... .......... .......... .......... .......... 461M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (996 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=113&graph_template_id=14’ saved [120157] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=113&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=113&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 5.60G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (6.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=113&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=113&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=113&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 4.83G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (5.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=113&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=114&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=114&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 3.12G 475s 50K .......... .......... .......... .......... .......... 539M 475s 100K .......... ....... 32.3T=0s 475s 475s 2025-02-19 11:07:06 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=114&graph_template_id=14’ saved [120164] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=114&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=114&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 4.51G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (5.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=114&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=114&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 302 Found 475s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 475s Reusing existing connection to [localhost]:80. 475s HTTP request sent, awaiting response... 200 OK 475s Length: unspecified [text/html] 475s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=114&graph_template_id=14’ 475s 475s 0K .......... .......... .......... .......... .......... 4.36G 475s 50K ........ 16.6T=0s 475s 475s 2025-02-19 11:07:06 (5.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=114&graph_template_id=14’ saved [60318] 475s 475s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=115&graph_template_id=14 475s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=115&graph_template_id=14’ 476s 476s 0K .......... .......... .......... .......... .......... 3.16G 476s 50K .......... .......... .......... .......... .......... 300M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:06 (644 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=115&graph_template_id=14’ saved [120168] 476s 476s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=115&graph_template_id=14 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 476s --2025-02-19 11:07:06-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=115&graph_template_id=14’ 476s 476s 0K .......... .......... .......... .......... .......... 3.79G 476s 50K ........ 16.6T=0s 476s 476s 2025-02-19 11:07:07 (4.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=115&graph_template_id=14’ saved [60318] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=14 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=14’ 476s 476s 0K .......... .......... .......... . 6.27G=0s 476s 476s 2025-02-19 11:07:07 (6.27 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=14’ saved [32051] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=23&graph_template_id=14 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=23&graph_template_id=14’ 476s 476s 0K .......... .......... .......... . 6.63G=0s 476s 476s 2025-02-19 11:07:07 (6.63 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=23&graph_template_id=14’ saved [32137] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 3.57G 476s 50K .......... .......... .......... .......... .......... 158M 476s 100K .......... ....... 32.2T=0s 476s 476s 2025-02-19 11:07:07 (356 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=15’ saved [120125] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=116&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=116&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 5.84G 476s 50K .......... .......... .......... .......... .......... 163M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (373 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=116&graph_template_id=15’ saved [120165] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=116&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=116&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 5.91G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (6.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=116&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=117&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=117&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 5.25G 476s 50K .......... .......... .......... .......... .......... 130M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (299 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=117&graph_template_id=15’ saved [120149] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=117&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=117&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 4.54G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (5.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=117&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=117&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=117&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 2.34G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (2.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=117&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=118&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=118&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 2.61G 476s 50K .......... .......... .......... .......... .......... 377M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (775 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=118&graph_template_id=15’ saved [120145] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=118&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=118&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 3.05G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (3.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=118&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=118&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=118&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 4.46G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (5.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=118&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=119&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=119&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 5.16G 476s 50K .......... .......... .......... .......... .......... 652M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (1.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=119&graph_template_id=15’ saved [120145] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=119&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=119&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 3.86G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (4.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=119&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=119&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=119&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 6.41G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (7.54 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=119&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=120&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=120&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 4.20G 476s 50K .......... .......... .......... .......... .......... 617M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (1.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=120&graph_template_id=15’ saved [120152] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=120&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=120&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 5.05G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (5.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=120&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=120&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=120&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 5.50G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (6.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=120&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=121&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=121&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 4.99G 476s 50K .......... .......... .......... .......... .......... 650M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (1.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=121&graph_template_id=15’ saved [120156] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=121&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=121&graph_template_id=15’ 476s 476s 0K .......... .......... .......... .......... .......... 2.58G 476s 50K ........ 16.3T=0s 476s 476s 2025-02-19 11:07:07 (3.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=121&graph_template_id=15’ saved [60185] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=15’ 476s 476s 0K .......... .......... .......... . 3.88G=0s 476s 476s 2025-02-19 11:07:07 (3.88 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=15’ saved [32047] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=24&graph_template_id=15 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=24&graph_template_id=15’ 476s 476s 0K .......... .......... .......... . 5.09G=0s 476s 476s 2025-02-19 11:07:07 (5.09 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=24&graph_template_id=15’ saved [32129] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=12’ 476s 476s 0K .......... .......... .......... .......... .......... 2.65G 476s 50K .......... .......... .......... .......... .......... 159M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (351 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=12’ saved [120132] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=89&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=89&graph_template_id=12’ 476s 476s 0K .......... .......... .......... .......... .......... 4.17G 476s 50K .......... .......... .......... .......... .......... 417M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (891 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=89&graph_template_id=12’ saved [120169] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=89&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=89&graph_template_id=12’ 476s 476s 0K .......... .......... .......... .......... .......... 2.94G 476s 50K .......... ........ 42.7M=0s 476s 476s 2025-02-19 11:07:07 (154 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=89&graph_template_id=12’ saved [69819] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=90&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=90&graph_template_id=12’ 476s 476s 0K .......... .......... .......... .......... .......... 5.14G 476s 50K .......... .......... .......... .......... .......... 136M 476s 100K .......... ....... 32.3T=0s 476s 476s 2025-02-19 11:07:07 (312 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=90&graph_template_id=12’ saved [120155] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=90&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=90&graph_template_id=12’ 476s 476s 0K .......... .......... .......... .......... .......... 5.25G 476s 50K .......... ........ 50.9M=0s 476s 476s 2025-02-19 11:07:07 (186 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=90&graph_template_id=12’ saved [69819] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=90&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 302 Found 476s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 476s Reusing existing connection to [localhost]:80. 476s HTTP request sent, awaiting response... 200 OK 476s Length: unspecified [text/html] 476s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=90&graph_template_id=12’ 476s 476s 0K .......... .......... .......... .......... .......... 3.95G 476s 50K .......... ........ 74.5M=0s 476s 476s 2025-02-19 11:07:07 (266 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=90&graph_template_id=12’ saved [69819] 476s 476s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=91&graph_template_id=12 476s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=91&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 3.65G 477s 50K .......... .......... .......... .......... .......... 190M 477s 100K .......... ....... 32.3T=0s 477s 477s 2025-02-19 11:07:07 (425 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=91&graph_template_id=12’ saved [120151] 477s 477s --2025-02-19 11:07:07-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=91&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=91&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.53G 477s 50K .......... ........ 185M=0s 477s 477s 2025-02-19 11:07:08 (625 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=91&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=91&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=91&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 3.04G 477s 50K .......... ........ 186M=0s 477s 477s 2025-02-19 11:07:08 (599 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=91&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=92&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=92&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.87G 477s 50K .......... .......... .......... .......... .......... 318M 477s 100K .......... ....... 32.3T=0s 477s 477s 2025-02-19 11:07:08 (701 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=92&graph_template_id=12’ saved [120151] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=92&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=92&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 3.47G 477s 50K .......... ........ 207M=0s 477s 477s 2025-02-19 11:07:08 (668 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=92&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=92&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=92&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 5.17G 477s 50K .......... ........ 236M=0s 477s 477s 2025-02-19 11:07:08 (788 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=92&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=93&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=93&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 3.55G 477s 50K .......... .......... .......... .......... .......... 623M 477s 100K .......... ....... 32.3T=0s 477s 477s 2025-02-19 11:07:08 (1.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=93&graph_template_id=12’ saved [120158] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=93&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=93&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.30G 477s 50K .......... ........ 129M=0s 477s 477s 2025-02-19 11:07:08 (448 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=93&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=93&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=93&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.55G 477s 50K .......... ........ 239M=0s 477s 477s 2025-02-19 11:07:08 (787 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=93&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=94&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=94&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 6.84G 477s 50K .......... .......... .......... .......... .......... 358M 477s 100K .......... ....... 32.3T=0s 477s 477s 2025-02-19 11:07:08 (800 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=94&graph_template_id=12’ saved [120162] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=94&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=94&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.88G 477s 50K .......... ........ 257M=0s 477s 477s 2025-02-19 11:07:08 (845 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=94&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=94&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=94&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.24G 477s 50K .......... ........ 219M=0s 477s 477s 2025-02-19 11:07:08 (720 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=94&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=95&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=95&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 3.93G 477s 50K .......... .......... .......... .......... .......... 573M 477s 100K .......... ....... 32.3T=0s 477s 477s 2025-02-19 11:07:08 (1.15 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=95&graph_template_id=12’ saved [120154] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=95&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=95&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.62G 477s 50K .......... ........ 205M=0s 477s 477s 2025-02-19 11:07:08 (686 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=95&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=95&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=95&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.56G 477s 50K .......... ........ 184M=0s 477s 477s 2025-02-19 11:07:08 (622 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=95&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=96&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=96&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 6.93G 477s 50K .......... .......... .......... .......... .......... 502M 477s 100K .......... ....... 32.4T=0s 477s 477s 2025-02-19 11:07:08 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=96&graph_template_id=12’ saved [120200] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=96&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=96&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.82G 477s 50K .......... ........ 52.2M=0s 477s 477s 2025-02-19 11:07:08 (190 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=96&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=96&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=96&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.25G 477s 50K .......... ........ 45.1M=0s 477s 477s 2025-02-19 11:07:08 (164 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=96&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=97&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=97&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 6.14G 477s 50K .......... .......... .......... .......... .......... 129M 477s 100K .......... ....... 32.4T=0s 477s 477s 2025-02-19 11:07:08 (297 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=97&graph_template_id=12’ saved [120201] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=97&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=97&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.72G 477s 50K .......... ........ 191M=0s 477s 477s 2025-02-19 11:07:08 (645 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=97&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=97&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Connecting to localhost (localhost)|::1|:80... connected. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=97&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.31G 477s 50K .......... ........ 233M=0s 477s 477s 2025-02-19 11:07:08 (763 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=97&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=98&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=98&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 5.68G 477s 50K .......... .......... .......... .......... .......... 612M 477s 100K .......... ....... 32.4T=0s 477s 477s 2025-02-19 11:07:08 (1.27 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=98&graph_template_id=12’ saved [120200] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=98&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=98&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 5.15G 477s 50K .......... ........ 297M=0s 477s 477s 2025-02-19 11:07:08 (965 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=98&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=98&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=98&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 4.52G 477s 50K .......... ........ 240M=0s 477s 477s 2025-02-19 11:07:08 (787 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=98&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=99&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=99&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 5.61G 477s 50K .......... .......... .......... .......... .......... 497M 477s 100K .......... ....... 32.4T=0s 477s 477s 2025-02-19 11:07:08 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=99&graph_template_id=12’ saved [120201] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=99&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 200 OK 477s Length: unspecified [text/html] 477s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=99&graph_template_id=12’ 477s 477s 0K .......... .......... .......... .......... .......... 6.62G 477s 50K .......... ........ 101M=0s 477s 477s 2025-02-19 11:07:08 (363 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=99&graph_template_id=12’ saved [69819] 477s 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=99&graph_template_id=12 477s Reusing existing connection to [localhost]:80. 477s HTTP request sent, awaiting response... 302 Found 477s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 477s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 477s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=99&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 5.90G 478s 50K .......... ........ 237M=0s 478s 478s 2025-02-19 11:07:08 (803 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=99&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=100&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=100&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 4.58G 478s 50K .......... .......... .......... .......... .......... 576M 478s 100K .......... ....... 32.4T=0s 478s 478s 2025-02-19 11:07:08 (1.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=100&graph_template_id=12’ saved [120201] 478s 478s --2025-02-19 11:07:08-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=100&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=100&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 4.09G 478s 50K .......... ........ 211M=0s 478s 478s 2025-02-19 11:07:09 (696 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=100&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=100&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=100&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 4.56G 478s 50K .......... ........ 193M=0s 478s 478s 2025-02-19 11:07:09 (649 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=100&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=101&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=101&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 3.62G 478s 50K .......... .......... .......... .......... .......... 586M 478s 100K .......... ....... 32.4T=0s 478s 478s 2025-02-19 11:07:09 (1.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=101&graph_template_id=12’ saved [120203] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=101&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=101&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 3.75G 478s 50K .......... ........ 210M=0s 478s 478s 2025-02-19 11:07:09 (685 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=101&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=101&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=101&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 3.33G 478s 50K .......... ........ 185M=0s 478s 478s 2025-02-19 11:07:09 (605 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=101&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=102&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=102&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 3.80G 478s 50K .......... .......... .......... .......... .......... 504M 478s 100K .......... ....... 32.4T=0s 478s 478s 2025-02-19 11:07:09 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=102&graph_template_id=12’ saved [120199] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=102&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=102&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 5.44G 478s 50K .......... ........ 162M=0s 478s 478s 2025-02-19 11:07:09 (564 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=102&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=102&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=102&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 6.05G 478s 50K .......... ........ 160M=0s 478s 478s 2025-02-19 11:07:09 (559 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=102&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=103&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=103&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 4.50G 478s 50K .......... .......... .......... .......... .......... 431M 478s 100K .......... ....... 32.4T=0s 478s 478s 2025-02-19 11:07:09 (925 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=103&graph_template_id=12’ saved [120201] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=103&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=103&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .......... .......... 4.67G 478s 50K .......... ........ 230M=0s 478s 478s 2025-02-19 11:07:09 (760 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=103&graph_template_id=12’ saved [69819] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .... 5.71G=0s 478s 478s 2025-02-19 11:07:09 (5.71 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=12’ saved [35382] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=21&graph_template_id=12 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=21&graph_template_id=12’ 478s 478s 0K .......... .......... .......... .... 4.69G=0s 478s 478s 2025-02-19 11:07:09 (4.69 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=21&graph_template_id=12’ saved [35530] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 3.76G 478s 50K .......... .......... .......... .......... .......... 614M 478s 100K .......... ....... 32.2T=0s 478s 478s 2025-02-19 11:07:09 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=13’ saved [120120] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=104&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=104&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.20G 478s 50K .......... .......... .......... .......... .......... 624M 478s 100K .......... ....... 32.3T=0s 478s 478s 2025-02-19 11:07:09 (1.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=104&graph_template_id=13’ saved [120158] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=104&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=104&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 7.98G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (9.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=104&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=105&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=105&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.46G 478s 50K .......... .......... .......... .......... .......... 672M 478s 100K .......... ....... 32.3T=0s 478s 478s 2025-02-19 11:07:09 (1.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=105&graph_template_id=13’ saved [120144] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=105&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=105&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 8.02G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (9.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=105&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=105&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=105&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.47G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (7.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=105&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=106&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=106&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 5.53G 478s 50K .......... .......... .......... .......... .......... 664M 478s 100K .......... ....... 32.3T=0s 478s 478s 2025-02-19 11:07:09 (1.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=106&graph_template_id=13’ saved [120140] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=106&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=106&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 7.84G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (9.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=106&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=106&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=106&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.35G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (7.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=106&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=107&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=107&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.28G 478s 50K .......... .......... .......... .......... .......... 463M 478s 100K .......... ....... 32.3T=0s 478s 478s 2025-02-19 11:07:09 (1013 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=107&graph_template_id=13’ saved [120140] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=107&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=107&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.63G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (7.79 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=107&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=107&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=107&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.23G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (7.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=107&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=108&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=108&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 7.00G 478s 50K .......... .......... .......... .......... .......... 143M 478s 100K .......... ....... 32.3T=0s 478s 478s 2025-02-19 11:07:09 (329 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=108&graph_template_id=13’ saved [120147] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=108&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=108&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 7.38G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (8.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=108&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=108&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=108&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.40G 478s 50K ........ 16.3T=0s 478s 478s 2025-02-19 11:07:09 (7.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=108&graph_template_id=13’ saved [60187] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=109&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 200 OK 478s Length: unspecified [text/html] 478s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=109&graph_template_id=13’ 478s 478s 0K .......... .......... .......... .......... .......... 6.37G 478s 50K .......... .......... .......... .......... .......... 273M 478s 100K .......... ....... 32.3T=0s 478s 478s 2025-02-19 11:07:09 (614 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=109&graph_template_id=13’ saved [120151] 478s 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=109&graph_template_id=13 478s Reusing existing connection to [localhost]:80. 478s HTTP request sent, awaiting response... 302 Found 478s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 478s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 478s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=109&graph_template_id=13’ 479s 479s 0K .......... .......... .......... .......... .......... 6.71G 479s 50K ........ 16.3T=0s 479s 479s 2025-02-19 11:07:09 (7.89 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=109&graph_template_id=13’ saved [60187] 479s 479s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=13 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=13’ 479s 479s 0K .......... .......... .......... . 6.54G=0s 479s 479s 2025-02-19 11:07:09 (6.54 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=13’ saved [32045] 479s 479s --2025-02-19 11:07:09-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=22&graph_template_id=13 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=22&graph_template_id=13’ 479s 479s 0K .......... .......... .......... . 2.57G=0s 479s 479s 2025-02-19 11:07:10 (2.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=22&graph_template_id=13’ saved [32126] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 4.41G 479s 50K .......... .......... .......... .......... .......... 144M 479s 100K .......... ....... 32.2T=0s 479s 479s 2025-02-19 11:07:10 (327 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=11’ saved [120119] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=74&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=74&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.26G 479s 50K .......... .......... .......... .......... .......... 542M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (1.15 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=74&graph_template_id=11’ saved [120157] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=74&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=74&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 2.99G 479s 50K .......... ........ 54.2M=0s 479s 479s 2025-02-19 11:07:10 (194 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=74&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=75&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=75&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.49G 479s 50K .......... .......... .......... .......... .......... 138M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (316 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=75&graph_template_id=11’ saved [120142] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=75&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=75&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 4.69G 479s 50K .......... ........ 49.3M=0s 479s 479s 2025-02-19 11:07:10 (180 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=75&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=75&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=75&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 4.78G 479s 50K .......... ........ 192M=0s 479s 479s 2025-02-19 11:07:10 (652 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=75&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=76&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=76&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.93G 479s 50K .......... .......... .......... .......... .......... 470M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (1023 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=76&graph_template_id=11’ saved [120138] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=76&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=76&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 4.56G 479s 50K .......... ........ 48.4M=0s 479s 479s 2025-02-19 11:07:10 (177 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=76&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=76&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=76&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.27G 479s 50K .......... ........ 54.6M=0s 479s 479s 2025-02-19 11:07:10 (200 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=76&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=77&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=77&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.47G 479s 50K .......... .......... .......... .......... .......... 178M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (405 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=77&graph_template_id=11’ saved [120138] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=77&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=77&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 3.99G 479s 50K .......... ........ 170M=0s 479s 479s 2025-02-19 11:07:10 (572 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=77&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=77&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=77&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.49G 479s 50K .......... ........ 191M=0s 479s 479s 2025-02-19 11:07:10 (667 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=77&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=78&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=78&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.54G 479s 50K .......... .......... .......... .......... .......... 331M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (741 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=78&graph_template_id=11’ saved [120145] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=78&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=78&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 4.24G 479s 50K .......... ........ 49.9M=0s 479s 479s 2025-02-19 11:07:10 (182 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=78&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=78&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=78&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.46G 479s 50K .......... ........ 52.6M=0s 479s 479s 2025-02-19 11:07:10 (193 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=78&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=79&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=79&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.23G 479s 50K .......... .......... .......... .......... .......... 141M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (323 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=79&graph_template_id=11’ saved [120149] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=79&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=79&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.46G 479s 50K .......... ........ 77.4M=0s 479s 479s 2025-02-19 11:07:10 (282 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=79&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=79&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=79&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.37G 479s 50K .......... ........ 137M=0s 479s 479s 2025-02-19 11:07:10 (483 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=79&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=80&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=80&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 7.02G 479s 50K .......... .......... .......... .......... .......... 285M 479s 100K .......... ....... 32.3T=0s 479s 479s 2025-02-19 11:07:10 (643 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=80&graph_template_id=11’ saved [120141] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=80&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=80&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.13G 479s 50K .......... ........ 50.3M=0s 479s 479s 2025-02-19 11:07:10 (185 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=80&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=80&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=80&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.10G 479s 50K .......... ........ 51.4M=0s 479s 479s 2025-02-19 11:07:10 (189 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=80&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=81&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=81&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.13G 479s 50K .......... .......... .......... .......... .......... 139M 479s 100K .......... ....... 32.4T=0s 479s 479s 2025-02-19 11:07:10 (320 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=81&graph_template_id=11’ saved [120187] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=81&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=81&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.94G 479s 50K .......... ........ 70.1M=0s 479s 479s 2025-02-19 11:07:10 (256 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=81&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=81&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=81&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.07G 479s 50K .......... ........ 187M=0s 479s 479s 2025-02-19 11:07:10 (650 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=81&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=82&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=82&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 6.87G 479s 50K .......... .......... .......... .......... .......... 410M 479s 100K .......... ....... 32.4T=0s 479s 479s 2025-02-19 11:07:10 (909 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=82&graph_template_id=11’ saved [120188] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=82&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Connecting to localhost (localhost)|::1|:80... connected. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=82&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 736M 479s 50K .......... ........ 416M=0s 479s 479s 2025-02-19 11:07:10 (611 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=82&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=82&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=82&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 3.78G 479s 50K .......... ........ 240M=0s 479s 479s 2025-02-19 11:07:10 (770 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=82&graph_template_id=11’ saved [69759] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=83&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 200 OK 479s Length: unspecified [text/html] 479s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=83&graph_template_id=11’ 479s 479s 0K .......... .......... .......... .......... .......... 5.12G 479s 50K .......... .......... .......... .......... .......... 700M 479s 100K .......... ....... 32.4T=0s 479s 479s 2025-02-19 11:07:10 (1.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=83&graph_template_id=11’ saved [120187] 479s 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=83&graph_template_id=11 479s Reusing existing connection to [localhost]:80. 479s HTTP request sent, awaiting response... 302 Found 479s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 479s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 479s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=83&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 5.76G 480s 50K .......... ........ 255M=0s 480s 480s 2025-02-19 11:07:10 (856 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=83&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=83&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:10-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=83&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 3.31G 480s 50K .......... ........ 173M=0s 480s 480s 2025-02-19 11:07:11 (569 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=83&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=84&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=84&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 3.83G 480s 50K .......... .......... .......... .......... .......... 469M 480s 100K .......... ....... 32.4T=0s 480s 480s 2025-02-19 11:07:11 (983 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=84&graph_template_id=11’ saved [120188] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=84&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=84&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 3.78G 480s 50K .......... ........ 106M=0s 480s 480s 2025-02-19 11:07:11 (371 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=84&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=84&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=84&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 3.38G 480s 50K .......... ........ 192M=0s 480s 480s 2025-02-19 11:07:11 (626 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=84&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=85&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=85&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 7.05G 480s 50K .......... .......... .......... .......... .......... 547M 480s 100K .......... ....... 32.4T=0s 480s 480s 2025-02-19 11:07:11 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=85&graph_template_id=11’ saved [120187] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=85&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=85&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 6.25G 480s 50K .......... ........ 255M=0s 480s 480s 2025-02-19 11:07:11 (862 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=85&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=85&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=85&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 5.85G 480s 50K .......... ........ 231M=0s 480s 480s 2025-02-19 11:07:11 (783 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=85&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=86&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=86&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 6.52G 480s 50K .......... .......... .......... .......... .......... 658M 480s 100K .......... ....... 32.4T=0s 480s 480s 2025-02-19 11:07:11 (1.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=86&graph_template_id=11’ saved [120189] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=86&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=86&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 6.26G 480s 50K .......... ........ 230M=0s 480s 480s 2025-02-19 11:07:11 (788 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=86&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=86&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=86&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 6.49G 480s 50K .......... ........ 257M=0s 480s 480s 2025-02-19 11:07:11 (872 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=86&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=87&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=87&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 4.89G 480s 50K .......... .......... .......... .......... .......... 525M 480s 100K .......... ....... 32.4T=0s 480s 480s 2025-02-19 11:07:11 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=87&graph_template_id=11’ saved [120185] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=87&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=87&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 5.49G 480s 50K .......... ........ 246M=0s 480s 480s 2025-02-19 11:07:11 (824 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=87&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=87&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=87&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 7.79G 480s 50K .......... ........ 115M=0s 480s 480s 2025-02-19 11:07:11 (414 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=87&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=88&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=88&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 7.23G 480s 50K .......... .......... .......... .......... .......... 385M 480s 100K .......... ....... 32.4T=0s 480s 480s 2025-02-19 11:07:11 (858 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=88&graph_template_id=11’ saved [120187] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=88&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=88&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .......... .......... 6.38G 480s 50K .......... ........ 237M=0s 480s 480s 2025-02-19 11:07:11 (809 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=88&graph_template_id=11’ saved [69759] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .... 7.11G=0s 480s 480s 2025-02-19 11:07:11 (7.11 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=11’ saved [35359] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=20&graph_template_id=11 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=20&graph_template_id=11’ 480s 480s 0K .......... .......... .......... .... 6.25G=0s 480s 480s 2025-02-19 11:07:11 (6.25 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=20&graph_template_id=11’ saved [35507] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 4.25G 480s 50K .......... .......... .......... .......... .......... 582M 480s 100K .......... ....... 32.2T=0s 480s 480s 2025-02-19 11:07:11 (1.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=10’ saved [120123] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=59&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=59&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 3.93G 480s 50K .......... .......... .......... .......... .......... 518M 480s 100K .......... ....... 32.3T=0s 480s 480s 2025-02-19 11:07:11 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=59&graph_template_id=10’ saved [120164] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=59&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=59&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 3.47G 480s 50K .......... ........ 211M=0s 480s 480s 2025-02-19 11:07:11 (682 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=59&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=60&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=60&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 5.28G 480s 50K .......... .......... .......... .......... .......... 616M 480s 100K .......... ....... 32.3T=0s 480s 480s 2025-02-19 11:07:11 (1.27 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=60&graph_template_id=10’ saved [120146] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=60&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=60&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 7.02G 480s 50K .......... ........ 136M=0s 480s 480s 2025-02-19 11:07:11 (486 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=60&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=60&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=60&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 6.24G 480s 50K .......... ........ 245M=0s 480s 480s 2025-02-19 11:07:11 (832 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=60&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=61&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=61&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 5.96G 480s 50K .......... .......... .......... .......... .......... 381M 480s 100K .......... ....... 32.3T=0s 480s 480s 2025-02-19 11:07:11 (842 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=61&graph_template_id=10’ saved [120142] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=61&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=61&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 977M 480s 50K .......... ........ 247M=0s 480s 480s 2025-02-19 11:07:11 (546 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=61&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=61&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=61&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 7.56G 480s 50K .......... ........ 136M=0s 480s 480s 2025-02-19 11:07:11 (486 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=61&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=62&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=62&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 7.64G 480s 50K .......... .......... .......... .......... .......... 328M 480s 100K .......... ....... 32.3T=0s 480s 480s 2025-02-19 11:07:11 (738 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=62&graph_template_id=10’ saved [120142] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=62&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=62&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 6.30G 480s 50K .......... ........ 178M=0s 480s 480s 2025-02-19 11:07:11 (622 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=62&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=62&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 302 Found 480s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=62&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 4.91G 480s 50K .......... ........ 252M=0s 480s 480s 2025-02-19 11:07:11 (831 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=62&graph_template_id=10’ saved [69800] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=63&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 480s HTTP request sent, awaiting response... 200 OK 480s Length: unspecified [text/html] 480s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=63&graph_template_id=10’ 480s 480s 0K .......... .......... .......... .......... .......... 6.86G 480s 50K .......... .......... .......... .......... .......... 654M 480s 100K .......... ....... 32.3T=0s 480s 480s 2025-02-19 11:07:11 (1.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=63&graph_template_id=10’ saved [120149] 480s 480s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=63&graph_template_id=10 480s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=63&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.64G 481s 50K .......... ........ 227M=0s 481s 481s 2025-02-19 11:07:11 (752 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=63&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:11-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=63&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=63&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.64G 481s 50K .......... ........ 248M=0s 481s 481s 2025-02-19 11:07:12 (832 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=63&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=64&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=64&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.86G 481s 50K .......... .......... .......... .......... .......... 659M 481s 100K .......... ....... 32.3T=0s 481s 481s 2025-02-19 11:07:12 (1.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=64&graph_template_id=10’ saved [120153] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=64&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=64&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.16G 481s 50K .......... ........ 227M=0s 481s 481s 2025-02-19 11:07:12 (742 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=64&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=64&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=64&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.82G 481s 50K .......... ........ 246M=0s 481s 481s 2025-02-19 11:07:12 (829 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=64&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=65&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=65&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.75G 481s 50K .......... .......... .......... .......... .......... 566M 481s 100K .......... ....... 32.4T=0s 481s 481s 2025-02-19 11:07:12 (1.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=65&graph_template_id=10’ saved [120187] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=65&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=65&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.14G 481s 50K .......... ........ 258M=0s 481s 481s 2025-02-19 11:07:12 (854 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=65&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=65&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=65&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 7.36G 481s 50K .......... ........ 207M=0s 481s 481s 2025-02-19 11:07:12 (722 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=65&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=66&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=66&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.12G 481s 50K .......... .......... .......... .......... .......... 622M 481s 100K .......... ....... 32.4T=0s 481s 481s 2025-02-19 11:07:12 (1.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=66&graph_template_id=10’ saved [120188] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=66&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=66&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.33G 481s 50K .......... ........ 145M=0s 481s 481s 2025-02-19 11:07:12 (506 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=66&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=66&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=66&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.28G 481s 50K .......... ........ 220M=0s 481s 481s 2025-02-19 11:07:12 (726 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=66&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=67&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=67&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.59G 481s 50K .......... .......... .......... .......... .......... 576M 481s 100K .......... ....... 32.4T=0s 481s 481s 2025-02-19 11:07:12 (1.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=67&graph_template_id=10’ saved [120186] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=67&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=67&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 6.78G 481s 50K .......... ........ 139M=0s 481s 481s 2025-02-19 11:07:12 (495 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=67&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=67&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=67&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.66G 481s 50K .......... ........ 227M=0s 481s 481s 2025-02-19 11:07:12 (753 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=67&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=68&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=68&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 6.42G 481s 50K .......... .......... .......... .......... .......... 703M 481s 100K .......... ....... 32.4T=0s 481s 481s 2025-02-19 11:07:12 (1.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=68&graph_template_id=10’ saved [120188] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=68&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=68&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 6.10G 481s 50K .......... ........ 141M=0s 481s 481s 2025-02-19 11:07:12 (497 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=68&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=68&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=68&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 3.94G 481s 50K .......... ........ 245M=0s 481s 481s 2025-02-19 11:07:12 (789 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=68&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=69&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=69&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.48G 481s 50K .......... .......... .......... .......... .......... 743M 481s 100K .......... ....... 32.3T=0s 481s 481s 2025-02-19 11:07:12 (1.50 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=69&graph_template_id=10’ saved [120146] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=69&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=69&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 4.78G 481s 50K .......... ........ 191M=0s 481s 481s 2025-02-19 11:07:12 (646 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=69&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=69&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=69&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.46G 481s 50K .......... ........ 213M=0s 481s 481s 2025-02-19 11:07:12 (723 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=69&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=70&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=70&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 6.05G 481s 50K .......... .......... .......... .......... .......... 631M 481s 100K .......... ....... 32.4T=0s 481s 481s 2025-02-19 11:07:12 (1.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=70&graph_template_id=10’ saved [120186] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=70&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=70&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 3.80G 481s 50K .......... ........ 193M=0s 481s 481s 2025-02-19 11:07:12 (638 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=70&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=70&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=70&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 3.97G 481s 50K .......... ........ 166M=0s 481s 481s 2025-02-19 11:07:12 (559 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=70&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=71&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=71&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 7.61G 481s 50K .......... .......... .......... .......... .......... 397M 481s 100K .......... ....... 32.4T=0s 481s 481s 2025-02-19 11:07:12 (887 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=71&graph_template_id=10’ saved [120188] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=71&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=71&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 7.36G 481s 50K .......... ........ 45.0M=0s 481s 481s 2025-02-19 11:07:12 (166 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=71&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=71&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=71&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.79G 481s 50K .......... ........ 140M=0s 481s 481s 2025-02-19 11:07:12 (495 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=71&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=72&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=72&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 6.99G 481s 50K .......... .......... .......... .......... .......... 347M 481s 100K .......... ....... 32.3T=0s 481s 481s 2025-02-19 11:07:12 (777 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=72&graph_template_id=10’ saved [120184] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=72&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 302 Found 481s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 481s Reusing existing connection to [localhost]:80. 481s HTTP request sent, awaiting response... 200 OK 481s Length: unspecified [text/html] 481s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=72&graph_template_id=10’ 481s 481s 0K .......... .......... .......... .......... .......... 5.67G 481s 50K .......... ........ 46.9M=0s 481s 481s 2025-02-19 11:07:12 (172 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=72&graph_template_id=10’ saved [69800] 481s 481s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=72&graph_template_id=10 481s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 482s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 482s Connecting to localhost (localhost)|::1|:80... connected. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=72&graph_template_id=10’ 482s 482s 0K .......... .......... .......... .......... .......... 220M 482s 50K .......... ........ 33.8T=0s 482s 482s 2025-02-19 11:07:12 (300 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=72&graph_template_id=10’ saved [69800] 482s 482s --2025-02-19 11:07:12-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=73&graph_template_id=10 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=73&graph_template_id=10’ 482s 482s 0K .......... .......... .......... .......... .......... 169M 482s 50K .......... .......... .......... .......... .......... 93.1T 482s 100K .......... ....... 55.7M=0.001s 482s 482s 2025-02-19 11:07:13 (193 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=73&graph_template_id=10’ saved [120186] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=73&graph_template_id=10 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=73&graph_template_id=10’ 482s 482s 0K .......... .......... .......... .......... .......... 2.95G 482s 50K .......... ........ 177M=0s 482s 482s 2025-02-19 11:07:13 (572 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=73&graph_template_id=10’ saved [69800] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=10 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=10’ 482s 482s 0K .......... .......... .......... .... 4.50G=0s 482s 482s 2025-02-19 11:07:13 (4.50 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=10’ saved [35362] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=19&graph_template_id=10 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=19&graph_template_id=10’ 482s 482s 0K .......... .......... .......... .... 6.22G=0s 482s 482s 2025-02-19 11:07:13 (6.22 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=19&graph_template_id=10’ saved [35508] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 4.76G 482s 50K .......... .......... .......... .......... .......... 109M 482s 100K .......... ....... 32.3T=0s 482s 482s 2025-02-19 11:07:13 (250 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=49’ saved [120145] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=445&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=445&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 1.74G 482s 50K .......... .......... .......... .......... .......... 255M 482s 100K .......... ....... 32.4T=0s 482s 482s 2025-02-19 11:07:13 (524 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=445&graph_template_id=49’ saved [120185] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=445&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=445&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 5.35G 482s 50K ...... 12.7T=0s 482s 482s 2025-02-19 11:07:13 (6.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=445&graph_template_id=49’ saved [58175] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=446&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=446&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 5.83G 482s 50K .......... .......... .......... .......... .......... 160M 482s 100K .......... ....... 32.3T=0s 482s 482s 2025-02-19 11:07:13 (366 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=446&graph_template_id=49’ saved [120169] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=446&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=446&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 6.38G 482s 50K ...... 12.7T=0s 482s 482s 2025-02-19 11:07:13 (7.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=446&graph_template_id=49’ saved [58175] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=446&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=446&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 8.57G 482s 50K ...... 12.7T=0s 482s 482s 2025-02-19 11:07:13 (9.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=446&graph_template_id=49’ saved [58175] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=447&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=447&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 5.95G 482s 50K .......... .......... .......... .......... .......... 629M 482s 100K .......... ....... 32.3T=0s 482s 482s 2025-02-19 11:07:13 (1.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=447&graph_template_id=49’ saved [120169] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=447&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=447&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 7.87G 482s 50K ...... 12.7T=0s 482s 482s 2025-02-19 11:07:13 (8.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=447&graph_template_id=49’ saved [58175] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=447&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=447&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 6.03G 482s 50K ...... 12.7T=0s 482s 482s 2025-02-19 11:07:13 (6.85 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=447&graph_template_id=49’ saved [58175] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=448&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=448&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 4.69G 482s 50K .......... .......... .......... .......... .......... 582M 482s 100K .......... ....... 32.3T=0s 482s 482s 2025-02-19 11:07:13 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=448&graph_template_id=49’ saved [120176] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=448&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=49 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=448&graph_template_id=49’ 482s 482s 0K .......... .......... .......... .......... .......... 7.14G 482s 50K ...... 12.7T=0s 482s 482s 2025-02-19 11:07:13 (8.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=448&graph_template_id=49’ saved [58175] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=49’ 482s 482s 0K .......... .......... .......... 7.53G=0s 482s 482s 2025-02-19 11:07:13 (7.53 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=49’ saved [31325] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=88&graph_template_id=49 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=88&graph_template_id=49’ 482s 482s 0K .......... .......... .......... 6.95G=0s 482s 482s 2025-02-19 11:07:13 (6.95 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=88&graph_template_id=49’ saved [31401] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 4.68G 482s 50K .......... .......... .......... .......... .......... 679M 482s 100K .......... ....... 32.4T=0s 482s 482s 2025-02-19 11:07:13 (1.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=50’ saved [120217] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=449&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=449&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.78G 482s 50K .......... .......... .......... .......... .......... 686M 482s 100K .......... ....... 32.5T=0s 482s 482s 2025-02-19 11:07:13 (1.41 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=449&graph_template_id=50’ saved [120252] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=449&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=449&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.31G 482s 50K .......... ..... 215M=0s 482s 482s 2025-02-19 11:07:13 (815 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=449&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=450&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=450&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.88G 482s 50K .......... .......... .......... .......... .......... 616M 482s 100K .......... ....... 32.5T=0s 482s 482s 2025-02-19 11:07:13 (1.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=450&graph_template_id=50’ saved [120241] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=450&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=450&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.34G 482s 50K .......... ..... 84.9M=0s 482s 482s 2025-02-19 11:07:13 (346 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=450&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=450&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=450&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.94G 482s 50K .......... ..... 122M=0s 482s 482s 2025-02-19 11:07:13 (491 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=450&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=451&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=451&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.43G 482s 50K .......... .......... .......... .......... .......... 603M 482s 100K .......... ....... 32.5T=0s 482s 482s 2025-02-19 11:07:13 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=451&graph_template_id=50’ saved [120241] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=451&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=451&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 6.14G 482s 50K .......... ..... 212M=0s 482s 482s 2025-02-19 11:07:13 (817 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=451&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=451&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=451&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 6.62G 482s 50K .......... ..... 169M=0s 482s 482s 2025-02-19 11:07:13 (670 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=451&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=452&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=452&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 6.43G 482s 50K .......... .......... .......... .......... .......... 538M 482s 100K .......... ....... 32.5T=0s 482s 482s 2025-02-19 11:07:13 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=452&graph_template_id=50’ saved [120248] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=452&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=452&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 6.01G 482s 50K .......... ..... 177M=0s 482s 482s 2025-02-19 11:07:13 (692 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=452&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=452&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=452&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 5.42G 482s 50K .......... ..... 207M=0s 482s 482s 2025-02-19 11:07:13 (790 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=452&graph_template_id=50’ saved [66804] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=453&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 200 OK 482s Length: unspecified [text/html] 482s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=453&graph_template_id=50’ 482s 482s 0K .......... .......... .......... .......... .......... 4.57G 482s 50K .......... .......... .......... .......... .......... 683M 482s 100K .......... ....... 32.5T=0s 482s 482s 2025-02-19 11:07:13 (1.37 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=453&graph_template_id=50’ saved [120252] 482s 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=453&graph_template_id=50 482s Reusing existing connection to [localhost]:80. 482s HTTP request sent, awaiting response... 302 Found 482s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 482s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 482s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=453&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 4.21G 483s 50K .......... ..... 187M=0s 483s 483s 2025-02-19 11:07:13 (701 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=453&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=453&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:13-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=453&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 4.60G 483s 50K .......... ..... 180M=0s 483s 483s 2025-02-19 11:07:14 (685 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=453&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=454&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=454&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 4.62G 483s 50K .......... .......... .......... .......... .......... 560M 483s 100K .......... ....... 32.5T=0s 483s 483s 2025-02-19 11:07:14 (1.15 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=454&graph_template_id=50’ saved [120241] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=454&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=454&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 7.01G 483s 50K .......... ..... 180M=0s 483s 483s 2025-02-19 11:07:14 (711 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=454&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=454&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=454&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.80G 483s 50K .......... ..... 212M=0s 483s 483s 2025-02-19 11:07:14 (811 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=454&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=455&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=455&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.00G 483s 50K .......... .......... .......... .......... .......... 670M 483s 100K .......... ....... 32.5T=0s 483s 483s 2025-02-19 11:07:14 (1.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=455&graph_template_id=50’ saved [120241] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=455&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=455&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 7.08G 483s 50K .......... ..... 194M=0s 483s 483s 2025-02-19 11:07:14 (762 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=455&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=455&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=455&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.29G 483s 50K .......... ..... 179M=0s 483s 483s 2025-02-19 11:07:14 (701 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=455&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=456&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=456&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 7.68G 483s 50K .......... .......... .......... .......... .......... 540M 483s 100K .......... ....... 32.5T=0s 483s 483s 2025-02-19 11:07:14 (1.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=456&graph_template_id=50’ saved [120248] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=456&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=456&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.29G 483s 50K .......... ..... 209M=0s 483s 483s 2025-02-19 11:07:14 (794 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=456&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=456&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=456&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.80G 483s 50K .......... ..... 226M=0s 483s 483s 2025-02-19 11:07:14 (873 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=456&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=457&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=457&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.62G 483s 50K .......... .......... .......... .......... .......... 668M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=457&graph_template_id=50’ saved [120102] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=457&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=457&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.10G 483s 50K .......... ..... 174M=0s 483s 483s 2025-02-19 11:07:14 (671 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=457&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=457&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=457&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.24G 483s 50K .......... ..... 217M=0s 483s 483s 2025-02-19 11:07:14 (836 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=457&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=458&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=458&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.44G 483s 50K .......... .......... .......... .......... .......... 662M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=458&graph_template_id=50’ saved [120090] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=458&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=458&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 4.92G 483s 50K .......... ..... 221M=0s 483s 483s 2025-02-19 11:07:14 (826 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=458&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=458&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=458&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.19G 483s 50K .......... ..... 226M=0s 483s 483s 2025-02-19 11:07:14 (848 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=458&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=459&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=459&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.70G 483s 50K .......... .......... .......... .......... .......... 674M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=459&graph_template_id=50’ saved [120090] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=459&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=459&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 5.88G 483s 50K .......... ..... 208M=0s 483s 483s 2025-02-19 11:07:14 (801 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=459&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=459&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=459&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.14G 483s 50K .......... ..... 204M=0s 483s 483s 2025-02-19 11:07:14 (789 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=459&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=460&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=460&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.19G 483s 50K .......... .......... .......... .......... .......... 619M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=460&graph_template_id=50’ saved [120097] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=460&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=460&graph_template_id=50’ 483s 483s 0K .......... .......... .......... .......... .......... 6.20G 483s 50K .......... ..... 225M=0s 483s 483s 2025-02-19 11:07:14 (862 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=460&graph_template_id=50’ saved [66804] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=50’ 483s 483s 0K .......... .......... .......... ... 7.90G=0s 483s 483s 2025-02-19 11:07:14 (7.90 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=50’ saved [34213] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=90&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=90&graph_template_id=50’ 483s 483s 0K .......... .......... .......... ... 7.56G=0s 483s 483s 2025-02-19 11:07:14 (7.56 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=90&graph_template_id=50’ saved [34289] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=89&graph_template_id=50 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=89&graph_template_id=50’ 483s 483s 0K .......... .......... .......... ... 5.31G=0s 483s 483s 2025-02-19 11:07:14 (5.31 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=89&graph_template_id=50’ saved [34289] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 4.67G 483s 50K .......... .......... .......... .......... .......... 595M 483s 100K .......... ....... 32.4T=0s 483s 483s 2025-02-19 11:07:14 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=52’ saved [120219] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=502&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=502&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 6.06G 483s 50K .......... .......... .......... .......... .......... 612M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=502&graph_template_id=52’ saved [120084] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=502&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=502&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 5.36G 483s 50K .......... .......... .. 121M=0s 483s 483s 2025-02-19 11:07:14 (375 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=502&graph_template_id=52’ saved [73943] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=501&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=501&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 5.50G 483s 50K .......... .......... .......... .......... .......... 659M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=501&graph_template_id=52’ saved [120084] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=501&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=501&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 3.89G 483s 50K .......... .......... .. 312M=0s 483s 483s 2025-02-19 11:07:14 (861 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=501&graph_template_id=52’ saved [73943] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=501&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=501&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 5.52G 483s 50K .......... .......... .. 240M=0s 483s 483s 2025-02-19 11:07:14 (713 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=501&graph_template_id=52’ saved [73943] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=503&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=503&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 6.52G 483s 50K .......... .......... .......... .......... .......... 565M 483s 100K .......... ....... 32.2T=0s 483s 483s 2025-02-19 11:07:14 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=503&graph_template_id=52’ saved [120084] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=503&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 302 Found 483s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 483s Reusing existing connection to [localhost]:80. 483s HTTP request sent, awaiting response... 200 OK 483s Length: unspecified [text/html] 483s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=503&graph_template_id=52’ 483s 483s 0K .......... .......... .......... .......... .......... 3.34G 483s 50K .......... .......... .. 199M=0s 483s 483s 2025-02-19 11:07:14 (572 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=503&graph_template_id=52’ saved [73943] 483s 483s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=503&graph_template_id=52 483s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=503&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.16G 484s 50K .......... .......... .. 310M=0s 484s 484s 2025-02-19 11:07:14 (867 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=503&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:14-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=504&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=504&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 6.73G 484s 50K .......... .......... .......... .......... .......... 663M 484s 100K .......... ....... 32.2T=0s 484s 484s 2025-02-19 11:07:15 (1.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=504&graph_template_id=52’ saved [120084] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=504&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Connecting to localhost (localhost)|::1|:80... connected. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=504&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 462M 484s 50K .......... .......... .. 41.4T=0s 484s 484s 2025-02-19 11:07:15 (668 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=504&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=504&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=504&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 3.90G 484s 50K .......... .......... .. 148M=0s 484s 484s 2025-02-19 11:07:15 (443 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=504&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=505&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=505&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.94G 484s 50K .......... .......... .......... .......... .......... 666M 484s 100K .......... ....... 32.2T=0s 484s 484s 2025-02-19 11:07:15 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=505&graph_template_id=52’ saved [120084] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=505&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=505&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 3.57G 484s 50K .......... .......... .. 89.8M=0s 484s 484s 2025-02-19 11:07:15 (277 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=505&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=505&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=505&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.29G 484s 50K .......... .......... .. 264M=0s 484s 484s 2025-02-19 11:07:15 (755 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=505&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=506&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=506&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 3.73G 484s 50K .......... .......... .......... .......... .......... 505M 484s 100K .......... ....... 32.2T=0s 484s 484s 2025-02-19 11:07:15 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=506&graph_template_id=52’ saved [120091] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=506&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=506&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 3.11G 484s 50K .......... .......... .. 284M=0s 484s 484s 2025-02-19 11:07:15 (770 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=506&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=506&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=506&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 6.33G 484s 50K .......... .......... .. 213M=0s 484s 484s 2025-02-19 11:07:15 (644 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=506&graph_template_id=52’ saved [73943] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=507&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=507&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.91G 484s 50K .......... .......... .......... .......... .......... 487M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (1.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=507&graph_template_id=52’ saved [120261] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=507&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=507&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.22G 484s 50K .......... .......... .. 49.3M=0s 484s 484s 2025-02-19 11:07:15 (156 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=507&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=507&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=507&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.80G 484s 50K .......... .......... .. 193M=0s 484s 484s 2025-02-19 11:07:15 (585 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=507&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=508&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=508&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.71G 484s 50K .......... .......... .......... .......... .......... 300M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (669 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=508&graph_template_id=52’ saved [120251] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=508&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=508&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.43G 484s 50K .......... .......... .. 288M=0s 484s 484s 2025-02-19 11:07:15 (838 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=508&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=508&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=508&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.50G 484s 50K .......... .......... .. 316M=0s 484s 484s 2025-02-19 11:07:15 (912 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=508&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=509&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=509&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.66G 484s 50K .......... .......... .......... .......... .......... 345M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (765 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=509&graph_template_id=52’ saved [120243] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=509&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=509&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.15G 484s 50K .......... .......... .. 321M=0s 484s 484s 2025-02-19 11:07:15 (892 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=509&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=509&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=509&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.04G 484s 50K .......... .......... .. 252M=0s 484s 484s 2025-02-19 11:07:15 (720 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=509&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=510&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=510&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.30G 484s 50K .......... .......... .......... .......... .......... 608M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=510&graph_template_id=52’ saved [120251] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=510&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=510&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 7.21G 484s 50K .......... .......... .. 260M=0s 484s 484s 2025-02-19 11:07:15 (783 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=510&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=510&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=510&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.00G 484s 50K .......... .......... .. 285M=0s 484s 484s 2025-02-19 11:07:15 (823 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=510&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=511&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=511&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.35G 484s 50K .......... .......... .......... .......... .......... 607M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=511&graph_template_id=52’ saved [120255] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=511&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=511&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.56G 484s 50K .......... .......... .. 267M=0s 484s 484s 2025-02-19 11:07:15 (769 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=511&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=511&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=511&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 3.10G 484s 50K .......... .......... .. 247M=0s 484s 484s 2025-02-19 11:07:15 (682 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=511&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=512&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=512&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.03G 484s 50K .......... .......... .......... .......... .......... 566M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=512&graph_template_id=52’ saved [120251] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=512&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=512&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.83G 484s 50K .......... .......... .. 258M=0s 484s 484s 2025-02-19 11:07:15 (751 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=512&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=512&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=512&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 4.47G 484s 50K .......... .......... .. 256M=0s 484s 484s 2025-02-19 11:07:15 (740 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=512&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=513&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=513&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.19G 484s 50K .......... .......... .......... .......... .......... 603M 484s 100K .......... ....... 32.5T=0s 484s 484s 2025-02-19 11:07:15 (1.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=513&graph_template_id=52’ saved [120243] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=513&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 302 Found 484s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 484s Reusing existing connection to [localhost]:80. 484s HTTP request sent, awaiting response... 200 OK 484s Length: unspecified [text/html] 484s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=513&graph_template_id=52’ 484s 484s 0K .......... .......... .......... .......... .......... 5.48G 484s 50K .......... .......... .. 305M=0s 484s 484s 2025-02-19 11:07:15 (884 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=513&graph_template_id=52’ saved [73946] 484s 484s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=513&graph_template_id=52 484s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=513&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 3.84G 485s 50K .......... .......... .. 309M=0s 485s 485s 2025-02-19 11:07:15 (853 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=513&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:15-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=514&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=514&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 6.16G 485s 50K .......... .......... .......... .......... .......... 665M 485s 100K .......... ....... 32.5T=0s 485s 485s 2025-02-19 11:07:16 (1.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=514&graph_template_id=52’ saved [120251] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=514&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=514&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 3.09G 485s 50K .......... .......... .. 250M=0s 485s 485s 2025-02-19 11:07:16 (691 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=514&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=514&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=514&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 6.42G 485s 50K .......... .......... .. 254M=0s 485s 485s 2025-02-19 11:07:16 (760 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=514&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=515&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=515&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 6.10G 485s 50K .......... .......... .......... .......... .......... 655M 485s 100K .......... ....... 32.2T=0s 485s 485s 2025-02-19 11:07:16 (1.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=515&graph_template_id=52’ saved [120109] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=515&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=515&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 5.64G 485s 50K .......... .......... .. 243M=0s 485s 485s 2025-02-19 11:07:16 (721 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=515&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=515&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=515&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 4.81G 485s 50K .......... .......... .. 313M=0s 485s 485s 2025-02-19 11:07:16 (891 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=515&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=516&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=516&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 5.40G 485s 50K .......... .......... .......... .......... .......... 534M 485s 100K .......... ....... 32.2T=0s 485s 485s 2025-02-19 11:07:16 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=516&graph_template_id=52’ saved [120093] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=516&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=516&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 4.10G 485s 50K .......... .......... .. 96.1M=0s 485s 485s 2025-02-19 11:07:16 (297 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=516&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=516&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=516&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 4.39G 485s 50K .......... .......... .. 127M=0s 485s 485s 2025-02-19 11:07:16 (389 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=516&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=517&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=517&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 5.20G 485s 50K .......... .......... .......... .......... .......... 587M 485s 100K .......... ....... 32.2T=0s 485s 485s 2025-02-19 11:07:16 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=517&graph_template_id=52’ saved [120100] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=517&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=517&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 4.17G 485s 50K .......... .......... .. 250M=0s 485s 485s 2025-02-19 11:07:16 (718 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=517&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=517&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=517&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 6.35G 485s 50K .......... .......... .. 308M=0s 485s 485s 2025-02-19 11:07:16 (904 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=517&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=518&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=518&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 5.51G 485s 50K .......... .......... .......... .......... .......... 465M 485s 100K .......... ....... 32.4T=0s 485s 485s 2025-02-19 11:07:16 (1009 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=518&graph_template_id=52’ saved [120237] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=518&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=518&graph_template_id=52’ 485s 485s 0K .......... .......... .......... .......... .......... 4.26G 485s 50K .......... .......... .. 230M=0s 485s 485s 2025-02-19 11:07:16 (667 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=518&graph_template_id=52’ saved [73946] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=52’ 485s 485s 0K .......... .......... .......... ..... 2.57G=0s 485s 485s 2025-02-19 11:07:16 (2.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=52’ saved [36476] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=101&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=101&graph_template_id=52’ 485s 485s 0K .......... .......... .......... ..... 4.84G=0s 485s 485s 2025-02-19 11:07:16 (4.84 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=101&graph_template_id=52’ saved [36553] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=102&graph_template_id=52 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=102&graph_template_id=52’ 485s 485s 0K .......... .......... .......... ..... 4.12G=0s 485s 485s 2025-02-19 11:07:16 (4.12 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=102&graph_template_id=52’ saved [36560] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 3.17G 485s 50K .......... .......... .......... .......... .......... 557M 485s 100K .......... ....... 33.3T=0s 485s 485s 2025-02-19 11:07:16 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=51’ saved [120691] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=461&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=461&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 2.92G 485s 50K .......... .......... .......... .......... .......... 316M 485s 100K .......... ....... 33.3T=0s 485s 485s 2025-02-19 11:07:16 (673 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=461&graph_template_id=51’ saved [120729] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=461&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=461&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 2.95G 485s 50K .......... .......... .......... .......... ...... 509M=0s 485s 485s 2025-02-19 11:07:16 (896 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=461&graph_template_id=51’ saved [98625] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=462&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=462&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 2.86G 485s 50K .......... .......... .......... .......... .......... 630M 485s 100K .......... ....... 33.3T=0s 485s 485s 2025-02-19 11:07:16 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=462&graph_template_id=51’ saved [120715] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=462&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=462&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 4.96G 485s 50K .......... .......... .......... .......... ...... 611M=0s 485s 485s 2025-02-19 11:07:16 (1.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=462&graph_template_id=51’ saved [98625] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=462&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=462&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 2.73G 485s 50K .......... .......... .......... .......... ...... 487M=0s 485s 485s 2025-02-19 11:07:16 (853 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=462&graph_template_id=51’ saved [98625] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=463&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=463&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 3.49G 485s 50K .......... .......... .......... .......... .......... 501M 485s 100K .......... ....... 33.3T=0s 485s 485s 2025-02-19 11:07:16 (1.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=463&graph_template_id=51’ saved [120715] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=463&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 200 OK 485s Length: unspecified [text/html] 485s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=463&graph_template_id=51’ 485s 485s 0K .......... .......... .......... .......... .......... 4.92G 485s 50K .......... .......... .......... .......... ...... 552M=0s 485s 485s 2025-02-19 11:07:16 (1.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=463&graph_template_id=51’ saved [98625] 485s 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=463&graph_template_id=51 485s Reusing existing connection to [localhost]:80. 485s HTTP request sent, awaiting response... 302 Found 485s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 485s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 485s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=463&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.57G 486s 50K .......... .......... .......... .......... ...... 570M=0s 486s 486s 2025-02-19 11:07:16 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=463&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=464&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=464&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.26G 486s 50K .......... .......... .......... .......... .......... 668M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:16 (1.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=464&graph_template_id=51’ saved [120722] 486s 486s --2025-02-19 11:07:16-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=464&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=464&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.89G 486s 50K .......... .......... .......... .......... ...... 619M=0s 486s 486s 2025-02-19 11:07:17 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=464&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=464&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=464&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 5.02G 486s 50K .......... .......... .......... .......... ...... 425M=0s 486s 486s 2025-02-19 11:07:17 (811 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=464&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=465&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=465&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 3.79G 486s 50K .......... .......... .......... .......... .......... 559M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=465&graph_template_id=51’ saved [120731] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=465&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=465&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.64G 486s 50K .......... .......... .......... .......... ...... 476M=0s 486s 486s 2025-02-19 11:07:17 (893 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=465&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=465&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=465&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.09G 486s 50K .......... .......... .......... .......... ...... 327M=0s 486s 486s 2025-02-19 11:07:17 (644 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=465&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=466&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=466&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 3.81G 486s 50K .......... .......... .......... .......... .......... 226M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (503 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=466&graph_template_id=51’ saved [120715] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=466&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=466&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.73G 486s 50K .......... .......... .......... .......... ...... 99.8M=0s 486s 486s 2025-02-19 11:07:17 (203 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=466&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=466&graph_template_id=51 486s Connecting to localhost (localhost)|::1|:80... connected. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=466&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 550M 486s 50K .......... .......... .......... .......... ...... 732M=0s 486s 486s 2025-02-19 11:07:17 (625 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=466&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=467&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=467&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.21G 486s 50K .......... .......... .......... .......... .......... 552M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=467&graph_template_id=51’ saved [120715] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=467&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=467&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.40G 486s 50K .......... .......... .......... .......... ...... 511M=0s 486s 486s 2025-02-19 11:07:17 (946 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=467&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=467&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=467&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.90G 486s 50K .......... .......... .......... .......... ...... 482M=0s 486s 486s 2025-02-19 11:07:17 (908 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=467&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=468&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=468&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.64G 486s 50K .......... .......... .......... .......... .......... 503M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=468&graph_template_id=51’ saved [120722] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=468&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=468&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 2.62G 486s 50K .......... .......... .......... .......... ...... 553M=0s 486s 486s 2025-02-19 11:07:17 (940 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=468&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=468&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=468&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.28G 486s 50K .......... .......... .......... .......... ...... 495M=0s 486s 486s 2025-02-19 11:07:17 (917 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=468&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=469&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=469&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 5.77G 486s 50K .......... .......... .......... .......... .......... 649M 486s 100K .......... ....... 33.4T=0s 486s 486s 2025-02-19 11:07:17 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=469&graph_template_id=51’ saved [120737] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=469&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=469&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 3.98G 486s 50K .......... .......... .......... .......... ...... 441M=0s 486s 486s 2025-02-19 11:07:17 (821 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=469&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=469&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=469&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.85G 486s 50K .......... .......... .......... .......... ...... 449M=0s 486s 486s 2025-02-19 11:07:17 (874 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=469&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=470&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=470&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.27G 486s 50K .......... .......... .......... .......... .......... 595M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=470&graph_template_id=51’ saved [120716] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=470&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=470&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.57G 486s 50K .......... .......... .......... .......... ...... 396M=0s 486s 486s 2025-02-19 11:07:17 (754 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=470&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=470&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=470&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 3.81G 486s 50K .......... .......... .......... .......... ...... 486M=0s 486s 486s 2025-02-19 11:07:17 (891 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=470&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=471&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=471&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.89G 486s 50K .......... .......... .......... .......... .......... 496M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=471&graph_template_id=51’ saved [120716] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=471&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=471&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 6.09G 486s 50K .......... .......... .......... .......... ...... 493M=0s 486s 486s 2025-02-19 11:07:17 (945 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=471&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=471&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=471&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.61G 486s 50K .......... .......... .......... .......... ...... 532M=0s 486s 486s 2025-02-19 11:07:17 (986 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=471&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=472&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=472&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 5.74G 486s 50K .......... .......... .......... .......... .......... 290M 486s 100K .......... ....... 33.3T=0s 486s 486s 2025-02-19 11:07:17 (652 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=472&graph_template_id=51’ saved [120723] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=472&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 302 Found 486s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 486s Reusing existing connection to [localhost]:80. 486s HTTP request sent, awaiting response... 200 OK 486s Length: unspecified [text/html] 486s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=472&graph_template_id=51’ 486s 486s 0K .......... .......... .......... .......... .......... 4.11G 486s 50K .......... .......... .......... .......... ...... 473M=0s 486s 486s 2025-02-19 11:07:17 (877 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=472&graph_template_id=51’ saved [98625] 486s 486s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=472&graph_template_id=51 486s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:17-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=472&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.44G 487s 50K .......... .......... .......... .......... ...... 409M=0s 487s 487s 2025-02-19 11:07:18 (755 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=472&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=473&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=473&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 5.94G 487s 50K .......... .......... .......... .......... .......... 497M 487s 100K .......... ....... 33.4T=0s 487s 487s 2025-02-19 11:07:18 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=473&graph_template_id=51’ saved [120736] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=473&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=473&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.10G 487s 50K .......... .......... .......... .......... ...... 43.4M=0.001s 487s 487s 2025-02-19 11:07:18 (89.0 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=473&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=473&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=473&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.56G 487s 50K .......... .......... .......... .......... ...... 247M=0s 487s 487s 2025-02-19 11:07:18 (478 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=473&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=474&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=474&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.00G 487s 50K .......... .......... .......... .......... .......... 629M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (1.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=474&graph_template_id=51’ saved [120716] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=474&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=474&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.76G 487s 50K .......... .......... .......... .......... ...... 447M=0s 487s 487s 2025-02-19 11:07:18 (826 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=474&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=474&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=474&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.12G 487s 50K .......... .......... .......... .......... ...... 483M=0s 487s 487s 2025-02-19 11:07:18 (863 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=474&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=475&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=475&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 6.69G 487s 50K .......... .......... .......... .......... .......... 702M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (1.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=475&graph_template_id=51’ saved [120716] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=475&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=475&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.43G 487s 50K .......... .......... .......... .......... ...... 571M=0s 487s 487s 2025-02-19 11:07:18 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=475&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=475&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=475&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.19G 487s 50K .......... .......... .......... .......... ...... 563M=0s 487s 487s 2025-02-19 11:07:18 (1.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=475&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=476&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=476&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 2.22G 487s 50K .......... .......... .......... .......... .......... 355M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (724 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=476&graph_template_id=51’ saved [120723] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=476&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=476&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 2.98G 487s 50K .......... .......... .......... .......... ...... 523M=0s 487s 487s 2025-02-19 11:07:18 (918 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=476&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=476&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=476&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.45G 487s 50K .......... .......... .......... .......... ...... 539M=0s 487s 487s 2025-02-19 11:07:18 (994 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=476&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=477&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=477&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.60G 487s 50K .......... .......... .......... .......... .......... 541M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=477&graph_template_id=51’ saved [120734] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=477&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=477&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.46G 487s 50K .......... .......... .......... .......... ...... 414M=0s 487s 487s 2025-02-19 11:07:18 (764 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=477&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=477&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=477&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 5.07G 487s 50K .......... .......... .......... .......... ...... 572M=0s 487s 487s 2025-02-19 11:07:18 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=477&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=478&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=478&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 6.03G 487s 50K .......... .......... .......... .......... .......... 333M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (745 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=478&graph_template_id=51’ saved [120716] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=478&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=478&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.95G 487s 50K .......... .......... .......... .......... ...... 290M=0s 487s 487s 2025-02-19 11:07:18 (568 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=478&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=478&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=478&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 3.75G 487s 50K .......... .......... .......... .......... ...... 572M=0s 487s 487s 2025-02-19 11:07:18 (1.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=478&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=479&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=479&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.83G 487s 50K .......... .......... .......... .......... .......... 570M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (1.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=479&graph_template_id=51’ saved [120716] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=479&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=479&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.65G 487s 50K .......... .......... .......... .......... ...... 583M=0s 487s 487s 2025-02-19 11:07:18 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=479&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=479&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=479&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.27G 487s 50K .......... .......... .......... .......... ...... 544M=0s 487s 487s 2025-02-19 11:07:18 (998 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=479&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=480&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=480&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 5.63G 487s 50K .......... .......... .......... .......... .......... 619M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (1.29 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=480&graph_template_id=51’ saved [120723] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=480&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=480&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 5.41G 487s 50K .......... .......... .......... .......... ...... 472M=0s 487s 487s 2025-02-19 11:07:18 (899 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=480&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=480&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 302 Found 487s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=480&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 5.38G 487s 50K .......... .......... .......... .......... ...... 404M=0s 487s 487s 2025-02-19 11:07:18 (778 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=480&graph_template_id=51’ saved [98625] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=481&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 487s HTTP request sent, awaiting response... 200 OK 487s Length: unspecified [text/html] 487s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=481&graph_template_id=51’ 487s 487s 0K .......... .......... .......... .......... .......... 4.11G 487s 50K .......... .......... .......... .......... .......... 242M 487s 100K .......... ....... 33.3T=0s 487s 487s 2025-02-19 11:07:18 (539 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=481&graph_template_id=51’ saved [120733] 487s 487s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=481&graph_template_id=51 487s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:18-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=481&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 2.98G 488s 50K .......... .......... .......... .......... ...... 60.9M=0.001s 488s 488s 2025-02-19 11:07:19 (124 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=481&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=481&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=481&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 4.53G 488s 50K .......... .......... .......... .......... ...... 424M=0s 488s 488s 2025-02-19 11:07:19 (802 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=481&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=482&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=482&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 7.32G 488s 50K .......... .......... .......... .......... .......... 492M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=482&graph_template_id=51’ saved [120716] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=482&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=482&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 4.31G 488s 50K .......... .......... .......... .......... ...... 48.8M=0.001s 488s 488s 2025-02-19 11:07:19 (100 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=482&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=482&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=482&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.64G 488s 50K .......... .......... .......... .......... ...... 212M=0s 488s 488s 2025-02-19 11:07:19 (424 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=482&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=483&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=483&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 3.17G 488s 50K .......... .......... .......... .......... .......... 621M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=483&graph_template_id=51’ saved [120716] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=483&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=483&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 4.45G 488s 50K .......... .......... .......... .......... ...... 42.3M=0.001s 488s 488s 2025-02-19 11:07:19 (87.1 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=483&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=483&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=483&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 4.88G 488s 50K .......... .......... .......... .......... ...... 220M=0s 488s 488s 2025-02-19 11:07:19 (437 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=483&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=484&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=484&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 6.10G 488s 50K .......... .......... .......... .......... .......... 457M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1004 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=484&graph_template_id=51’ saved [120723] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=484&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=484&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 3.73G 488s 50K .......... .......... .......... .......... ...... 540M=0s 488s 488s 2025-02-19 11:07:19 (975 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=484&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=484&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=484&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 2.67G 488s 50K .......... .......... .......... .......... ...... 539M=0s 488s 488s 2025-02-19 11:07:19 (925 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=484&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=485&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=485&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.53G 488s 50K .......... .......... .......... .......... .......... 129M 488s 100K .......... ....... 33.4T=0s 488s 488s 2025-02-19 11:07:19 (298 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=485&graph_template_id=51’ saved [120741] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=485&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=485&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.22G 488s 50K .......... .......... .......... .......... ...... 495M=0s 488s 488s 2025-02-19 11:07:19 (936 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=485&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=485&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=485&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 3.41G 488s 50K .......... .......... .......... .......... ...... 509M=0s 488s 488s 2025-02-19 11:07:19 (914 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=485&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=486&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=486&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 4.71G 488s 50K .......... .......... .......... .......... .......... 521M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=486&graph_template_id=51’ saved [120716] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=486&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=486&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.35G 488s 50K .......... .......... .......... .......... ...... 340M=0s 488s 488s 2025-02-19 11:07:19 (662 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=486&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=486&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Connecting to localhost (localhost)|::1|:80... connected. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=486&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 3.43G 488s 50K .......... .......... .......... .......... ...... 612M=0s 488s 488s 2025-02-19 11:07:19 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=486&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=487&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=487&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 6.03G 488s 50K .......... .......... .......... .......... .......... 690M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1.43 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=487&graph_template_id=51’ saved [120716] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=487&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=487&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 4.16G 488s 50K .......... .......... .......... .......... ...... 611M=0s 488s 488s 2025-02-19 11:07:19 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=487&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=487&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=487&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.42G 488s 50K .......... .......... .......... .......... ...... 591M=0s 488s 488s 2025-02-19 11:07:19 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=487&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=488&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=488&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.57G 488s 50K .......... .......... .......... .......... .......... 579M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=488&graph_template_id=51’ saved [120723] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=488&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=488&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.02G 488s 50K .......... .......... .......... .......... ...... 540M=0s 488s 488s 2025-02-19 11:07:19 (1009 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=488&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=488&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=488&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.52G 488s 50K .......... .......... .......... .......... ...... 566M=0s 488s 488s 2025-02-19 11:07:19 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=488&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=489&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=489&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 3.72G 488s 50K .......... .......... .......... .......... .......... 595M 488s 100K .......... ....... 33.3T=0s 488s 488s 2025-02-19 11:07:19 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=489&graph_template_id=51’ saved [120730] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=489&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=489&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 3.37G 488s 50K .......... .......... .......... .......... ...... 528M=0s 488s 488s 2025-02-19 11:07:19 (943 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=489&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=489&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 302 Found 488s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 488s Reusing existing connection to [localhost]:80. 488s HTTP request sent, awaiting response... 200 OK 488s Length: unspecified [text/html] 488s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=489&graph_template_id=51’ 488s 488s 0K .......... .......... .......... .......... .......... 5.17G 488s 50K .......... .......... .......... .......... ...... 604M=0s 488s 488s 2025-02-19 11:07:19 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=489&graph_template_id=51’ saved [98625] 488s 488s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=490&graph_template_id=51 488s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=490&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.52G 489s 50K .......... .......... .......... .......... .......... 286M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:19 (635 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=490&graph_template_id=51’ saved [120716] 489s 489s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=490&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:19-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=490&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.16G 489s 50K .......... .......... .......... .......... ...... 436M=0s 489s 489s 2025-02-19 11:07:20 (833 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=490&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=490&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=490&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.17G 489s 50K .......... .......... .......... .......... ...... 463M=0s 489s 489s 2025-02-19 11:07:20 (879 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=490&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=491&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=491&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.67G 489s 50K .......... .......... .......... .......... .......... 577M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:20 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=491&graph_template_id=51’ saved [120716] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=491&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=491&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.78G 489s 50K .......... .......... .......... .......... ...... 583M=0s 489s 489s 2025-02-19 11:07:20 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=491&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=491&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=491&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 3.66G 489s 50K .......... .......... .......... .......... ...... 497M=0s 489s 489s 2025-02-19 11:07:20 (904 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=491&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=492&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=492&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.42G 489s 50K .......... .......... .......... .......... .......... 599M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:20 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=492&graph_template_id=51’ saved [120723] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=492&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=492&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.79G 489s 50K .......... .......... .......... .......... ...... 623M=0s 489s 489s 2025-02-19 11:07:20 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=492&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=492&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=492&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 3.65G 489s 50K .......... .......... .......... .......... ...... 621M=0s 489s 489s 2025-02-19 11:07:20 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=492&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=493&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=493&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 3.74G 489s 50K .......... .......... .......... .......... .......... 150M 489s 100K .......... ....... 33.4T=0s 489s 489s 2025-02-19 11:07:20 (341 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=493&graph_template_id=51’ saved [120741] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=493&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=493&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 3.47G 489s 50K .......... .......... .......... .......... ...... 149M=0s 489s 489s 2025-02-19 11:07:20 (296 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=493&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=493&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=493&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.49G 489s 50K .......... .......... .......... .......... ...... 159M=0s 489s 489s 2025-02-19 11:07:20 (322 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=493&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=494&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=494&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.75G 489s 50K .......... .......... .......... .......... .......... 164M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:20 (374 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=494&graph_template_id=51’ saved [120716] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=494&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=494&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.22G 489s 50K .......... .......... .......... .......... ...... 131M=0s 489s 489s 2025-02-19 11:07:20 (265 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=494&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=494&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=494&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 6.89G 489s 50K .......... .......... .......... .......... ...... 229M=0s 489s 489s 2025-02-19 11:07:20 (461 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=494&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=495&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=495&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.11G 489s 50K .......... .......... .......... .......... .......... 255M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:20 (574 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=495&graph_template_id=51’ saved [120716] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=495&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=495&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.37G 489s 50K .......... .......... .......... .......... ...... 121M=0s 489s 489s 2025-02-19 11:07:20 (246 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=495&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=495&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=495&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.30G 489s 50K .......... .......... .......... .......... ...... 98.1M=0s 489s 489s 2025-02-19 11:07:20 (200 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=495&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=496&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=496&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 6.16G 489s 50K .......... .......... .......... .......... .......... 503M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:20 (1.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=496&graph_template_id=51’ saved [120723] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=496&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=496&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.38G 489s 50K .......... .......... .......... .......... ...... 119M=0s 489s 489s 2025-02-19 11:07:20 (241 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=496&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=496&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=496&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.14G 489s 50K .......... .......... .......... .......... ...... 113M=0s 489s 489s 2025-02-19 11:07:20 (228 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=496&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=497&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=497&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.61G 489s 50K .......... .......... .......... .......... .......... 129M 489s 100K .......... ....... 33.4T=0s 489s 489s 2025-02-19 11:07:20 (297 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=497&graph_template_id=51’ saved [120735] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=497&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=497&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.97G 489s 50K .......... .......... .......... .......... ...... 195M=0s 489s 489s 2025-02-19 11:07:20 (389 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=497&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=497&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=497&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.03G 489s 50K .......... .......... .......... .......... ...... 316M=0s 489s 489s 2025-02-19 11:07:20 (606 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=497&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=498&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=498&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 4.65G 489s 50K .......... .......... .......... .......... .......... 386M 489s 100K .......... ....... 33.3T=0s 489s 489s 2025-02-19 11:07:20 (842 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=498&graph_template_id=51’ saved [120716] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=498&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 200 OK 489s Length: unspecified [text/html] 489s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=498&graph_template_id=51’ 489s 489s 0K .......... .......... .......... .......... .......... 5.53G 489s 50K .......... .......... .......... .......... ...... 137M=0s 489s 489s 2025-02-19 11:07:20 (277 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=498&graph_template_id=51’ saved [98625] 489s 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=498&graph_template_id=51 489s Reusing existing connection to [localhost]:80. 489s HTTP request sent, awaiting response... 302 Found 489s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 489s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 489s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=498&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... .......... 2.65G 490s 50K .......... .......... .......... .......... ...... 115M=0s 490s 490s 2025-02-19 11:07:20 (228 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=498&graph_template_id=51’ saved [98625] 490s 490s --2025-02-19 11:07:20-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=499&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=499&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... .......... 3.18G 490s 50K .......... .......... .......... .......... .......... 124M 490s 100K .......... ....... 33.3T=0s 490s 490s 2025-02-19 11:07:20 (281 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=499&graph_template_id=51’ saved [120716] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=499&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=499&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... .......... 3.46G 490s 50K .......... .......... .......... .......... ...... 278M=0s 490s 490s 2025-02-19 11:07:21 (534 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=499&graph_template_id=51’ saved [98625] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=499&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=499&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... .......... 4.77G 490s 50K .......... .......... .......... .......... ...... 311M=0s 490s 490s 2025-02-19 11:07:21 (605 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=499&graph_template_id=51’ saved [98625] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=500&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=500&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... .......... 3.94G 490s 50K .......... .......... .......... .......... .......... 346M 490s 100K .......... ....... 33.3T=0s 490s 490s 2025-02-19 11:07:21 (751 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=500&graph_template_id=51’ saved [120723] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=500&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=500&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... .......... 4.83G 490s 50K .......... .......... .......... .......... ...... 611M=0s 490s 490s 2025-02-19 11:07:21 (1.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=500&graph_template_id=51’ saved [98625] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 6.62G=0s 490s 490s 2025-02-19 11:07:21 (6.62 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=51’ saved [44357] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=99&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=99&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 6.88G=0s 490s 490s 2025-02-19 11:07:21 (6.88 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=99&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=94&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=94&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 7.64G=0s 490s 490s 2025-02-19 11:07:21 (7.64 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=94&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=96&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=96&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 8.40G=0s 490s 490s 2025-02-19 11:07:21 (8.40 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=96&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=100&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=100&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 6.63G=0s 490s 490s 2025-02-19 11:07:21 (6.63 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=100&graph_template_id=51’ saved [44422] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=92&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=92&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 7.40G=0s 490s 490s 2025-02-19 11:07:21 (7.40 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=92&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=98&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=98&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 8.56G=0s 490s 490s 2025-02-19 11:07:21 (8.56 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=98&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=97&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=97&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 8.75G=0s 490s 490s 2025-02-19 11:07:21 (8.75 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=97&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=95&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=95&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 6.55G=0s 490s 490s 2025-02-19 11:07:21 (6.55 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=95&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=91&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=91&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 7.13G=0s 490s 490s 2025-02-19 11:07:21 (7.13 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=91&graph_template_id=51’ saved [44421] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=93&graph_template_id=51 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=93&graph_template_id=51’ 490s 490s 0K .......... .......... .......... .......... ... 6.72G=0s 490s 490s 2025-02-19 11:07:21 (6.72 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=93&graph_template_id=51’ saved [44422] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 4.36G 490s 50K .......... .......... .......... .......... .......... 512M 490s 100K .......... ....... 32.3T=0s 490s 490s 2025-02-19 11:07:21 (1.05 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=48’ saved [120141] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=441&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=441&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 5.18G 490s 50K .......... .......... .......... .......... .......... 564M 490s 100K .......... ....... 32.3T=0s 490s 490s 2025-02-19 11:07:21 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=441&graph_template_id=48’ saved [120180] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=441&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=441&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 6.36G 490s 50K ...... 12.5T=0s 490s 490s 2025-02-19 11:07:21 (7.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=441&graph_template_id=48’ saved [58075] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=442&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=442&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 5.11G 490s 50K .......... .......... .......... .......... .......... 594M 490s 100K .......... ....... 32.3T=0s 490s 490s 2025-02-19 11:07:21 (1.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=442&graph_template_id=48’ saved [120165] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=442&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=442&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 5.26G 490s 50K ...... 12.5T=0s 490s 490s 2025-02-19 11:07:21 (5.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=442&graph_template_id=48’ saved [58075] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=442&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=442&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 5.73G 490s 50K ...... 12.5T=0s 490s 490s 2025-02-19 11:07:21 (6.50 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=442&graph_template_id=48’ saved [58075] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=443&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=443&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 5.34G 490s 50K .......... .......... .......... .......... .......... 453M 490s 100K .......... ....... 32.3T=0s 490s 490s 2025-02-19 11:07:21 (982 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=443&graph_template_id=48’ saved [120165] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=443&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=443&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 6.33G 490s 50K ...... 12.5T=0s 490s 490s 2025-02-19 11:07:21 (7.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=443&graph_template_id=48’ saved [58075] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=443&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=443&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 7.84G 490s 50K ...... 12.5T=0s 490s 490s 2025-02-19 11:07:21 (8.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=443&graph_template_id=48’ saved [58075] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=444&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=444&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 5.21G 490s 50K .......... .......... .......... .......... .......... 438M 490s 100K .......... ....... 32.3T=0s 490s 490s 2025-02-19 11:07:21 (951 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=444&graph_template_id=48’ saved [120172] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=444&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 302 Found 490s Location: graph_templates.php?header=false&action=template_edit&id=48 [following] 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=444&graph_template_id=48’ 490s 490s 0K .......... .......... .......... .......... .......... 6.35G 490s 50K ...... 12.5T=0s 490s 490s 2025-02-19 11:07:21 (7.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=444&graph_template_id=48’ saved [58075] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=48’ 490s 490s 0K .......... .......... .......... 7.16G=0s 490s 490s 2025-02-19 11:07:21 (7.16 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=48’ saved [31325] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=87&graph_template_id=48 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=87&graph_template_id=48’ 490s 490s 0K .......... .......... .......... 5.77G=0s 490s 490s 2025-02-19 11:07:21 (5.77 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=87&graph_template_id=48’ saved [31399] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=46 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=46’ 490s 490s 0K .......... .......... .......... .......... .......... 4.69G 490s 50K .......... .......... .......... .......... .......... 472M 490s 100K .......... ....... 32.3T=0s 490s 490s 2025-02-19 11:07:21 (1009 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=46’ saved [120139] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=420&graph_template_id=46 490s Reusing existing connection to [localhost]:80. 490s HTTP request sent, awaiting response... 200 OK 490s Length: unspecified [text/html] 490s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=420&graph_template_id=46’ 490s 490s 0K .......... .......... .......... .......... .......... 4.41G 490s 50K .......... .......... .......... .......... .......... 513M 490s 100K .......... ....... 32.2T=0s 490s 490s 2025-02-19 11:07:21 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=420&graph_template_id=46’ saved [120078] 490s 490s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=420&graph_template_id=46 490s Connecting to localhost (localhost)|::1|:80... connected. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=420&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.65G 491s 50K .......... ......... 224M=0s 491s 491s 2025-02-19 11:07:21 (708 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=420&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:21-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=421&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=421&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 5.02G 491s 50K .......... .......... .......... .......... .......... 572M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (1.18 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=421&graph_template_id=46’ saved [120078] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=421&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=421&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.74G 491s 50K .......... ......... 170M=0s 491s 491s 2025-02-19 11:07:22 (552 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=421&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=421&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=421&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.07G 491s 50K .......... ......... 185M=0s 491s 491s 2025-02-19 11:07:22 (589 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=421&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=422&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=422&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.66G 491s 50K .......... .......... .......... .......... .......... 406M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (877 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=422&graph_template_id=46’ saved [120078] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=422&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=422&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.90G 491s 50K .......... ......... 53.1M=0s 491s 491s 2025-02-19 11:07:22 (183 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=422&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=422&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=422&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 5.56G 491s 50K .......... ......... 58.3M=0s 491s 491s 2025-02-19 11:07:22 (201 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=422&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=423&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=423&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 5.20G 491s 50K .......... .......... .......... .......... .......... 126M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (289 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=423&graph_template_id=46’ saved [120078] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=423&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=423&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.69G 491s 50K .......... ......... 179M=0s 491s 491s 2025-02-19 11:07:22 (578 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=423&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=423&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=423&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 6.42G 491s 50K .......... ......... 122M=0s 491s 491s 2025-02-19 11:07:22 (411 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=423&graph_template_id=46’ saved [71405] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=424&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=424&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 7.21G 491s 50K .......... .......... .......... .......... .......... 201M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (460 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=424&graph_template_id=46’ saved [120104] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=424&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=424&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 2.88G 491s 50K .......... ......... 26.7M=0.001s 491s 491s 2025-02-19 11:07:22 (92.4 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=424&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=424&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=424&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 2.91G 491s 50K .......... ......... 83.8M=0s 491s 491s 2025-02-19 11:07:22 (276 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=424&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=425&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=425&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 7.27G 491s 50K .......... .......... .......... .......... .......... 507M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=425&graph_template_id=46’ saved [120086] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=425&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=425&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 7.23G 491s 50K .......... ......... 24.2M=0.001s 491s 491s 2025-02-19 11:07:22 (84.9 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=425&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=425&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=425&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.42G 491s 50K .......... ......... 105M=0s 491s 491s 2025-02-19 11:07:22 (350 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=425&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=426&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=426&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.15G 491s 50K .......... .......... .......... .......... .......... 452M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (958 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=426&graph_template_id=46’ saved [120086] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=426&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=426&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 3.91G 491s 50K .......... ......... 242M=0s 491s 491s 2025-02-19 11:07:22 (742 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=426&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=426&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=426&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.72G 491s 50K .......... ......... 238M=0s 491s 491s 2025-02-19 11:07:22 (748 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=426&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=427&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=427&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 5.78G 491s 50K .......... .......... .......... .......... .......... 618M 491s 100K .......... ....... 32.2T=0s 491s 491s 2025-02-19 11:07:22 (1.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=427&graph_template_id=46’ saved [120093] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=427&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=427&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 5.11G 491s 50K .......... ......... 258M=0s 491s 491s 2025-02-19 11:07:22 (812 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=427&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=427&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=427&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 2.79G 491s 50K .......... ......... 206M=0s 491s 491s 2025-02-19 11:07:22 (616 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=427&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=428&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=428&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 3.32G 491s 50K .......... .......... .......... .......... .......... 545M 491s 100K .......... ....... 32.3T=0s 491s 491s 2025-02-19 11:07:22 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=428&graph_template_id=46’ saved [120181] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=428&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=428&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.15G 491s 50K .......... ......... 206M=0s 491s 491s 2025-02-19 11:07:22 (648 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=428&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=428&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=428&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.69G 491s 50K .......... ......... 283M=0s 491s 491s 2025-02-19 11:07:22 (870 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=428&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=429&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=429&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.47G 491s 50K .......... .......... .......... .......... .......... 426M 491s 100K .......... ....... 32.3T=0s 491s 491s 2025-02-19 11:07:22 (915 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=429&graph_template_id=46’ saved [120168] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=429&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 302 Found 491s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 491s Reusing existing connection to [localhost]:80. 491s HTTP request sent, awaiting response... 200 OK 491s Length: unspecified [text/html] 491s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=429&graph_template_id=46’ 491s 491s 0K .......... .......... .......... .......... .......... 4.60G 491s 50K .......... ......... 130M=0s 491s 491s 2025-02-19 11:07:22 (431 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=429&graph_template_id=46’ saved [71403] 491s 491s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=429&graph_template_id=46 491s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:22-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=429&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.74G 492s 50K .......... ......... 212M=0s 492s 492s 2025-02-19 11:07:23 (658 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=429&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=430&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=430&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 4.66G 492s 50K .......... .......... .......... .......... .......... 583M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=430&graph_template_id=46’ saved [120168] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=430&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=430&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 5.42G 492s 50K .......... ......... 235M=0s 492s 492s 2025-02-19 11:07:23 (751 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=430&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=430&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=430&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.87G 492s 50K .......... ......... 194M=0s 492s 492s 2025-02-19 11:07:23 (610 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=430&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=431&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=431&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.76G 492s 50K .......... .......... .......... .......... .......... 527M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=431&graph_template_id=46’ saved [120175] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=431&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=431&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 4.14G 492s 50K .......... ......... 247M=0s 492s 492s 2025-02-19 11:07:23 (759 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=431&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=431&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=431&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 2.23G 492s 50K .......... ......... 201M=0s 492s 492s 2025-02-19 11:07:23 (581 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=431&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=432&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=432&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.19G 492s 50K .......... .......... .......... .......... .......... 526M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.04 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=432&graph_template_id=46’ saved [120176] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=432&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=432&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 2.56G 492s 50K .......... ......... 200M=0s 492s 492s 2025-02-19 11:07:23 (591 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=432&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=432&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=432&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 2.96G 492s 50K .......... ......... 227M=0s 492s 492s 2025-02-19 11:07:23 (675 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=432&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=433&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=433&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 4.81G 492s 50K .......... .......... .......... .......... .......... 651M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.32 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=433&graph_template_id=46’ saved [120164] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=433&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=433&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.07G 492s 50K .......... ......... 194M=0s 492s 492s 2025-02-19 11:07:23 (594 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=433&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=433&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=433&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 2.84G 492s 50K .......... ......... 176M=0s 492s 492s 2025-02-19 11:07:23 (540 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=433&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=434&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=434&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.76G 492s 50K .......... .......... .......... .......... .......... 510M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=434&graph_template_id=46’ saved [120164] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=434&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=434&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 5.78G 492s 50K .......... ......... 92.2M=0s 492s 492s 2025-02-19 11:07:23 (314 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=434&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=434&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=434&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 4.07G 492s 50K .......... ......... 282M=0s 492s 492s 2025-02-19 11:07:23 (850 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=434&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=435&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=435&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 6.09G 492s 50K .......... .......... .......... .......... .......... 675M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.40 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=435&graph_template_id=46’ saved [120171] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=435&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=435&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .......... .......... 3.29G 492s 50K .......... ......... 160M=0s 492s 492s 2025-02-19 11:07:23 (504 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=435&graph_template_id=46’ saved [71403] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .... 3.88G=0s 492s 492s 2025-02-19 11:07:23 (3.88 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=46’ saved [35710] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=85&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=85&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .... 8.08G=0s 492s 492s 2025-02-19 11:07:23 (8.08 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=85&graph_template_id=46’ saved [35784] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=84&graph_template_id=46 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=84&graph_template_id=46’ 492s 492s 0K .......... .......... .......... .... 6.12G=0s 492s 492s 2025-02-19 11:07:23 (6.12 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=84&graph_template_id=46’ saved [35786] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 3.50G 492s 50K .......... .......... .......... .......... .......... 562M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=47’ saved [120134] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=436&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=436&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 4.01G 492s 50K .......... .......... .......... .......... .......... 551M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=436&graph_template_id=47’ saved [120158] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=436&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=436&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 5.71G 492s 50K ....... 14.8T=0s 492s 492s 2025-02-19 11:07:23 (6.62 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=436&graph_template_id=47’ saved [59351] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=437&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=437&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 3.14G 492s 50K .......... .......... .......... .......... .......... 465M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (954 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=437&graph_template_id=47’ saved [120158] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=437&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=437&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 4.98G 492s 50K ....... 14.8T=0s 492s 492s 2025-02-19 11:07:23 (5.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=437&graph_template_id=47’ saved [59351] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=437&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=437&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 2.92G 492s 50K ....... 14.8T=0s 492s 492s 2025-02-19 11:07:23 (3.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=437&graph_template_id=47’ saved [59351] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=438&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=438&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 3.44G 492s 50K .......... .......... .......... .......... .......... 392M 492s 100K .......... ....... 32.3T=0s 492s 492s 2025-02-19 11:07:23 (827 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=438&graph_template_id=47’ saved [120165] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=438&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 302 Found 492s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 492s Reusing existing connection to [localhost]:80. 492s HTTP request sent, awaiting response... 200 OK 492s Length: unspecified [text/html] 492s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=438&graph_template_id=47’ 492s 492s 0K .......... .......... .......... .......... .......... 2.86G 492s 50K ....... 14.8T=0s 492s 492s 2025-02-19 11:07:23 (3.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=438&graph_template_id=47’ saved [59351] 492s 492s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=438&graph_template_id=47 492s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 493s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=438&graph_template_id=47’ 493s 493s 0K .......... .......... .......... .......... .......... 5.82G 493s 50K ....... 14.8T=0s 493s 493s 2025-02-19 11:07:23 (6.74 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=438&graph_template_id=47’ saved [59351] 493s 493s --2025-02-19 11:07:23-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=439&graph_template_id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=439&graph_template_id=47’ 493s 493s 0K .......... .......... .......... .......... .......... 5.30G 493s 50K .......... .......... .......... .......... .......... 124M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (286 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=439&graph_template_id=47’ saved [120175] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=439&graph_template_id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=439&graph_template_id=47’ 493s 493s 0K .......... .......... .......... .......... .......... 4.64G 493s 50K ....... 14.8T=0s 493s 493s 2025-02-19 11:07:24 (5.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=439&graph_template_id=47’ saved [59351] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=439&graph_template_id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=439&graph_template_id=47’ 493s 493s 0K .......... .......... .......... .......... .......... 6.03G 493s 50K ....... 14.8T=0s 493s 493s 2025-02-19 11:07:24 (6.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=439&graph_template_id=47’ saved [59351] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=440&graph_template_id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=440&graph_template_id=47’ 493s 493s 0K .......... .......... .......... .......... .......... 5.08G 493s 50K .......... .......... .......... .......... .......... 486M 493s 100K .......... ....... 32.4T=0s 493s 493s 2025-02-19 11:07:24 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=440&graph_template_id=47’ saved [120192] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=440&graph_template_id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=440&graph_template_id=47’ 493s 493s 0K .......... .......... .......... .......... .......... 4.03G 493s 50K ....... 14.8T=0s 493s 493s 2025-02-19 11:07:24 (4.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=440&graph_template_id=47’ saved [59351] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=47 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=47’ 493s 493s 0K .......... .......... .......... 4.10G=0s 493s 493s 2025-02-19 11:07:24 (4.10 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=47’ saved [31697] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=86&graph_template_id=47 493s Connecting to localhost (localhost)|::1|:80... connected. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=86&graph_template_id=47’ 493s 493s 0K .......... .......... .......... . 6.41G=0s 493s 493s 2025-02-19 11:07:24 (6.41 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=86&graph_template_id=47’ saved [31775] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 545M 493s 50K .......... .......... .......... .......... .......... 782M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (753 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=16’ saved [120136] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=122&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=122&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.14G 493s 50K .......... .......... .......... .......... .......... 565M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (1.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=122&graph_template_id=16’ saved [120175] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=122&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=122&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 3.73G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (4.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=122&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=123&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=123&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.36G 493s 50K .......... .......... .......... .......... .......... 576M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (1.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=123&graph_template_id=16’ saved [120160] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=123&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=123&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 3.61G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (4.24 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=123&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=123&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=123&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 3.03G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (3.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=123&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=124&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=124&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.00G 493s 50K .......... .......... .......... .......... .......... 607M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=124&graph_template_id=16’ saved [120156] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=124&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=124&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 6.56G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (7.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=124&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=124&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=124&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 7.53G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (8.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=124&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=125&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=125&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 5.25G 493s 50K .......... .......... .......... .......... .......... 677M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (1.38 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=125&graph_template_id=16’ saved [120156] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=125&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=125&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 6.61G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (7.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=125&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=125&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=125&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.96G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (5.83 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=125&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=126&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=126&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.84G 493s 50K .......... .......... .......... .......... .......... 594M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (1.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=126&graph_template_id=16’ saved [120163] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=126&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=126&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.67G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (5.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=126&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=126&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=126&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 5.08G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (5.97 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=126&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=127&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=127&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.71G 493s 50K .......... .......... .......... .......... .......... 669M 493s 100K .......... ....... 32.3T=0s 493s 493s 2025-02-19 11:07:24 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=127&graph_template_id=16’ saved [120167] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=127&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=127&graph_template_id=16’ 493s 493s 0K .......... .......... .......... .......... .......... 4.78G 493s 50K ........ 16.3T=0s 493s 493s 2025-02-19 11:07:24 (5.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=127&graph_template_id=16’ saved [60144] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=16’ 493s 493s 0K .......... .......... .......... . 5.42G=0s 493s 493s 2025-02-19 11:07:24 (5.42 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=16’ saved [32053] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=25&graph_template_id=16 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=25&graph_template_id=16’ 493s 493s 0K .......... .......... .......... . 5.72G=0s 493s 493s 2025-02-19 11:07:24 (5.72 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=25&graph_template_id=16’ saved [32136] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=26 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=26’ 493s 493s 0K .......... .......... .......... .......... .......... 3.86G 493s 50K .......... .......... .......... .......... .......... 608M 493s 100K .......... ....... 32.4T=0s 493s 493s 2025-02-19 11:07:24 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=26’ saved [120209] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=186&graph_template_id=26 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=186&graph_template_id=26’ 493s 493s 0K .......... .......... .......... .......... .......... 5.87G 493s 50K .......... .......... .......... .......... .......... 579M 493s 100K .......... ....... 32.5T=0s 493s 493s 2025-02-19 11:07:24 (1.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=186&graph_template_id=26’ saved [120247] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=186&graph_template_id=26 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 302 Found 493s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 493s Reusing existing connection to [localhost]:80. 493s HTTP request sent, awaiting response... 200 OK 493s Length: unspecified [text/html] 493s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=186&graph_template_id=26’ 493s 493s 0K .......... .......... .......... .......... .......... 4.52G 493s 50K .......... ... 24.4T=0s 493s 493s 2025-02-19 11:07:24 (5.71 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=186&graph_template_id=26’ saved [64625] 493s 493s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=187&graph_template_id=26 493s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=187&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 3.11G 494s 50K .......... .......... .......... .......... .......... 487M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:24 (992 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=187&graph_template_id=26’ saved [120233] 494s 494s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=187&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:24-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=187&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 4.35G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (5.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=187&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=187&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=187&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 4.81G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (6.07 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=187&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=188&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=188&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 6.08G 494s 50K .......... .......... .......... .......... .......... 602M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (1.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=188&graph_template_id=26’ saved [120229] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=188&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=188&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 4.42G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (5.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=188&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=188&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=188&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.62G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (7.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=188&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=189&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=189&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 7.70G 494s 50K .......... .......... .......... .......... .......... 350M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (786 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=189&graph_template_id=26’ saved [120229] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=189&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=189&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 3.97G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (5.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=189&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=189&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=189&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 3.93G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (4.96 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=189&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=190&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=190&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 1.21G 494s 50K .......... .......... .......... .......... .......... 646M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (998 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=190&graph_template_id=26’ saved [120237] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=190&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=190&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 4.42G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (5.58 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=190&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=190&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=190&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 4.38G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (5.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=190&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=191&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=191&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.89G 494s 50K .......... .......... .......... .......... .......... 516M 494s 100K .......... ....... 32.5T=0s 494s 494s 2025-02-19 11:07:25 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=191&graph_template_id=26’ saved [120247] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=191&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=191&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.35G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (6.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=191&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=191&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=191&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.98G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (7.54 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=191&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=192&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=192&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.92G 494s 50K .......... .......... .......... .......... .......... 142M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (325 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=192&graph_template_id=26’ saved [120233] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=192&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=192&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.86G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (7.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=192&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=192&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=192&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 6.28G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (7.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=192&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=193&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=193&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 7.15G 494s 50K .......... .......... .......... .......... .......... 515M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (1.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=193&graph_template_id=26’ saved [120229] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=193&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=193&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 7.02G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (8.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=193&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=193&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=193&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.98G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (7.55 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=193&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=194&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=194&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 5.84G 494s 50K .......... .......... .......... .......... .......... 653M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=194&graph_template_id=26’ saved [120229] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=194&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=194&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 4.51G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (5.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=194&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=194&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=194&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 3.92G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (4.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=194&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=195&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=195&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 6.71G 494s 50K .......... .......... .......... .......... .......... 494M 494s 100K .......... ....... 32.4T=0s 494s 494s 2025-02-19 11:07:25 (1.06 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=195&graph_template_id=26’ saved [120236] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=195&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 302 Found 494s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=195&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .......... .......... 6.68G 494s 50K .......... ... 24.4T=0s 494s 494s 2025-02-19 11:07:25 (8.43 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=195&graph_template_id=26’ saved [64625] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .. 4.73G=0s 494s 494s 2025-02-19 11:07:25 (4.73 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=26’ saved [33473] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=37&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=37&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .. 4.57G=0s 494s 494s 2025-02-19 11:07:25 (4.57 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=37&graph_template_id=26’ saved [33552] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=36&graph_template_id=26 494s Reusing existing connection to [localhost]:80. 494s HTTP request sent, awaiting response... 200 OK 494s Length: unspecified [text/html] 494s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=36&graph_template_id=26’ 494s 494s 0K .......... .......... .......... .. 7.47G=0s 494s 494s 2025-02-19 11:07:25 (7.47 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=36&graph_template_id=26’ saved [33552] 494s 494s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=25 494s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.07G 495s 50K .......... .......... .......... .......... .......... 135M 495s 100K .......... ....... 32.4T=0s 495s 495s 2025-02-19 11:07:25 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=25’ saved [120238] 495s 495s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=176&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=176&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.01G 495s 50K .......... .......... .......... .......... .......... 125M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:25 (289 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=176&graph_template_id=25’ saved [120277] 495s 495s --2025-02-19 11:07:25-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=176&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=176&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 2.53G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (3.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=176&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=177&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=177&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.19G 495s 50K .......... .......... .......... .......... .......... 117M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (267 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=177&graph_template_id=25’ saved [120262] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=177&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=177&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.62G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (5.85 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=177&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=177&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=177&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.16G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (6.52 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=177&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=178&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=178&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 2.99G 495s 50K .......... .......... .......... .......... .......... 136M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (306 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=178&graph_template_id=25’ saved [120258] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=178&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=178&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.97G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (6.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=178&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=178&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=178&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.55G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (5.76 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=178&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=179&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=179&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.05G 495s 50K .......... .......... .......... .......... .......... 342M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (762 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=179&graph_template_id=25’ saved [120258] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=179&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=179&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 3.02G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (3.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=179&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=179&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=179&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.55G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (7.03 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=179&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=180&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=180&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.88G 495s 50K .......... .......... .......... .......... .......... 115M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (266 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=180&graph_template_id=25’ saved [120266] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=180&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Connecting to localhost (localhost)|::1|:80... connected. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=180&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 627M 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (793 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=180&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=180&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=180&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.25G 495s 50K .......... ... 154M=0s 495s 495s 2025-02-19 11:07:26 (673 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=180&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=181&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=181&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.58G 495s 50K .......... .......... .......... .......... .......... 507M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=181&graph_template_id=25’ saved [120277] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=181&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=181&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.32G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (7.99 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=181&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=181&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=181&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.15G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (7.78 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=181&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=182&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=182&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.66G 495s 50K .......... .......... .......... .......... .......... 120M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (277 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=182&graph_template_id=25’ saved [120262] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=182&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=182&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.48G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (5.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=182&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=182&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=182&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.41G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (6.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=182&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=183&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=183&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.12G 495s 50K .......... .......... .......... .......... .......... 662M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (1.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=183&graph_template_id=25’ saved [120258] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=183&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=183&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.71G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (8.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=183&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=183&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=183&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 4.74G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (6.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=183&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=184&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=184&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 3.93G 495s 50K .......... .......... .......... .......... .......... 428M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (909 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=184&graph_template_id=25’ saved [120258] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=184&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=184&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 7.98G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (10.1 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=184&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=184&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=184&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.07G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (7.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=184&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=185&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=185&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 6.06G 495s 50K .......... .......... .......... .......... .......... 644M 495s 100K .......... ....... 32.5T=0s 495s 495s 2025-02-19 11:07:26 (1.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=185&graph_template_id=25’ saved [120265] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=185&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 302 Found 495s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=185&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .......... .......... 5.29G 495s 50K .......... ... 24.7T=0s 495s 495s 2025-02-19 11:07:26 (6.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=185&graph_template_id=25’ saved [64765] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .. 5.75G=0s 495s 495s 2025-02-19 11:07:26 (5.75 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=25’ saved [33484] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=34&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 495s HTTP request sent, awaiting response... 200 OK 495s Length: unspecified [text/html] 495s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=34&graph_template_id=25’ 495s 495s 0K .......... .......... .......... .. 5.81G=0s 495s 495s 2025-02-19 11:07:26 (5.81 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=34&graph_template_id=25’ saved [33561] 495s 495s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=35&graph_template_id=25 495s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=35&graph_template_id=25’ 496s 496s 0K .......... .......... .......... .. 5.23G=0s 496s 496s 2025-02-19 11:07:26 (5.23 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=35&graph_template_id=25’ saved [33561] 496s 496s --2025-02-19 11:07:26-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 4.01G 496s 50K .......... .......... .......... .......... .......... 577M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:26 (1.16 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=27’ saved [120210] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=196&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=196&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 4.46G 496s 50K .......... .......... .......... .......... .......... 610M 496s 100K .......... ....... 32.5T=0s 496s 496s 2025-02-19 11:07:27 (1.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=196&graph_template_id=27’ saved [120245] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=196&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=196&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.47G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (6.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=196&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=197&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=197&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.01G 496s 50K .......... .......... .......... .......... .......... 756M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (1.54 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=197&graph_template_id=27’ saved [120234] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=197&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=197&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.12G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (7.72 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=197&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=197&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=197&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.34G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (8.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=197&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=198&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=198&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.02G 496s 50K .......... .......... .......... .......... .......... 686M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (1.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=198&graph_template_id=27’ saved [120230] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=198&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=198&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 3.03G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (3.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=198&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=198&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=198&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.01G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (6.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=198&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=199&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=199&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.74G 496s 50K .......... .......... .......... .......... .......... 616M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (1.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=199&graph_template_id=27’ saved [120230] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=199&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=199&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.14G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (6.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=199&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=199&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=199&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.01G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (7.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=199&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=200&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=200&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.52G 496s 50K .......... .......... .......... .......... .......... 700M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (1.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=200&graph_template_id=27’ saved [120238] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=200&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=200&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 7.28G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (9.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=200&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=200&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=200&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.81G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (7.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=200&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=201&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=201&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.23G 496s 50K .......... .......... .......... .......... .......... 295M 496s 100K .......... ....... 32.5T=0s 496s 496s 2025-02-19 11:07:27 (657 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=201&graph_template_id=27’ saved [120246] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=201&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=201&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 3.45G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (4.36 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=201&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=201&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=201&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 2.71G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (3.42 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=201&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=202&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=202&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 4.67G 496s 50K .......... .......... .......... .......... .......... 119M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (274 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=202&graph_template_id=27’ saved [120234] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=202&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=202&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 4.69G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (5.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=202&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=202&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=202&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.40G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (6.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=202&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=203&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=203&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.44G 496s 50K .......... .......... .......... .......... .......... 407M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (891 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=203&graph_template_id=27’ saved [120230] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=203&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=203&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 4.04G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (5.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=203&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=203&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=203&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.30G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (6.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=203&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=204&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=204&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 5.11G 496s 50K .......... .......... .......... .......... .......... 598M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (1.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=204&graph_template_id=27’ saved [120230] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=204&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=204&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 7.50G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (9.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=204&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=204&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=204&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.30G 496s 50K .......... ... 24.4T=0s 496s 496s 2025-02-19 11:07:27 (7.95 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=204&graph_template_id=27’ saved [64626] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=205&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 200 OK 496s Length: unspecified [text/html] 496s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=205&graph_template_id=27’ 496s 496s 0K .......... .......... .......... .......... .......... 6.48G 496s 50K .......... .......... .......... .......... .......... 581M 496s 100K .......... ....... 32.4T=0s 496s 496s 2025-02-19 11:07:27 (1.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=205&graph_template_id=27’ saved [120237] 496s 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=205&graph_template_id=27 496s Reusing existing connection to [localhost]:80. 496s HTTP request sent, awaiting response... 302 Found 496s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 496s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 496s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=205&graph_template_id=27’ 497s 497s 0K .......... .......... .......... .......... .......... 4.27G 497s 50K .......... ... 24.4T=0s 497s 497s 2025-02-19 11:07:27 (5.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=205&graph_template_id=27’ saved [64626] 497s 497s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=27 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=27’ 497s 497s 0K .......... .......... .......... .. 7.46G=0s 497s 497s 2025-02-19 11:07:27 (7.46 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=27’ saved [33475] 497s 497s --2025-02-19 11:07:27-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=38&graph_template_id=27 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=38&graph_template_id=27’ 497s 497s 0K .......... .......... .......... .. 7.31G=0s 497s 497s 2025-02-19 11:07:28 (7.31 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=38&graph_template_id=27’ saved [33551] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=39&graph_template_id=27 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=39&graph_template_id=27’ 497s 497s 0K .......... .......... .......... .. 7.15G=0s 497s 497s 2025-02-19 11:07:28 (7.15 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=39&graph_template_id=27’ saved [33552] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 4.73G 497s 50K .......... .......... .......... .......... .......... 661M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (1.33 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=18’ saved [120164] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=134&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=134&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.70G 497s 50K .......... .......... .......... .......... .......... 703M 497s 100K .......... ....... 32.4T=0s 497s 497s 2025-02-19 11:07:28 (1.46 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=134&graph_template_id=18’ saved [120203] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=134&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=134&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.35G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (7.48 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=134&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=135&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=135&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 4.42G 497s 50K .......... .......... .......... .......... .......... 533M 497s 100K .......... ....... 32.4T=0s 497s 497s 2025-02-19 11:07:28 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=135&graph_template_id=18’ saved [120188] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=135&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=135&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.98G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (8.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=135&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=135&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=135&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.34G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (7.47 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=135&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=136&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=136&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 5.10G 497s 50K .......... .......... .......... .......... .......... 607M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=136&graph_template_id=18’ saved [120184] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=136&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=136&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 7.59G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (8.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=136&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=136&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=136&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 5.85G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (6.88 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=136&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=137&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=137&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 5.27G 497s 50K .......... .......... .......... .......... .......... 610M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (1.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=137&graph_template_id=18’ saved [120184] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=137&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=137&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.23G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (7.34 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=137&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=137&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=137&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.74G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (7.94 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=137&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=138&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=138&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.21G 497s 50K .......... .......... .......... .......... .......... 512M 497s 100K .......... ....... 32.4T=0s 497s 497s 2025-02-19 11:07:28 (1.09 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=138&graph_template_id=18’ saved [120191] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=138&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=138&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 7.30G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (8.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=138&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=138&graph_template_id=18 497s Connecting to localhost (localhost)|::1|:80... connected. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=138&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 6.68G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (7.87 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=138&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=139&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=139&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 4.18G 497s 50K .......... .......... .......... .......... .......... 658M 497s 100K .......... ....... 32.4T=0s 497s 497s 2025-02-19 11:07:28 (1.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=139&graph_template_id=18’ saved [120195] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=139&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=139&graph_template_id=18’ 497s 497s 0K .......... .......... .......... .......... .......... 7.76G 497s 50K ........ 16.5T=0s 497s 497s 2025-02-19 11:07:28 (9.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=139&graph_template_id=18’ saved [60287] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=18’ 497s 497s 0K .......... .......... .......... . 7.05G=0s 497s 497s 2025-02-19 11:07:28 (7.05 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=18’ saved [32064] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=27&graph_template_id=18 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=27&graph_template_id=18’ 497s 497s 0K .......... .......... .......... . 4.63G=0s 497s 497s 2025-02-19 11:07:28 (4.63 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=27&graph_template_id=18’ saved [32153] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 5.35G 497s 50K .......... .......... .......... .......... .......... 134M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=19’ saved [120132] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=140&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=140&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 7.19G 497s 50K .......... .......... .......... .......... .......... 51.4M 497s 100K .......... ....... 32.3T=0.001s 497s 497s 2025-02-19 11:07:28 (120 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=140&graph_template_id=19’ saved [120171] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=140&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=140&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 6.05G 497s 50K ........ 16.2T=0s 497s 497s 2025-02-19 11:07:28 (7.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=140&graph_template_id=19’ saved [60112] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=141&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=141&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 5.64G 497s 50K .......... .......... .......... .......... .......... 134M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (306 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=141&graph_template_id=19’ saved [120156] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=141&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=141&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 6.18G 497s 50K ........ 16.2T=0s 497s 497s 2025-02-19 11:07:28 (7.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=141&graph_template_id=19’ saved [60112] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=141&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=141&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 6.75G 497s 50K ........ 16.2T=0s 497s 497s 2025-02-19 11:07:28 (7.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=141&graph_template_id=19’ saved [60112] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=142&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=142&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 4.84G 497s 50K .......... .......... .......... .......... .......... 350M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (767 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=142&graph_template_id=19’ saved [120152] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=142&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=142&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 6.81G 497s 50K ........ 16.2T=0s 497s 497s 2025-02-19 11:07:28 (8.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=142&graph_template_id=19’ saved [60112] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=142&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 302 Found 497s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=142&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 8.44G 497s 50K ........ 16.2T=0s 497s 497s 2025-02-19 11:07:28 (9.91 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=142&graph_template_id=19’ saved [60112] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=143&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 497s HTTP request sent, awaiting response... 200 OK 497s Length: unspecified [text/html] 497s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=143&graph_template_id=19’ 497s 497s 0K .......... .......... .......... .......... .......... 5.22G 497s 50K .......... .......... .......... .......... .......... 536M 497s 100K .......... ....... 32.3T=0s 497s 497s 2025-02-19 11:07:28 (1.12 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=143&graph_template_id=19’ saved [120152] 497s 497s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=143&graph_template_id=19 497s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 498s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=143&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 7.33G 498s 50K ........ 16.2T=0s 498s 498s 2025-02-19 11:07:28 (8.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=143&graph_template_id=19’ saved [60112] 498s 498s --2025-02-19 11:07:28-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=143&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=143&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 5.91G 498s 50K ........ 16.2T=0s 498s 498s 2025-02-19 11:07:29 (6.93 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=143&graph_template_id=19’ saved [60112] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=144&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=144&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 5.07G 498s 50K .......... .......... .......... .......... .......... 610M 498s 100K .......... ....... 32.3T=0s 498s 498s 2025-02-19 11:07:29 (1.25 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=144&graph_template_id=19’ saved [120159] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=144&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=144&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 8.15G 498s 50K ........ 16.2T=0s 498s 498s 2025-02-19 11:07:29 (9.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=144&graph_template_id=19’ saved [60112] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=144&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=144&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 7.00G 498s 50K ........ 16.2T=0s 498s 498s 2025-02-19 11:07:29 (8.22 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=144&graph_template_id=19’ saved [60112] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=145&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=145&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 5.58G 498s 50K .......... .......... .......... .......... .......... 329M 498s 100K .......... ....... 32.3T=0s 498s 498s 2025-02-19 11:07:29 (731 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=145&graph_template_id=19’ saved [120163] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=145&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=145&graph_template_id=19’ 498s 498s 0K .......... .......... .......... .......... .......... 8.49G 498s 50K ........ 16.2T=0s 498s 498s 2025-02-19 11:07:29 (9.97 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=145&graph_template_id=19’ saved [60112] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=19’ 498s 498s 0K .......... .......... .......... . 5.89G=0s 498s 498s 2025-02-19 11:07:29 (5.89 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=19’ saved [32051] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=28&graph_template_id=19 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=28&graph_template_id=19’ 498s 498s 0K .......... .......... .......... . 5.79G=0s 498s 498s 2025-02-19 11:07:29 (5.79 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=28&graph_template_id=19’ saved [32133] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 2.44G 498s 50K .......... .......... .......... .......... .......... 121M 498s 100K .......... ....... 32.3T=0s 498s 498s 2025-02-19 11:07:29 (272 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=20’ saved [120175] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=146&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=146&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 6.76G 498s 50K .......... .......... .......... .......... .......... 133M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (307 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=146&graph_template_id=20’ saved [120211] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=146&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=146&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 7.64G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (9.00 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=146&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=147&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=147&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 7.45G 498s 50K .......... .......... .......... .......... .......... 122M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (283 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=147&graph_template_id=20’ saved [120199] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=147&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=147&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 6.48G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (7.63 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=147&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=147&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=147&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 6.39G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (7.53 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=147&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=148&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=148&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 5.00G 498s 50K .......... .......... .......... .......... .......... 576M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (1.19 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=148&graph_template_id=20’ saved [120195] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=148&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=148&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 7.97G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (9.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=148&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=148&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=148&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 4.08G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (4.81 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=148&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=149&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=149&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 4.49G 498s 50K .......... .......... .......... .......... .......... 650M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (1.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=149&graph_template_id=20’ saved [120195] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=149&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=149&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 8.42G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (9.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=149&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=149&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=149&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 8.35G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (9.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=149&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=150&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=150&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 6.62G 498s 50K .......... .......... .......... .......... .......... 517M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (1.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=150&graph_template_id=20’ saved [120202] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=150&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=150&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 7.26G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (8.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=150&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=150&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=150&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 7.55G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (8.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=150&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=151&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=151&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 5.95G 498s 50K .......... .......... .......... .......... .......... 706M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (1.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=151&graph_template_id=20’ saved [120206] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=151&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=151&graph_template_id=20’ 498s 498s 0K .......... .......... .......... .......... .......... 5.81G 498s 50K ........ 16.6T=0s 498s 498s 2025-02-19 11:07:29 (6.84 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=151&graph_template_id=20’ saved [60341] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=20’ 498s 498s 0K .......... .......... .......... . 7.26G=0s 498s 498s 2025-02-19 11:07:29 (7.26 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=20’ saved [32069] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=29&graph_template_id=20 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=29&graph_template_id=20’ 498s 498s 0K .......... .......... .......... . 5.56G=0s 498s 498s 2025-02-19 11:07:29 (5.56 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=29&graph_template_id=20’ saved [32159] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=32 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=32’ 498s 498s 0K .......... .......... .......... .......... .......... 3.85G 498s 50K .......... .......... .......... .......... .......... 129M 498s 100K .......... ....... 32.4T=0s 498s 498s 2025-02-19 11:07:29 (292 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&graph_template_id=32’ saved [120204] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=267&graph_template_id=32 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=267&graph_template_id=32’ 498s 498s 0K .......... .......... .......... .......... .......... 3.75G 498s 50K .......... .......... .......... .......... .......... 42.9M 498s 100K .......... ....... 32.5T=0.001s 498s 498s 2025-02-19 11:07:29 (99.6 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=267&graph_template_id=32’ saved [120242] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=267&graph_template_id=32 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 302 Found 498s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 498s Reusing existing connection to [localhost]:80. 498s HTTP request sent, awaiting response... 200 OK 498s Length: unspecified [text/html] 498s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=267&graph_template_id=32’ 498s 498s 0K .......... .......... .......... .......... .......... 6.08G 498s 50K .......... ... 24.4T=0s 498s 498s 2025-02-19 11:07:29 (7.67 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=267&graph_template_id=32’ saved [64599] 498s 498s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=268&graph_template_id=32 498s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=268&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.26G 499s 50K .......... .......... .......... .......... .......... 137M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:29 (314 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=268&graph_template_id=32’ saved [120228] 499s 499s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=268&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:29-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=268&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.11G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (7.72 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=268&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=268&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=268&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 4.45G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (5.62 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=268&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=269&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=269&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.70G 499s 50K .......... .......... .......... .......... .......... 383M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (844 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=269&graph_template_id=32’ saved [120224] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=269&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=269&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 7.30G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (9.21 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=269&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=269&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=269&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.79G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (8.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=269&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=270&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=270&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.29G 499s 50K .......... .......... .......... .......... .......... 159M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (364 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=270&graph_template_id=32’ saved [120224] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=270&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=270&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.56G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (7.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=270&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=270&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=270&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 7.06G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (8.91 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=270&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=271&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=271&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.63G 499s 50K .......... .......... .......... .......... .......... 508M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (1.08 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=271&graph_template_id=32’ saved [120232] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=271&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=271&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.34G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (6.74 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=271&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=271&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=271&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.95G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (8.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=271&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=272&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=272&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.46G 499s 50K .......... .......... .......... .......... .......... 139M 499s 100K .......... ....... 32.5T=0s 499s 499s 2025-02-19 11:07:30 (320 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=272&graph_template_id=32’ saved [120242] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=272&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=272&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 4.61G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (5.82 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=272&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=272&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=272&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.77G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (7.28 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=272&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=273&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=273&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 7.53G 499s 50K .......... .......... .......... .......... .......... 470M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=273&graph_template_id=32’ saved [120228] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=273&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=273&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 7.74G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (9.77 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=273&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=273&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=273&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 3.27G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (4.13 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=273&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=274&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=274&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 3.84G 499s 50K .......... .......... .......... .......... .......... 148M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (335 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=274&graph_template_id=32’ saved [120224] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=274&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Connecting to localhost (localhost)|::1|:80... connected. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=274&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.41G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (6.83 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=274&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=274&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=274&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.73G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (8.49 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=274&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=275&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=275&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 7.56G 499s 50K .......... .......... .......... .......... .......... 471M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (1.02 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=275&graph_template_id=32’ saved [120224] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=275&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=275&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 2.85G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (3.60 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=275&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=275&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=275&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.10G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (6.43 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=275&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_edit&id=276&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=276&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 5.73G 499s 50K .......... .......... .......... .......... .......... 102M 499s 100K .......... ....... 32.4T=0s 499s 499s 2025-02-19 11:07:30 (235 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_edit&id=276&graph_template_id=32’ saved [120231] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=276&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 302 Found 499s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=276&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .......... .......... 6.82G 499s 50K .......... ... 24.4T=0s 499s 499s 2025-02-19 11:07:30 (8.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=276&graph_template_id=32’ saved [64599] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .. 6.20G=0s 499s 499s 2025-02-19 11:07:30 (6.20 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&graph_template_id=32’ saved [33472] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=55&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=55&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .. 7.01G=0s 499s 499s 2025-02-19 11:07:30 (7.01 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=55&graph_template_id=32’ saved [33550] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/graph_templates_inputs.php?action=input_edit&id=56&graph_template_id=32 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=56&graph_template_id=32’ 499s 499s 0K .......... .......... .......... .. 6.82G=0s 499s 499s 2025-02-19 11:07:30 (6.82 GB/s) - ‘localhost/cacti/graph_templates_inputs.php?action=input_edit&id=56&graph_template_id=32’ saved [33550] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=3 499s Reusing existing connection to [localhost]:80. 499s HTTP request sent, awaiting response... 200 OK 499s Length: unspecified [text/html] 499s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=3’ 499s 499s 0K .......... .......... .......... .......... .......... 4.84G 499s 50K ....... 14.1T=0s 499s 499s 2025-02-19 11:07:30 (5.57 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=3’ saved [58951] 499s 499s --2025-02-19 11:07:30-- http://localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=2 499s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=2’ 500s 500s 0K .......... .......... .......... .......... .......... 7.47G 500s 50K ....... 14.1T=0s 500s 500s 2025-02-19 11:07:30 (8.60 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=2’ saved [58953] 500s 500s --2025-02-19 11:07:30-- http://localhost/cacti/data_templates.php?action=rrd_add&id=2 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=2&view_rrd=671 [following] 500s --2025-02-19 11:07:30-- http://localhost/cacti/data_templates.php?action=template_edit&id=2&view_rrd=671 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=2’ 500s 500s 0K .......... .......... .......... .......... .......... 6.33G 500s 50K ....... 14.6T=0s 500s 500s 2025-02-19 11:07:31 (7.32 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=2’ saved [59201] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=11 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=11’ 500s 500s 0K .......... .......... .......... .......... .......... 7.92G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (9.36 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=11’ saved [60541] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=10 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=10’ 500s 500s 0K .......... .......... .......... .......... .......... 6.91G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (8.17 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=10’ saved [60545] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=9 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=9’ 500s 500s 0K .......... .......... .......... .......... .......... 4.59G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (5.42 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=9’ saved [60545] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=7 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=7’ 500s 500s 0K .......... .......... .......... .......... .......... 5.25G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (6.21 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=7’ saved [60547] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=8 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=8’ 500s 500s 0K .......... .......... .......... .......... .......... 8.17G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (9.66 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=8’ saved [60549] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=5 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=5’ 500s 500s 0K .......... .......... .......... .......... .......... 5.87G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (6.94 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=5’ saved [60541] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=6 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=6’ 500s 500s 0K .......... .......... .......... .......... .......... 6.13G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (7.25 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=6’ saved [60555] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=4 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=4’ 500s 500s 0K .......... .......... .......... .......... .......... 4.65G 500s 50K ......... 17.0T=0s 500s 500s 2025-02-19 11:07:31 (5.50 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=4’ saved [60557] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=3 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=3&view_rrd=672 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=3&view_rrd=672 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=3’ 500s 500s 0K .......... .......... .......... .......... .......... 7.49G 500s 50K ......... 17.5T=0s 500s 500s 2025-02-19 11:07:31 (8.89 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=3’ saved [60795] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=4 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=4&view_rrd=673 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=673 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=4’ 500s 500s 0K .......... .......... .......... .......... .......... 7.21G 500s 50K ....... 14.0T=0s 500s 500s 2025-02-19 11:07:31 (8.30 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=4’ saved [58921] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=1 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=1&view_rrd=674 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=674 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=1’ 500s 500s 0K .......... .......... .......... .......... .......... 8.43G 500s 50K ....... 14.0T=0s 500s 500s 2025-02-19 11:07:31 (9.69 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=1’ saved [58906] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=14 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=14&view_rrd=675 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=675 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=14’ 500s 500s 0K .......... .......... .......... .......... ...... 5.96G=0s 500s 500s 2025-02-19 11:07:31 (5.96 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=14’ saved [47918] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=15 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=15&view_rrd=676 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=676 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=15’ 500s 500s 0K .......... .......... .......... .......... ...... 7.09G=0s 500s 500s 2025-02-19 11:07:31 (7.09 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=15’ saved [47893] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=12 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=12&view_rrd=677 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=677 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=12’ 500s 500s 0K .......... .......... .......... .......... ...... 6.96G=0s 500s 500s 2025-02-19 11:07:31 (6.96 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=12’ saved [47911] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=13 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=13&view_rrd=678 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=678 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=13’ 500s 500s 0K .......... .......... .......... .......... ...... 7.28G=0s 500s 500s 2025-02-19 11:07:31 (7.28 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=13’ saved [47891] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=11 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=11&view_rrd=679 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=679 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=11’ 500s 500s 0K .......... .......... .......... .......... ...... 7.27G=0s 500s 500s 2025-02-19 11:07:31 (7.27 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=11’ saved [47884] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=10 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=10&view_rrd=680 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=680 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=10’ 500s 500s 0K .......... .......... .......... .......... ...... 4.78G=0s 500s 500s 2025-02-19 11:07:31 (4.78 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=10’ saved [47894] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=48 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=48&view_rrd=681 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=681 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=48’ 500s 500s 0K .......... .......... .......... .......... ...... 3.93G=0s 500s 500s 2025-02-19 11:07:31 (3.93 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=48’ saved [47142] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=46 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=46&view_rrd=682 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=682 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=46’ 500s 500s 0K .......... .......... .......... .......... ...... 2.08G=0s 500s 500s 2025-02-19 11:07:31 (2.08 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=46’ saved [47146] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=47 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=47&view_rrd=683 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=683 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=47’ 500s 500s 0K .......... .......... .......... .......... ...... 4.12G=0s 500s 500s 2025-02-19 11:07:31 (4.12 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=47’ saved [47162] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=87 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=87’ 500s 500s 0K .......... .......... .......... .......... ...... 5.28G=0s 500s 500s 2025-02-19 11:07:31 (5.28 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=87’ saved [47262] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=86 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=86’ 500s 500s 0K .......... .......... .......... .......... ...... 8.33G=0s 500s 500s 2025-02-19 11:07:31 (8.33 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=86’ saved [47263] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=rrd_add&id=49 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 302 Found 500s Location: data_templates.php?action=template_edit&id=49&view_rrd=684 [following] 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=49&view_rrd=684 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=49’ 500s 500s 0K .......... .......... .......... .......... ...... 6.08G=0s 500s 500s 2025-02-19 11:07:31 (6.08 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=49’ saved [47492] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=96 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=96’ 500s 500s 0K .......... .......... .......... .......... ........ 4.60G=0s 500s 500s 2025-02-19 11:07:31 (4.60 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=96’ saved [49912] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=95 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=95’ 500s 500s 0K .......... .......... .......... .......... ........ 6.00G=0s 500s 500s 2025-02-19 11:07:31 (6.00 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=95’ saved [49912] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=94 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=94’ 500s 500s 0K .......... .......... .......... .......... ........ 8.67G=0s 500s 500s 2025-02-19 11:07:31 (8.67 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=94’ saved [49912] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=93 500s Reusing existing connection to [localhost]:80. 500s HTTP request sent, awaiting response... 200 OK 500s Length: unspecified [text/html] 500s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=93’ 500s 500s 0K .......... .......... .......... .......... ........ 8.65G=0s 500s 500s 2025-02-19 11:07:31 (8.65 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=93’ saved [49912] 500s 500s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=92 500s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=92’ 501s 501s 0K .......... .......... .......... .......... ........ 8.67G=0s 501s 501s 2025-02-19 11:07:31 (8.67 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=92’ saved [49912] 501s 501s --2025-02-19 11:07:31-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=91 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=91’ 501s 501s 0K .......... .......... .......... .......... ........ 4.86G=0s 501s 501s 2025-02-19 11:07:32 (4.86 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=91’ saved [49912] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=90 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=90’ 501s 501s 0K .......... .......... .......... .......... ........ 8.64G=0s 501s 501s 2025-02-19 11:07:32 (8.64 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=90’ saved [49912] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=88 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=88’ 501s 501s 0K .......... .......... .......... .......... ........ 5.95G=0s 501s 501s 2025-02-19 11:07:32 (5.95 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=88’ saved [49912] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=97 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=97’ 501s 501s 0K .......... .......... .......... .......... ........ 5.60G=0s 501s 501s 2025-02-19 11:07:32 (5.60 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=97’ saved [49912] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=89 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=89’ 501s 501s 0K .......... .......... .......... .......... ........ 3.57G=0s 501s 501s 2025-02-19 11:07:32 (3.57 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=89’ saved [49914] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=rrd_add&id=50 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 302 Found 501s Location: data_templates.php?action=template_edit&id=50&view_rrd=685 [following] 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=50&view_rrd=685 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=50’ 501s 501s 0K .......... .......... .......... .......... ........ 2.42G=0s 501s 501s 2025-02-19 11:07:32 (2.42 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=50’ saved [50167] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=35 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=35’ 501s 501s 0K .......... .......... .......... .......... .......... 7.11G 501s 50K ....... 14.2T=0s 501s 501s 2025-02-19 11:07:32 (8.19 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=35’ saved [59004] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=36 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=36’ 501s 501s 0K .......... .......... .......... .......... .......... 7.49G 501s 50K ....... 14.2T=0s 501s 501s 2025-02-19 11:07:32 (8.63 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=36’ saved [59004] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=rrd_add&id=26 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 302 Found 501s Location: data_templates.php?action=template_edit&id=26&view_rrd=686 [following] 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=26&view_rrd=686 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=26’ 501s 501s 0K .......... .......... .......... .......... .......... 2.24G 501s 50K ....... 14.6T=0s 501s 501s 2025-02-19 11:07:32 (2.60 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=26’ saved [59239] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=34 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=34’ 501s 501s 0K .......... .......... .......... .......... .......... 6.77G 501s 50K ....... 14.3T=0s 501s 501s 2025-02-19 11:07:32 (7.80 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=34’ saved [59040] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=33 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=33’ 501s 501s 0K .......... .......... .......... .......... .......... 7.59G 501s 50K ....... 14.3T=0s 501s 501s 2025-02-19 11:07:32 (8.75 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=33’ saved [59040] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=rrd_add&id=25 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 302 Found 501s Location: data_templates.php?action=template_edit&id=25&view_rrd=687 [following] 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=25&view_rrd=687 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=25’ 501s 501s 0K .......... .......... .......... .......... .......... 5.61G 501s 50K ....... 14.7T=0s 501s 501s 2025-02-19 11:07:32 (6.50 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=25’ saved [59279] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=38 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=38’ 501s 501s 0K .......... .......... .......... .......... .......... 7.53G 501s 50K ....... 14.2T=0s 501s 501s 2025-02-19 11:07:32 (8.67 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=38’ saved [59000] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=37 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=37’ 501s 501s 0K .......... .......... .......... .......... .......... 8.64G 501s 50K ....... 14.2T=0s 501s 501s 2025-02-19 11:07:32 (9.96 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=37’ saved [59002] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=rrd_add&id=27 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 302 Found 501s Location: data_templates.php?action=template_edit&id=27&view_rrd=688 [following] 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=27&view_rrd=688 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=27’ 501s 501s 0K .......... .......... .......... .......... .......... 5.94G 501s 50K ....... 14.6T=0s 501s 501s 2025-02-19 11:07:32 (6.88 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=27’ saved [59242] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=54 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=54’ 501s 501s 0K .......... .......... .......... .......... .......... 5.83G 501s 50K ....... 14.2T=0s 501s 501s 2025-02-19 11:07:32 (6.72 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=54’ saved [58994] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=55 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=55’ 501s 501s 0K .......... .......... .......... .......... .......... 8.13G 501s 50K ....... 14.2T=0s 501s 501s 2025-02-19 11:07:32 (9.37 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=55’ saved [58994] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=rrd_add&id=32 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 302 Found 501s Location: data_templates.php?action=template_edit&id=32&view_rrd=689 [following] 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=32&view_rrd=689 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=32’ 501s 501s 0K .......... .......... .......... .......... .......... 6.06G 501s 50K ....... 14.6T=0s 501s 501s 2025-02-19 11:07:32 (7.01 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=32’ saved [59233] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=41 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=41’ 501s 501s 0K .......... .......... .......... .......... .......... 7.38G 501s 50K ....... 14.7T=0s 501s 501s 2025-02-19 11:07:32 (8.54 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=41’ saved [59274] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=40 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=40’ 501s 501s 0K .......... .......... .......... .......... .......... 6.74G 501s 50K ....... 14.7T=0s 501s 501s 2025-02-19 11:07:32 (7.80 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=40’ saved [59274] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=39 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=39’ 501s 501s 0K .......... .......... .......... .......... .......... 6.89G 501s 50K ....... 14.7T=0s 501s 501s 2025-02-19 11:07:32 (7.98 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=39’ saved [59274] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=rrd_add&id=28 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 302 Found 501s Location: data_templates.php?action=template_edit&id=28&view_rrd=690 [following] 501s --2025-02-19 11:07:32-- http://localhost/cacti/data_templates.php?action=template_edit&id=28&view_rrd=690 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/data_templates.php?action=rrd_add&id=28’ 501s 501s 0K .......... .......... .......... .......... .......... 5.03G 501s 50K ........ 15.1T=0s 501s 501s 2025-02-19 11:07:32 (5.85 GB/s) - ‘localhost/cacti/data_templates.php?action=rrd_add&id=28’ saved [59522] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 5.33G 501s 50K .......... .......... ... 350M=0s 501s 501s 2025-02-19 11:07:32 (957 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=4’ saved [75545] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=29&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=29&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 6.37G 501s 50K .......... .......... ... 320M=0s 501s 501s 2025-02-19 11:07:32 (900 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=29&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=30&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=30&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 6.18G 501s 50K .......... .......... ... 314M=0s 501s 501s 2025-02-19 11:07:32 (881 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=30&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=31&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=31&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 4.80G 501s 50K .......... .......... ... 239M=0s 501s 501s 2025-02-19 11:07:32 (673 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=31&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=32&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=32&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 4.99G 501s 50K .......... .......... ... 291M=0s 501s 501s 2025-02-19 11:07:32 (806 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=32&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=33&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=33&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 5.63G 501s 50K .......... .......... ... 308M=0s 501s 501s 2025-02-19 11:07:32 (859 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=33&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=34&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=34&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 6.43G 501s 50K .......... .......... ... 349M=0s 501s 501s 2025-02-19 11:07:32 (973 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=34&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=35&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=35&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 5.13G 501s 50K .......... .......... ... 148M=0s 501s 501s 2025-02-19 11:07:32 (432 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=35&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=36&color_template_id=4 501s Reusing existing connection to [localhost]:80. 501s HTTP request sent, awaiting response... 200 OK 501s Length: unspecified [text/html] 501s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=36&color_template_id=4’ 501s 501s 0K .......... .......... .......... .......... .......... 4.56G 501s 50K .......... .......... ... 264M=0s 501s 501s 2025-02-19 11:07:32 (733 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=36&color_template_id=4’ saved [75567] 501s 501s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=37&color_template_id=4 501s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=37&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 3.32G 502s 50K .......... .......... ... 324M=0s 502s 502s 2025-02-19 11:07:32 (837 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=37&color_template_id=4’ saved [75567] 502s 502s --2025-02-19 11:07:32-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=38&color_template_id=4 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=38&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 4.38G 502s 50K .......... .......... ... 290M=0s 502s 502s 2025-02-19 11:07:33 (792 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=38&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=39&color_template_id=4 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=39&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 5.91G 502s 50K .......... .......... ... 290M=0s 502s 502s 2025-02-19 11:07:33 (816 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=39&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=40&color_template_id=4 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=40&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 4.66G 502s 50K .......... .......... ... 268M=0s 502s 502s 2025-02-19 11:07:33 (744 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=40&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=41&color_template_id=4 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=41&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 4.09G 502s 50K .......... .......... ... 265M=0s 502s 502s 2025-02-19 11:07:33 (726 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=41&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=42&color_template_id=4 502s Connecting to localhost (localhost)|::1|:80... connected. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=42&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 3.70G 502s 50K .......... .......... ... 269M=0s 502s 502s 2025-02-19 11:07:33 (726 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=42&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=43&color_template_id=4 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=43&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 4.60G 502s 50K .......... .......... ... 283M=0s 502s 502s 2025-02-19 11:07:33 (780 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=43&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=44&color_template_id=4 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=44&color_template_id=4’ 502s 502s 0K .......... .......... .......... .......... .......... 5.00G 502s 50K .......... .......... ... 294M=0s 502s 502s 2025-02-19 11:07:33 (812 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=44&color_template_id=4’ saved [75568] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.81G 502s 50K .......... .......... ... 296M=0s 502s 502s 2025-02-19 11:07:33 (816 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=3’ saved [75543] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=13&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=13&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.57G 502s 50K .......... .......... ... 315M=0s 502s 502s 2025-02-19 11:07:33 (856 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=13&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=14&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=14&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 5.42G 502s 50K .......... .......... ... 291M=0s 502s 502s 2025-02-19 11:07:33 (813 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=14&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=15&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=15&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.75G 502s 50K .......... .......... ... 231M=0s 502s 502s 2025-02-19 11:07:33 (651 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=15&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=16&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=16&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.79G 502s 50K .......... .......... ... 273M=0s 502s 502s 2025-02-19 11:07:33 (759 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=16&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=17&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=17&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 5.64G 502s 50K .......... .......... ... 266M=0s 502s 502s 2025-02-19 11:07:33 (752 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=17&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=18&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=18&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.36G 502s 50K .......... .......... ... 264M=0s 502s 502s 2025-02-19 11:07:33 (729 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=18&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=19&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=19&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 5.22G 502s 50K .......... .......... ... 304M=0s 502s 502s 2025-02-19 11:07:33 (842 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=19&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=20&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=20&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.35G 502s 50K .......... .......... ... 289M=0s 502s 502s 2025-02-19 11:07:33 (789 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=20&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=21&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=21&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 2.86G 502s 50K .......... .......... ... 250M=0s 502s 502s 2025-02-19 11:07:33 (658 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=21&color_template_id=3’ saved [75565] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=22&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=22&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 6.18G 502s 50K .......... .......... ... 247M=0s 502s 502s 2025-02-19 11:07:33 (707 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=22&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=23&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=23&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.06G 502s 50K .......... .......... ... 300M=0s 502s 502s 2025-02-19 11:07:33 (808 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=23&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=24&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=24&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.61G 502s 50K .......... .......... ... 261M=0s 502s 502s 2025-02-19 11:07:33 (725 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=24&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=25&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=25&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 6.20G 502s 50K .......... .......... ... 332M=0s 502s 502s 2025-02-19 11:07:33 (928 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=25&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=26&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=26&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.81G 502s 50K .......... .......... ... 257M=0s 502s 502s 2025-02-19 11:07:33 (718 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=26&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=27&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=27&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 6.04G 502s 50K .......... .......... ... 313M=0s 502s 502s 2025-02-19 11:07:33 (877 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=27&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=28&color_template_id=3 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=28&color_template_id=3’ 502s 502s 0K .......... .......... .......... .......... .......... 4.04G 502s 50K .......... .......... ... 253M=0s 502s 502s 2025-02-19 11:07:33 (696 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=28&color_template_id=3’ saved [75566] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 4.28G 502s 50K .......... .......... ... 268M=0s 502s 502s 2025-02-19 11:07:33 (737 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=2’ saved [75552] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=5&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=5&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 6.28G 502s 50K .......... .......... ... 318M=0s 502s 502s 2025-02-19 11:07:33 (892 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=5&color_template_id=2’ saved [75573] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=6&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=6&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 6.60G 502s 50K .......... .......... ... 314M=0s 502s 502s 2025-02-19 11:07:33 (888 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=6&color_template_id=2’ saved [75573] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=7&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=7&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 4.75G 502s 50K .......... .......... ... 264M=0s 502s 502s 2025-02-19 11:07:33 (735 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=7&color_template_id=2’ saved [75573] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=8&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=8&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 5.04G 502s 50K .......... .......... ... 301M=0s 502s 502s 2025-02-19 11:07:33 (831 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=8&color_template_id=2’ saved [75573] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=9&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=9&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 4.91G 502s 50K .......... .......... ... 284M=0s 502s 502s 2025-02-19 11:07:33 (788 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=9&color_template_id=2’ saved [75573] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=10&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=10&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 4.86G 502s 50K .......... .......... ... 293M=0s 502s 502s 2025-02-19 11:07:33 (808 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=10&color_template_id=2’ saved [75574] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=11&color_template_id=2 502s Reusing existing connection to [localhost]:80. 502s HTTP request sent, awaiting response... 200 OK 502s Length: unspecified [text/html] 502s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=11&color_template_id=2’ 502s 502s 0K .......... .......... .......... .......... .......... 4.97G 502s 50K .......... .......... ... 333M=0s 502s 502s 2025-02-19 11:07:33 (908 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=11&color_template_id=2’ saved [75574] 502s 502s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=12&color_template_id=2 502s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=12&color_template_id=2’ 503s 503s 0K .......... .......... .......... .......... .......... 3.85G 503s 50K .......... .......... ... 252M=0s 503s 503s 2025-02-19 11:07:33 (688 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=12&color_template_id=2’ saved [75574] 503s 503s --2025-02-19 11:07:33-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=1’ 503s 503s 0K .......... .......... .......... .......... .......... 4.04G 503s 50K .......... .......... ... 275M=0s 503s 503s 2025-02-19 11:07:34 (749 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_id=1’ saved [75545] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=1&color_template_id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=1&color_template_id=1’ 503s 503s 0K .......... .......... .......... .......... .......... 6.22G 503s 50K .......... .......... ... 305M=0s 503s 503s 2025-02-19 11:07:34 (859 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=1&color_template_id=1’ saved [75566] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=2&color_template_id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=2&color_template_id=1’ 503s 503s 0K .......... .......... .......... .......... .......... 5.11G 503s 50K .......... .......... ... 268M=0s 503s 503s 2025-02-19 11:07:34 (751 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=2&color_template_id=1’ saved [75566] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=3&color_template_id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=3&color_template_id=1’ 503s 503s 0K .......... .......... .......... .......... .......... 3.58G 503s 50K .......... .......... ... 263M=0s 503s 503s 2025-02-19 11:07:34 (709 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=3&color_template_id=1’ saved [75566] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=4&color_template_id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=4&color_template_id=1’ 503s 503s 0K .......... .......... .......... .......... .......... 4.24G 503s 50K .......... .......... ... 260M=0s 503s 503s 2025-02-19 11:07:34 (716 MB/s) - ‘localhost/cacti/color_templates_items.php?action=item_edit&color_template_item_id=4&color_template_id=1’ saved [75566] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=0 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=0’ 503s 503s 0K .......... .......... ... 3.77G=0s 503s 503s 2025-02-19 11:07:34 (3.77 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=0’ saved [23871] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=1’ 503s 503s 0K .......... .......... .......... .. 4.70G=0s 503s 503s 2025-02-19 11:07:34 (4.70 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=1’ saved [33474] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=1’ 503s 503s 0K .......... .......... .......... ..... 5.78G=0s 503s 503s 2025-02-19 11:07:34 (5.78 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=1’ 503s 503s 0K .......... .......... .......... ... 6.52G=0s 503s 503s 2025-02-19 11:07:34 (6.52 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=1’ saved [34376] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=2’ 503s 503s 0K .......... .......... .......... 6.74G=0s 503s 503s 2025-02-19 11:07:34 (6.74 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=3&rule_type=2’ saved [30898] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=0 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=0’ 503s 503s 0K .......... .......... .......... ..... 5.41G=0s 503s 503s 2025-02-19 11:07:34 (5.41 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=0’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=1’ 503s 503s 0K .......... .......... .......... ..... 4.79G=0s 503s 503s 2025-02-19 11:07:34 (4.79 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=1’ 503s 503s 0K .......... .......... .......... ..... 5.95G=0s 503s 503s 2025-02-19 11:07:34 (5.95 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=1’ 503s 503s 0K .......... .......... .......... ... 5.46G=0s 503s 503s 2025-02-19 11:07:34 (5.46 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=1’ saved [34387] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=1’ 503s 503s 0K .......... .......... .......... ... 6.17G=0s 503s 503s 2025-02-19 11:07:34 (6.17 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=1’ saved [34405] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=1’ 503s 503s 0K .......... .......... .......... ..... 5.68G=0s 503s 503s 2025-02-19 11:07:34 (5.68 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=1’ 503s 503s 0K .......... .......... .......... ... 7.00G=0s 503s 503s 2025-02-19 11:07:34 (7.00 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=1’ saved [34406] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=1’ 503s 503s 0K .......... .......... .......... ..... 7.17G=0s 503s 503s 2025-02-19 11:07:34 (7.17 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=1’ 503s 503s 0K .......... .......... .......... ..... 5.26G=0s 503s 503s 2025-02-19 11:07:34 (5.26 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=8&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=8&rule_type=1’ 503s 503s 0K .......... .......... .......... ... 4.79G=0s 503s 503s 2025-02-19 11:07:34 (4.79 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=8&rule_type=1’ saved [34412] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=8&id=1&rule_type=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=8&id=1&rule_type=1’ 503s 503s 0K .......... .......... .......... ..... 5.06G=0s 503s 503s 2025-02-19 11:07:34 (5.06 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=8&id=1&rule_type=1’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=2’ 503s 503s 0K .......... .......... .......... 5.55G=0s 503s 503s 2025-02-19 11:07:34 (5.55 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&rule_type=2’ saved [30909] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=2’ 503s 503s 0K .......... .......... .......... 5.44G=0s 503s 503s 2025-02-19 11:07:34 (5.44 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=1&rule_type=2’ saved [30990] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=2’ 503s 503s 0K .......... .......... .......... ..... 3.37G=0s 503s 503s 2025-02-19 11:07:34 (3.37 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=1&id=1&rule_type=2’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=2’ 503s 503s 0K .......... .......... .......... 5.67G=0s 503s 503s 2025-02-19 11:07:34 (5.67 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=2&rule_type=2’ saved [30972] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=2’ 503s 503s 0K .......... .......... .......... ..... 6.75G=0s 503s 503s 2025-02-19 11:07:34 (6.75 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=2&id=1&rule_type=2’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=2’ 503s 503s 0K .......... .......... .......... ..... 6.04G=0s 503s 503s 2025-02-19 11:07:34 (6.04 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=2&id=1&rule_type=2’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=3&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=3&rule_type=2’ 503s 503s 0K .......... .......... .......... 4.75G=0s 503s 503s 2025-02-19 11:07:34 (4.75 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=1&item_id=3&rule_type=2’ saved [30980] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=3&id=1&rule_type=2 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 302 Found 503s Location: automation_graph_rules.php?action=edit&id=1 [following] 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 503s Reusing existing connection to [localhost]:80. 503s HTTP request sent, awaiting response... 200 OK 503s Length: unspecified [text/html] 503s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=3&id=1&rule_type=2’ 503s 503s 0K .......... .......... .......... ..... 4.82G=0s 503s 503s 2025-02-19 11:07:34 (4.82 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=3&id=1&rule_type=2’ saved [36169] 503s 503s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=0 503s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=0’ 504s 504s 0K .......... .......... .......... ..... 6.76G=0s 504s 504s 2025-02-19 11:07:34 (6.76 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=0’ saved [36169] 504s 504s --2025-02-19 11:07:34-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=1’ 504s 504s 0K .......... .......... .......... ..... 4.74G=0s 504s 504s 2025-02-19 11:07:35 (4.74 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=1’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=1’ 504s 504s 0K .......... .......... .......... ..... 5.67G=0s 504s 504s 2025-02-19 11:07:35 (5.67 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=1’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=1’ 504s 504s 0K .......... .......... .......... ... 5.65G=0s 504s 504s 2025-02-19 11:07:35 (5.65 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=1’ saved [34393] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=1’ 504s 504s 0K .......... .......... .......... ... 6.15G=0s 504s 504s 2025-02-19 11:07:35 (6.15 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=1’ saved [34416] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_graph_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=1’ 504s 504s 0K .......... .......... .......... ..... 3.20G=0s 504s 504s 2025-02-19 11:07:35 (3.20 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=1’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=1’ 504s 504s 0K .......... .......... .......... ... 6.56G=0s 504s 504s 2025-02-19 11:07:35 (6.56 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=1’ saved [34412] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_graph_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=1’ 504s 504s 0K .......... .......... .......... ..... 3.86G=0s 504s 504s 2025-02-19 11:07:35 (3.86 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=1’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=2’ 504s 504s 0K .......... .......... .......... 4.33G=0s 504s 504s 2025-02-19 11:07:35 (4.33 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&rule_type=2’ saved [30915] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=2’ 504s 504s 0K .......... .......... .......... 5.19G=0s 504s 504s 2025-02-19 11:07:35 (5.19 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=4&rule_type=2’ saved [30996] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_graph_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=2’ 504s 504s 0K .......... .......... .......... ..... 4.47G=0s 504s 504s 2025-02-19 11:07:35 (4.47 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=4&id=2&rule_type=2’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=2’ 504s 504s 0K .......... .......... .......... 6.92G=0s 504s 504s 2025-02-19 11:07:35 (6.92 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=5&rule_type=2’ saved [30978] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_graph_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=2’ 504s 504s 0K .......... .......... .......... ..... 4.45G=0s 504s 504s 2025-02-19 11:07:35 (4.45 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=2’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_graph_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=2’ 504s 504s 0K .......... .......... .......... ..... 5.18G=0s 504s 504s 2025-02-19 11:07:35 (5.18 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=5&id=2&rule_type=2’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=6&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=6&rule_type=2’ 504s 504s 0K .......... .......... .......... 6.61G=0s 504s 504s 2025-02-19 11:07:35 (6.61 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_edit&id=2&item_id=6&rule_type=2’ saved [30986] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=6&id=2&rule_type=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_graph_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=6&id=2&rule_type=2’ 504s 504s 0K .......... .......... .......... ..... 4.83G=0s 504s 504s 2025-02-19 11:07:35 (4.83 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=6&id=2&rule_type=2’ saved [36169] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=1’ 504s 504s 0K .......... .......... .......... .......... ..... 5.93G=0s 504s 504s 2025-02-19 11:07:35 (5.93 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=1’ saved [46432] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=3 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=3’ 504s 504s 0K .......... .......... .......... .... 4.80G=0s 504s 504s 2025-02-19 11:07:35 (4.80 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=3’ saved [34871] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=3&rule_type=3 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=3&rule_type=3’ 504s 504s 0K .......... .......... .......... .... 6.66G=0s 504s 504s 2025-02-19 11:07:35 (6.66 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=3&rule_type=3’ saved [34894] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=4 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=4’ 504s 504s 0K .......... .......... .......... .... 4.55G=0s 504s 504s 2025-02-19 11:07:35 (4.55 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&rule_type=4’ saved [35396] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4’ 504s 504s 0K .......... .......... .......... .... 4.57G=0s 504s 504s 2025-02-19 11:07:35 (4.57 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4’ saved [35779] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=1&id=1&rule_type=4 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_tree_rules.php?action=edit&id=1 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=1&id=1&rule_type=4’ 504s 504s 0K .......... .......... .......... .......... ..... 3.36G=0s 504s 504s 2025-02-19 11:07:35 (3.36 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=1&id=1&rule_type=4’ saved [46432] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4’ 504s 504s 0K .......... .......... .......... .... 4.06G=0s 504s 504s 2025-02-19 11:07:35 (4.06 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4’ saved [35773] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=2&id=1&rule_type=4 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_tree_rules.php?action=edit&id=1 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=2&id=1&rule_type=4’ 504s 504s 0K .......... .......... .......... .......... ..... 3.73G=0s 504s 504s 2025-02-19 11:07:35 (3.73 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=2&id=1&rule_type=4’ saved [46432] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=1 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=1’ 504s 504s 0K .......... .......... .......... .......... .... 4.47G=0s 504s 504s 2025-02-19 11:07:35 (4.47 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=1’ saved [46050] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=3 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=3’ 504s 504s 0K .......... .......... .......... .... 2.81G=0s 504s 504s 2025-02-19 11:07:35 (2.81 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=3’ saved [35178] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=6&rule_type=3 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=6&rule_type=3’ 504s 504s 0K .......... .......... .......... .... 3.74G=0s 504s 504s 2025-02-19 11:07:35 (3.74 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=6&rule_type=3’ saved [35200] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=6&id=2&rule_type=3 504s Connecting to localhost (localhost)|::1|:80... connected. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_tree_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=6&id=2&rule_type=3’ 504s 504s 0K .......... .......... .......... .......... .... 4.04G=0s 504s 504s 2025-02-19 11:07:35 (4.04 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=6&id=2&rule_type=3’ saved [46050] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=7&rule_type=3 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 200 OK 504s Length: unspecified [text/html] 504s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=7&rule_type=3’ 504s 504s 0K .......... .......... .......... .... 1.38G=0s 504s 504s 2025-02-19 11:07:35 (1.38 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=7&rule_type=3’ saved [35203] 504s 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=7&id=2&rule_type=3 504s Reusing existing connection to [localhost]:80. 504s HTTP request sent, awaiting response... 302 Found 504s Location: automation_tree_rules.php?action=edit&id=2 [following] 504s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 504s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=7&id=2&rule_type=3’ 505s 505s 0K .......... .......... .......... .......... .... 4.27G=0s 505s 505s 2025-02-19 11:07:35 (4.27 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=7&id=2&rule_type=3’ saved [46050] 505s 505s --2025-02-19 11:07:35-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=4 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=4’ 505s 505s 0K .......... .......... .......... .... 6.16G=0s 505s 505s 2025-02-19 11:07:36 (6.16 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&rule_type=4’ saved [35703] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=3&rule_type=4 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=3&rule_type=4’ 505s 505s 0K .......... .......... .......... .... 6.83G=0s 505s 505s 2025-02-19 11:07:36 (6.83 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=3&rule_type=4’ saved [35717] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=3&id=2&rule_type=4 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 302 Found 505s Location: automation_tree_rules.php?action=edit&id=2 [following] 505s --2025-02-19 11:07:36-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=3&id=2&rule_type=4’ 505s 505s 0K .......... .......... .......... .......... .... 3.92G=0s 505s 505s 2025-02-19 11:07:36 (3.92 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=3&id=2&rule_type=4’ saved [46050] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4’ 505s 505s 0K .......... .......... .......... ..... 4.55G=0s 505s 505s 2025-02-19 11:07:36 (4.55 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4’ saved [36094] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=4&id=2&rule_type=4 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 302 Found 505s Location: automation_tree_rules.php?action=edit&id=2 [following] 505s --2025-02-19 11:07:36-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=4&id=2&rule_type=4’ 505s 505s 0K .......... .......... .......... .......... .... 3.47G=0s 505s 505s 2025-02-19 11:07:36 (3.47 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=4&id=2&rule_type=4’ saved [46050] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=2’ 505s 505s 0K .......... .......... .......... . 5.16G=0s 505s 505s 2025-02-19 11:07:36 (5.16 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=2’ saved [32260] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=5&profile_id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=5&profile_id=2’ 505s 505s 0K .......... .......... .......... . 3.81G=0s 505s 505s 2025-02-19 11:07:36 (3.81 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=5&profile_id=2’ saved [32214] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=6&profile_id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=6&profile_id=2’ 505s 505s 0K .......... .......... .......... . 4.40G=0s 505s 505s 2025-02-19 11:07:36 (4.40 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=6&profile_id=2’ saved [32653] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=7&profile_id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=7&profile_id=2’ 505s 505s 0K .......... .......... .......... . 4.68G=0s 505s 505s 2025-02-19 11:07:36 (4.68 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=7&profile_id=2’ saved [32649] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=8&profile_id=2 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=8&profile_id=2’ 505s 505s 0K .......... .......... .......... . 5.53G=0s 505s 505s 2025-02-19 11:07:36 (5.53 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=8&profile_id=2’ saved [32647] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=3 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=3’ 505s 505s 0K .......... .......... .......... . 3.83G=0s 505s 505s 2025-02-19 11:07:36 (3.83 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=3’ saved [32185] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=9&profile_id=3 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=9&profile_id=3’ 505s 505s 0K .......... .......... .......... . 5.86G=0s 505s 505s 2025-02-19 11:07:36 (5.86 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=9&profile_id=3’ saved [32212] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=10&profile_id=3 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=10&profile_id=3’ 505s 505s 0K .......... .......... .......... . 4.81G=0s 505s 505s 2025-02-19 11:07:36 (4.81 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=10&profile_id=3’ saved [32618] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=11&profile_id=3 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=11&profile_id=3’ 505s 505s 0K .......... .......... .......... . 4.85G=0s 505s 505s 2025-02-19 11:07:36 (4.85 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=11&profile_id=3’ saved [32614] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=12&profile_id=3 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=12&profile_id=3’ 505s 505s 0K .......... .......... .......... . 5.45G=0s 505s 505s 2025-02-19 11:07:36 (5.45 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=12&profile_id=3’ saved [32614] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=1’ 505s 505s 0K .......... .......... .......... . 6.92G=0s 505s 505s 2025-02-19 11:07:36 (6.92 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&profile_id=1’ saved [32149] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=1&profile_id=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=1&profile_id=1’ 505s 505s 0K .......... .......... .......... . 4.63G=0s 505s 505s 2025-02-19 11:07:36 (4.63 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=1&profile_id=1’ saved [32211] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=2&profile_id=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=2&profile_id=1’ 505s 505s 0K .......... .......... .......... . 5.27G=0s 505s 505s 2025-02-19 11:07:36 (5.27 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=2&profile_id=1’ saved [32578] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=3&profile_id=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=3&profile_id=1’ 505s 505s 0K .......... .......... .......... . 7.02G=0s 505s 505s 2025-02-19 11:07:36 (7.02 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=3&profile_id=1’ saved [32574] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_source_profiles.php?action=item_edit&id=4&profile_id=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=4&profile_id=1’ 505s 505s 0K .......... .......... .......... . 6.89G=0s 505s 505s 2025-02-19 11:07:36 (6.89 GB/s) - ‘localhost/cacti/data_source_profiles.php?action=item_edit&id=4&profile_id=1’ saved [32570] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=2&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=2&profile=1’ 505s 505s 0K .......... .......... .......... ... 4.28G=0s 505s 505s 2025-02-19 11:07:36 (4.28 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=2&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=6&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=6&profile=1’ 505s 505s 0K .......... .......... .......... ... 5.19G=0s 505s 505s 2025-02-19 11:07:36 (5.19 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=6&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=7&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=7&profile=1’ 505s 505s 0K .......... .......... .......... ... 6.92G=0s 505s 505s 2025-02-19 11:07:36 (6.92 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=7&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=9&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=9&profile=1’ 505s 505s 0K .......... .......... .......... ... 7.29G=0s 505s 505s 2025-02-19 11:07:36 (7.29 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=9&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=5&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=5&profile=1’ 505s 505s 0K .......... .......... .......... ... 6.56G=0s 505s 505s 2025-02-19 11:07:36 (6.56 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=5&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=8&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=8&profile=1’ 505s 505s 0K .......... .......... .......... ... 3.99G=0s 505s 505s 2025-02-19 11:07:36 (3.99 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=8&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=3&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=3&profile=1’ 505s 505s 0K .......... .......... .......... ... 7.04G=0s 505s 505s 2025-02-19 11:07:36 (7.04 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=3&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=4&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=4&profile=1’ 505s 505s 0K .......... .......... .......... ... 5.06G=0s 505s 505s 2025-02-19 11:07:36 (5.06 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=4&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=1&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=1&profile=1’ 505s 505s 0K .......... .......... .......... ... 4.15G=0s 505s 505s 2025-02-19 11:07:36 (4.15 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=1&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=14&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=14&profile=1’ 505s 505s 0K .......... .......... .......... ... 5.87G=0s 505s 505s 2025-02-19 11:07:36 (5.87 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=14&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=15&profile=1 505s Reusing existing connection to [localhost]:80. 505s HTTP request sent, awaiting response... 200 OK 505s Length: unspecified [text/html] 505s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=15&profile=1’ 505s 505s 0K .......... .......... .......... ... 4.50G=0s 505s 505s 2025-02-19 11:07:36 (4.50 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=15&profile=1’ saved [34725] 505s 505s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=12&profile=1 505s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=12&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.05G=0s 506s 506s 2025-02-19 11:07:36 (5.05 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=12&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:36-- http://localhost/cacti/data_sources.php?reset=true&template_id=13&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=13&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.17G=0s 506s 506s 2025-02-19 11:07:37 (5.17 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=13&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=11&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=11&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.13G=0s 506s 506s 2025-02-19 11:07:37 (5.13 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=11&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=10&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=10&profile=1’ 506s 506s 0K .......... .......... .......... ... 6.65G=0s 506s 506s 2025-02-19 11:07:37 (6.65 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=10&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=48&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=48&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.09G=0s 506s 506s 2025-02-19 11:07:37 (5.09 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=48&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=46&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=46&profile=1’ 506s 506s 0K .......... .......... .......... ... 3.89G=0s 506s 506s 2025-02-19 11:07:37 (3.89 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=46&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=47&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=47&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.12G=0s 506s 506s 2025-02-19 11:07:37 (5.12 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=47&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=49&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=49&profile=1’ 506s 506s 0K .......... .......... .......... ... 2.52G=0s 506s 506s 2025-02-19 11:07:37 (2.52 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=49&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=50&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=50&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.29G=0s 506s 506s 2025-02-19 11:07:37 (5.29 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=50&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=16&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=16&profile=1’ 506s 506s 0K .......... .......... .......... ... 5.72G=0s 506s 506s 2025-02-19 11:07:37 (5.72 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=16&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=26&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=26&profile=1’ 506s 506s 0K .......... .......... .......... ... 6.57G=0s 506s 506s 2025-02-19 11:07:37 (6.57 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=26&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=25&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=25&profile=1’ 506s 506s 0K .......... .......... .......... ... 292M=0s 506s 506s 2025-02-19 11:07:37 (292 MB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=25&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=27&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=27&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.62G=0s 506s 506s 2025-02-19 11:07:37 (4.62 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=27&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=18&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=18&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.35G=0s 506s 506s 2025-02-19 11:07:37 (4.35 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=18&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=19&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=19&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.77G=0s 506s 506s 2025-02-19 11:07:37 (4.77 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=19&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=20&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=20&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.31G=0s 506s 506s 2025-02-19 11:07:37 (4.31 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=20&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=32&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=32&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.88G=0s 506s 506s 2025-02-19 11:07:37 (4.88 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=32&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=28&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=28&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.50G=0s 506s 506s 2025-02-19 11:07:37 (4.50 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=28&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/data_sources.php?reset=true&template_id=21&profile=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/data_sources.php?reset=true&template_id=21&profile=1’ 506s 506s 0K .......... .......... .......... ... 4.84G=0s 506s 506s 2025-02-19 11:07:37 (4.84 GB/s) - ‘localhost/cacti/data_sources.php?reset=true&template_id=21&profile=1’ saved [34725] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/automation_snmp.php?action=item_edit&id=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/automation_snmp.php?action=item_edit&id=1’ 506s 506s 0K .......... .......... .......... ........ 6.52G=0s 506s 506s 2025-02-19 11:07:37 (6.52 GB/s) - ‘localhost/cacti/automation_snmp.php?action=item_edit&id=1’ saved [39197] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/automation_snmp.php?action=item_edit&item_id=1&id=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=1&id=1’ 506s 506s 0K .......... .......... .......... ........ 4.26G=0s 506s 506s 2025-02-19 11:07:37 (4.26 GB/s) - ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=1&id=1’ saved [39240] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/automation_snmp.php?action=item_edit&item_id=2&id=1 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=2&id=1’ 506s 506s 0K .......... .......... .......... ........ 5.71G=0s 506s 506s 2025-02-19 11:07:37 (5.71 GB/s) - ‘localhost/cacti/automation_snmp.php?action=item_edit&item_id=2&id=1’ saved [39241] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=39 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=39’ 506s 506s 0K .......... .......... ......... 6.94G=0s 506s 506s 2025-02-19 11:07:37 (6.94 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=39’ saved [30555] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=89&cdef_id=39 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=89&cdef_id=39’ 506s 506s 0K .......... .......... ........ 4.91G=0s 506s 506s 2025-02-19 11:07:37 (4.91 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=89&cdef_id=39’ saved [28764] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=43 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=43’ 506s 506s 0K .......... .......... ......... 4.90G=0s 506s 506s 2025-02-19 11:07:37 (4.90 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=43’ saved [30585] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=99&cdef_id=43 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=99&cdef_id=43’ 506s 506s 0K .......... .......... ........ 4.61G=0s 506s 506s 2025-02-19 11:07:37 (4.61 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=99&cdef_id=43’ saved [28809] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=66 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=66’ 506s 506s 0K .......... .......... ......... 4.38G=0s 506s 506s 2025-02-19 11:07:37 (4.38 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=66’ saved [30595] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=159&cdef_id=66 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=159&cdef_id=66’ 506s 506s 0K .......... .......... ........ 4.08G=0s 506s 506s 2025-02-19 11:07:37 (4.08 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=159&cdef_id=66’ saved [28824] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=67 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=67’ 506s 506s 0K .......... .......... ......... 5.22G=0s 506s 506s 2025-02-19 11:07:37 (5.22 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=67’ saved [30594] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=160&cdef_id=67 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=160&cdef_id=67’ 506s 506s 0K .......... .......... ........ 4.73G=0s 506s 506s 2025-02-19 11:07:37 (4.73 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=160&cdef_id=67’ saved [28825] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=61 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=61’ 506s 506s 0K .......... .......... ......... 5.10G=0s 506s 506s 2025-02-19 11:07:37 (5.10 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=61’ saved [30599] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=154&cdef_id=61 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=154&cdef_id=61’ 506s 506s 0K .......... .......... ........ 5.66G=0s 506s 506s 2025-02-19 11:07:37 (5.66 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=154&cdef_id=61’ saved [28830] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=56 506s Reusing existing connection to [localhost]:80. 506s HTTP request sent, awaiting response... 200 OK 506s Length: unspecified [text/html] 506s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=56’ 506s 506s 0K .......... .......... ......... 3.89G=0s 506s 506s 2025-02-19 11:07:37 (3.89 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=56’ saved [30598] 506s 506s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=149&cdef_id=56 506s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=149&cdef_id=56’ 507s 507s 0K .......... .......... ........ 4.77G=0s 507s 507s 2025-02-19 11:07:37 (4.77 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=149&cdef_id=56’ saved [28831] 507s 507s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=63 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=63’ 507s 507s 0K .......... .......... ......... 5.14G=0s 507s 507s 2025-02-19 11:07:37 (5.14 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=63’ saved [30598] 507s 507s --2025-02-19 11:07:37-- http://localhost/cacti/cdef.php?action=item_edit&id=156&cdef_id=63 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=156&cdef_id=63’ 507s 507s 0K .......... .......... ........ 5.95G=0s 507s 507s 2025-02-19 11:07:38 (5.95 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=156&cdef_id=63’ saved [28828] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=57 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=57’ 507s 507s 0K .......... .......... ......... 5.99G=0s 507s 507s 2025-02-19 11:07:38 (5.99 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=57’ saved [30598] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=150&cdef_id=57 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=150&cdef_id=57’ 507s 507s 0K .......... .......... ........ 4.65G=0s 507s 507s 2025-02-19 11:07:38 (4.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=150&cdef_id=57’ saved [28831] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=68 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=68’ 507s 507s 0K .......... .......... ......... 5.50G=0s 507s 507s 2025-02-19 11:07:38 (5.50 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=68’ saved [30595] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=161&cdef_id=68 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=161&cdef_id=68’ 507s 507s 0K .......... .......... ........ 5.14G=0s 507s 507s 2025-02-19 11:07:38 (5.14 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=161&cdef_id=68’ saved [28824] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=69 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=69’ 507s 507s 0K .......... .......... ......... 5.65G=0s 507s 507s 2025-02-19 11:07:38 (5.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=69’ saved [30594] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=162&cdef_id=69 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=162&cdef_id=69’ 507s 507s 0K .......... .......... ........ 6.85G=0s 507s 507s 2025-02-19 11:07:38 (6.85 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=162&cdef_id=69’ saved [28825] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=64 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=64’ 507s 507s 0K .......... .......... ......... 5.53G=0s 507s 507s 2025-02-19 11:07:38 (5.53 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=64’ saved [30599] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=157&cdef_id=64 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=157&cdef_id=64’ 507s 507s 0K .......... .......... ........ 5.01G=0s 507s 507s 2025-02-19 11:07:38 (5.01 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=157&cdef_id=64’ saved [28830] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=54 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=54’ 507s 507s 0K .......... .......... ......... 4.90G=0s 507s 507s 2025-02-19 11:07:38 (4.90 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=54’ saved [30598] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=147&cdef_id=54 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=147&cdef_id=54’ 507s 507s 0K .......... .......... ........ 5.57G=0s 507s 507s 2025-02-19 11:07:38 (5.57 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=147&cdef_id=54’ saved [28831] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=62 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=62’ 507s 507s 0K .......... .......... ......... 4.41G=0s 507s 507s 2025-02-19 11:07:38 (4.41 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=62’ saved [30597] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=155&cdef_id=62 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=155&cdef_id=62’ 507s 507s 0K .......... .......... ........ 6.10G=0s 507s 507s 2025-02-19 11:07:38 (6.10 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=155&cdef_id=62’ saved [28827] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=55 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=55’ 507s 507s 0K .......... .......... ......... 4.92G=0s 507s 507s 2025-02-19 11:07:38 (4.92 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=55’ saved [30596] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=148&cdef_id=55 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=148&cdef_id=55’ 507s 507s 0K .......... .......... ........ 6.05G=0s 507s 507s 2025-02-19 11:07:38 (6.05 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=148&cdef_id=55’ saved [28828] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=65 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=65’ 507s 507s 0K .......... .......... ......... 5.56G=0s 507s 507s 2025-02-19 11:07:38 (5.56 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=65’ saved [30601] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=158&cdef_id=65 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=158&cdef_id=65’ 507s 507s 0K .......... .......... ........ 6.33G=0s 507s 507s 2025-02-19 11:07:38 (6.33 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=158&cdef_id=65’ saved [28833] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=58 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=58’ 507s 507s 0K .......... .......... ......... 6.57G=0s 507s 507s 2025-02-19 11:07:38 (6.57 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=58’ saved [30600] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=151&cdef_id=58 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=151&cdef_id=58’ 507s 507s 0K .......... .......... ........ 6.86G=0s 507s 507s 2025-02-19 11:07:38 (6.86 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=151&cdef_id=58’ saved [28834] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=59 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=59’ 507s 507s 0K .......... .......... ......... 6.51G=0s 507s 507s 2025-02-19 11:07:38 (6.51 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=59’ saved [30562] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=152&cdef_id=59 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=152&cdef_id=59’ 507s 507s 0K .......... .......... ........ 6.40G=0s 507s 507s 2025-02-19 11:07:38 (6.40 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=152&cdef_id=59’ saved [28765] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=60 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=60’ 507s 507s 0K .......... .......... ......... 4.80G=0s 507s 507s 2025-02-19 11:07:38 (4.80 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=60’ saved [30572] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=153&cdef_id=60 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=153&cdef_id=60’ 507s 507s 0K .......... .......... ........ 5.80G=0s 507s 507s 2025-02-19 11:07:38 (5.80 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=153&cdef_id=60’ saved [28783] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=70 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=70’ 507s 507s 0K .......... .......... ......... 4.65G=0s 507s 507s 2025-02-19 11:07:38 (4.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=70’ saved [30572] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=163&cdef_id=70 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=163&cdef_id=70’ 507s 507s 0K .......... .......... ........ 4.55G=0s 507s 507s 2025-02-19 11:07:38 (4.55 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=163&cdef_id=70’ saved [28781] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=20 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=20’ 507s 507s 0K .......... .......... ......... 6.49G=0s 507s 507s 2025-02-19 11:07:38 (6.49 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=20’ saved [30593] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=34&cdef_id=20 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=34&cdef_id=20’ 507s 507s 0K .......... .......... ........ 5.68G=0s 507s 507s 2025-02-19 11:07:38 (5.68 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=34&cdef_id=20’ saved [28818] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=25 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=25’ 507s 507s 0K .......... .......... ......... 4.46G=0s 507s 507s 2025-02-19 11:07:38 (4.46 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=25’ saved [30564] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=41&cdef_id=25 507s Connecting to localhost (localhost)|::1|:80... connected. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=41&cdef_id=25’ 507s 507s 0K .......... .......... ........ 4.80G=0s 507s 507s 2025-02-19 11:07:38 (4.80 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=41&cdef_id=25’ saved [28766] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=42&cdef_id=25 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=42&cdef_id=25’ 507s 507s 0K .......... .......... ........ 5.04G=0s 507s 507s 2025-02-19 11:07:38 (5.04 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=42&cdef_id=25’ saved [28766] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=43&cdef_id=25 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=43&cdef_id=25’ 507s 507s 0K .......... .......... ........ 4.00G=0s 507s 507s 2025-02-19 11:07:38 (4.00 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=43&cdef_id=25’ saved [28829] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=24 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=24’ 507s 507s 0K .......... .......... ......... 4.77G=0s 507s 507s 2025-02-19 11:07:38 (4.77 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=24’ saved [30611] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=40&cdef_id=24 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=40&cdef_id=24’ 507s 507s 0K .......... .......... ........ 6.37G=0s 507s 507s 2025-02-19 11:07:38 (6.37 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=40&cdef_id=24’ saved [28855] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=26 507s Reusing existing connection to [localhost]:80. 507s HTTP request sent, awaiting response... 200 OK 507s Length: unspecified [text/html] 507s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=26’ 507s 507s 0K .......... .......... ......... 5.86G=0s 507s 507s 2025-02-19 11:07:38 (5.86 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=26’ saved [30611] 507s 507s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=44&cdef_id=26 507s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=44&cdef_id=26’ 508s 508s 0K .......... .......... ........ 6.16G=0s 508s 508s 2025-02-19 11:07:38 (6.16 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=44&cdef_id=26’ saved [28855] 508s 508s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=22 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=22’ 508s 508s 0K .......... .......... ......... 6.30G=0s 508s 508s 2025-02-19 11:07:38 (6.30 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=22’ saved [30620] 508s 508s --2025-02-19 11:07:38-- http://localhost/cacti/cdef.php?action=item_edit&id=36&cdef_id=22 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=36&cdef_id=22’ 508s 508s 0K .......... .......... ........ 6.73G=0s 508s 508s 2025-02-19 11:07:39 (6.73 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=36&cdef_id=22’ saved [28869] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=27 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=27’ 508s 508s 0K .......... .......... ......... 5.27G=0s 508s 508s 2025-02-19 11:07:39 (5.27 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=27’ saved [30611] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=45&cdef_id=27 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=45&cdef_id=27’ 508s 508s 0K .......... .......... ........ 4.33G=0s 508s 508s 2025-02-19 11:07:39 (4.33 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=45&cdef_id=27’ saved [28855] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=19 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=19’ 508s 508s 0K .......... .......... ......... 6.27G=0s 508s 508s 2025-02-19 11:07:39 (6.27 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=19’ saved [30592] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=33&cdef_id=19 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=33&cdef_id=19’ 508s 508s 0K .......... .......... ........ 4.20G=0s 508s 508s 2025-02-19 11:07:39 (4.20 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=33&cdef_id=19’ saved [28817] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=21 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=21’ 508s 508s 0K .......... .......... ......... 4.55G=0s 508s 508s 2025-02-19 11:07:39 (4.55 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=21’ saved [30604] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=35&cdef_id=21 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=35&cdef_id=21’ 508s 508s 0K .......... .......... ........ 5.26G=0s 508s 508s 2025-02-19 11:07:39 (5.26 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=35&cdef_id=21’ saved [28830] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=34’ 508s 508s 0K .......... .......... ......... 5.76G=0s 508s 508s 2025-02-19 11:07:39 (5.76 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=34’ saved [30593] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=63&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=63&cdef_id=34’ 508s 508s 0K .......... .......... ........ 4.12G=0s 508s 508s 2025-02-19 11:07:39 (4.12 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=63&cdef_id=34’ saved [28791] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=64&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=64&cdef_id=34’ 508s 508s 0K .......... .......... ........ 6.70G=0s 508s 508s 2025-02-19 11:07:39 (6.70 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=64&cdef_id=34’ saved [28791] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=65&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=65&cdef_id=34’ 508s 508s 0K .......... .......... ........ 4.67G=0s 508s 508s 2025-02-19 11:07:39 (4.67 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=65&cdef_id=34’ saved [28858] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=66&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=66&cdef_id=34’ 508s 508s 0K .......... .......... ........ 6.10G=0s 508s 508s 2025-02-19 11:07:39 (6.10 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=66&cdef_id=34’ saved [28791] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=67&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=67&cdef_id=34’ 508s 508s 0K .......... .......... ........ 6.90G=0s 508s 508s 2025-02-19 11:07:39 (6.90 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=67&cdef_id=34’ saved [28858] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=68&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=68&cdef_id=34’ 508s 508s 0K .......... .......... ........ 5.09G=0s 508s 508s 2025-02-19 11:07:39 (5.09 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=68&cdef_id=34’ saved [28791] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=69&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=69&cdef_id=34’ 508s 508s 0K .......... .......... ........ 4.65G=0s 508s 508s 2025-02-19 11:07:39 (4.65 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=69&cdef_id=34’ saved [28858] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=70&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=70&cdef_id=34’ 508s 508s 0K .......... .......... ........ 5.26G=0s 508s 508s 2025-02-19 11:07:39 (5.26 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=70&cdef_id=34’ saved [28791] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=71&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=71&cdef_id=34’ 508s 508s 0K .......... .......... ........ 7.03G=0s 508s 508s 2025-02-19 11:07:39 (7.03 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=71&cdef_id=34’ saved [28858] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=72&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=72&cdef_id=34’ 508s 508s 0K .......... .......... ........ 6.29G=0s 508s 508s 2025-02-19 11:07:39 (6.29 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=72&cdef_id=34’ saved [28791] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=73&cdef_id=34 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=73&cdef_id=34’ 508s 508s 0K .......... .......... ........ 5.77G=0s 508s 508s 2025-02-19 11:07:39 (5.77 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=73&cdef_id=34’ saved [28858] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=51 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=51’ 508s 508s 0K .......... .......... ......... 5.25G=0s 508s 508s 2025-02-19 11:07:39 (5.25 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=51’ saved [30557] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=139&cdef_id=51 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=139&cdef_id=51’ 508s 508s 0K .......... .......... ......... 6.29G=0s 508s 508s 2025-02-19 11:07:39 (6.29 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=139&cdef_id=51’ saved [30105] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=140&cdef_id=51 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=140&cdef_id=51’ 508s 508s 0K .......... .......... ......... 5.91G=0s 508s 508s 2025-02-19 11:07:39 (5.91 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=140&cdef_id=51’ saved [30570] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&cdef_id=52 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=52’ 508s 508s 0K .......... .......... ......... 5.88G=0s 508s 508s 2025-02-19 11:07:39 (5.88 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&cdef_id=52’ saved [30605] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=141&cdef_id=52 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=141&cdef_id=52’ 508s 508s 0K .......... .......... ......... 6.31G=0s 508s 508s 2025-02-19 11:07:39 (6.31 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=141&cdef_id=52’ saved [30153] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=142&cdef_id=52 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=142&cdef_id=52’ 508s 508s 0K .......... .......... ......... 6.20G=0s 508s 508s 2025-02-19 11:07:39 (6.20 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=142&cdef_id=52’ saved [30153] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/cdef.php?action=item_edit&id=143&cdef_id=52 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/cdef.php?action=item_edit&id=143&cdef_id=52’ 508s 508s 0K .......... .......... ........ 5.84G=0s 508s 508s 2025-02-19 11:07:39 (5.84 GB/s) - ‘localhost/cacti/cdef.php?action=item_edit&id=143&cdef_id=52’ saved [28871] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=7 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=7’ 508s 508s 0K .......... .......... ........ 5.91G=0s 508s 508s 2025-02-19 11:07:39 (5.91 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=7’ saved [29053] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=13&vdef_id=7 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=13&vdef_id=7’ 508s 508s 0K .......... .......... ........ 6.63G=0s 508s 508s 2025-02-19 11:07:39 (6.63 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=13&vdef_id=7’ saved [28737] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=14&vdef_id=7 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=14&vdef_id=7’ 508s 508s 0K .......... .......... ........ 6.29G=0s 508s 508s 2025-02-19 11:07:39 (6.29 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=14&vdef_id=7’ saved [28732] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=15&vdef_id=7 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=15&vdef_id=7’ 508s 508s 0K .......... .......... ........ 5.96G=0s 508s 508s 2025-02-19 11:07:39 (5.96 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=15&vdef_id=7’ saved [29065] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=3 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=3’ 508s 508s 0K .......... .......... ........ 3.39G=0s 508s 508s 2025-02-19 11:07:39 (3.39 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=3’ saved [29020] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=5&vdef_id=3 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=5&vdef_id=3’ 508s 508s 0K .......... .......... ........ 3.49G=0s 508s 508s 2025-02-19 11:07:39 (3.49 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=5&vdef_id=3’ saved [28703] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=6&vdef_id=3 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=6&vdef_id=3’ 508s 508s 0K .......... .......... ........ 4.79G=0s 508s 508s 2025-02-19 11:07:39 (4.79 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=6&vdef_id=3’ saved [29031] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=5 508s Reusing existing connection to [localhost]:80. 508s HTTP request sent, awaiting response... 200 OK 508s Length: unspecified [text/html] 508s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=5’ 508s 508s 0K .......... .......... ........ 3.15G=0s 508s 508s 2025-02-19 11:07:39 (3.15 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=5’ saved [29016] 508s 508s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=9&vdef_id=5 508s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=9&vdef_id=5’ 509s 509s 0K .......... .......... ........ 5.05G=0s 509s 509s 2025-02-19 11:07:39 (5.05 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=9&vdef_id=5’ saved [28699] 509s 509s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&id=10&vdef_id=5 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=10&vdef_id=5’ 509s 509s 0K .......... .......... ........ 3.68G=0s 509s 509s 2025-02-19 11:07:39 (3.68 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=10&vdef_id=5’ saved [29028] 509s 509s --2025-02-19 11:07:39-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=4 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=4’ 509s 509s 0K .......... .......... ........ 3.51G=0s 509s 509s 2025-02-19 11:07:40 (3.51 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=4’ saved [29024] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=7&vdef_id=4 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=7&vdef_id=4’ 509s 509s 0K .......... .......... ........ 3.49G=0s 509s 509s 2025-02-19 11:07:40 (3.49 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=7&vdef_id=4’ saved [28707] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=8&vdef_id=4 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=8&vdef_id=4’ 509s 509s 0K .......... .......... ........ 3.76G=0s 509s 509s 2025-02-19 11:07:40 (3.76 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=8&vdef_id=4’ saved [29035] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=1 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=1’ 509s 509s 0K .......... .......... ........ 4.15G=0s 509s 509s 2025-02-19 11:07:40 (4.15 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=1’ saved [29020] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=1&vdef_id=1 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=1&vdef_id=1’ 509s 509s 0K .......... .......... ........ 4.38G=0s 509s 509s 2025-02-19 11:07:40 (4.38 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=1&vdef_id=1’ saved [28703] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=2&vdef_id=1 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=2&vdef_id=1’ 509s 509s 0K .......... .......... ........ 4.67G=0s 509s 509s 2025-02-19 11:07:40 (4.67 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=2&vdef_id=1’ saved [29031] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=2 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=2’ 509s 509s 0K .......... .......... ........ 1.05G=0s 509s 509s 2025-02-19 11:07:40 (1.05 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=2’ saved [29020] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=3&vdef_id=2 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=3&vdef_id=2’ 509s 509s 0K .......... .......... ........ 4.29G=0s 509s 509s 2025-02-19 11:07:40 (4.29 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=3&vdef_id=2’ saved [28703] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=4&vdef_id=2 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=4&vdef_id=2’ 509s 509s 0K .......... .......... ........ 6.26G=0s 509s 509s 2025-02-19 11:07:40 (6.26 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=4&vdef_id=2’ saved [29031] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&vdef_id=6 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=6’ 509s 509s 0K .......... .......... ........ 3.31G=0s 509s 509s 2025-02-19 11:07:40 (3.31 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&vdef_id=6’ saved [29037] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=11&vdef_id=6 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=11&vdef_id=6’ 509s 509s 0K .......... .......... ........ 1.76G=0s 509s 509s 2025-02-19 11:07:40 (1.76 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=11&vdef_id=6’ saved [28721] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/vdef.php?action=item_edit&id=12&vdef_id=6 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/vdef.php?action=item_edit&id=12&vdef_id=6’ 509s 509s 0K .......... .......... ........ 6.95G=0s 509s 509s 2025-02-19 11:07:40 (6.95 GB/s) - ‘localhost/cacti/vdef.php?action=item_edit&id=12&vdef_id=6’ saved [29049] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=general 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=general’ 509s 509s 0K .......... .......... .......... ......... 4.69G=0s 509s 509s 2025-02-19 11:07:40 (4.69 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=general’ saved [40747] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=realms 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=realms’ 509s 509s 0K .......... .......... .......... .......... 3.37G=0s 509s 509s 2025-02-19 11:07:40 (3.37 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=realms’ saved [41358] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsgr 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsgr’ 509s 509s 0K .......... .......... .......... .. 4.38G=0s 509s 509s 2025-02-19 11:07:40 (4.38 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsgr’ saved [32859] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsg 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsg’ 509s 509s 0K .......... .......... .......... ...... 5.00G=0s 509s 509s 2025-02-19 11:07:40 (5.00 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsg’ saved [37413] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsd 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsd’ 509s 509s 0K .......... .......... .......... ....... 5.62G=0s 509s 509s 2025-02-19 11:07:40 (5.62 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permsd’ saved [38266] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permste 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permste’ 509s 509s 0K .......... .......... .......... ..... 4.15G=0s 509s 509s 2025-02-19 11:07:40 (4.15 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permste’ saved [36789] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permstr 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permstr’ 509s 509s 0K .......... .......... .......... ..... 5.65G=0s 509s 509s 2025-02-19 11:07:40 (5.65 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=permstr’ saved [36680] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=1&tab=settings 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=settings’ 509s 509s 0K .......... .......... .......... .......... .......... 3.60G 509s 50K .......... 20.1T=0s 509s 509s 2025-02-19 11:07:40 (4.38 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=1&tab=settings’ saved [62225] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=general 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=general’ 509s 509s 0K .......... .......... .......... ......... 6.83G=0s 509s 509s 2025-02-19 11:07:40 (6.83 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=general’ saved [40742] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=realms 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=realms’ 509s 509s 0K .......... .......... .......... .......... 6.89G=0s 509s 509s 2025-02-19 11:07:40 (6.89 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=realms’ saved [41148] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsgr 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsgr’ 509s 509s 0K .......... .......... .......... .. 4.45G=0s 509s 509s 2025-02-19 11:07:40 (4.45 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsgr’ saved [32859] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsg 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsg’ 509s 509s 0K .......... .......... .......... ...... 5.11G=0s 509s 509s 2025-02-19 11:07:40 (5.11 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsg’ saved [37413] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsd 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsd’ 509s 509s 0K .......... .......... .......... ....... 4.72G=0s 509s 509s 2025-02-19 11:07:40 (4.72 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permsd’ saved [38266] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permste 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permste’ 509s 509s 0K .......... .......... .......... ..... 4.59G=0s 509s 509s 2025-02-19 11:07:40 (4.59 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permste’ saved [36789] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permstr 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permstr’ 509s 509s 0K .......... .......... .......... ..... 4.50G=0s 509s 509s 2025-02-19 11:07:40 (4.50 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=permstr’ saved [36680] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/user_admin.php?action=user_edit&id=3&tab=settings 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=settings’ 509s 509s 0K .......... .......... .......... .......... .......... 4.20G 509s 50K .......... 20.1T=0s 509s 509s 2025-02-19 11:07:40 (5.10 GB/s) - ‘localhost/cacti/user_admin.php?action=user_edit&id=3&tab=settings’ saved [62225] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/utilities.php?action=view_tech&tab=summary 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=summary’ 509s 509s 0K .......... .......... .......... ....... 6.52G=0s 509s 509s 2025-02-19 11:07:40 (6.52 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=summary’ saved [38219] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/utilities.php?action=view_tech&tab=database 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=database’ 509s 509s 0K .......... .......... .......... .......... .......... 4.65G 509s 50K . 2.55T=0s 509s 509s 2025-02-19 11:07:40 (4.78 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=database’ saved [52602] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/utilities.php?action=view_tech&tab=dbsettings 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=dbsettings’ 509s 509s 0K .......... .......... .......... .......... .......... 4.83G 509s 50K .......... .......... . 51.0M=0s 509s 509s 2025-02-19 11:07:40 (164 MB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=dbsettings’ saved [73597] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/utilities.php?action=view_tech&tab=dbstatus 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=dbstatus’ 509s 509s 0K .......... .......... .......... .......... .......... 5.56G 509s 50K .......... 19.3T=0s 509s 509s 2025-02-19 11:07:40 (6.71 GB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=dbstatus’ saved [61791] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/utilities.php?action=view_tech&tab=phpinfo 509s Reusing existing connection to [localhost]:80. 509s HTTP request sent, awaiting response... 200 OK 509s Length: unspecified [text/html] 509s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=phpinfo’ 509s 509s 0K .......... .......... .......... .......... .......... 3.63G 509s 50K .......... ......... 298M=0s 509s 509s 2025-02-19 11:07:40 (894 MB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=phpinfo’ saved [70707] 509s 509s --2025-02-19 11:07:40-- http://localhost/cacti/utilities.php?action=view_tech&tab=changelog 509s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/utilities.php?action=view_tech&tab=changelog’ 510s 510s 0K .......... .......... .......... .......... .......... 4.01G 510s 50K .......... .......... .......... .......... .......... 95.5M 510s 100K .......... .......... .......... .......... .......... 1.20G 510s 150K .......... .......... .......... .......... .......... 1.33G 510s 200K .......... .......... .......... .......... .......... 93.1T 510s 250K .......... .......... .......... .......... .......... 1.28G 510s 300K .......... .......... .......... .......... .......... 1.25G 510s 350K .......... .......... .......... .......... .......... 1.21G 510s 400K .......... .......... .......... .......... .......... 1.57G 510s 450K .......... 19.9T=0.001s 510s 510s 2025-02-19 11:07:40 (605 MB/s) - ‘localhost/cacti/utilities.php?action=view_tech&tab=changelog’ saved [471740] 510s 510s --2025-02-19 11:07:40-- http://localhost/cacti/managers.php?action=edit 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/managers.php?action=edit’ 510s 510s 0K .......... .......... .......... ........ 7.77G=0s 510s 510s 2025-02-19 11:07:41 (7.77 GB/s) - ‘localhost/cacti/managers.php?action=edit’ saved [39880] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=12&graph_template_id=2 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=12&graph_template_id=2’ 510s 510s 0K .......... .......... .......... .......... .......... 5.48G 510s 50K .......... . 20.5T=0s 510s 510s 2025-02-19 11:07:41 (6.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=12&graph_template_id=2’ saved [62474] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=5&graph_template_id=2 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=2 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=2 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=5&graph_template_id=2’ 510s 510s 0K .......... .......... .......... .......... .......... 6.95G 510s 50K .......... . 20.5T=0s 510s 510s 2025-02-19 11:07:41 (8.48 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=5&graph_template_id=2’ saved [62474] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=58&graph_template_id=9 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=58&graph_template_id=9’ 510s 510s 0K .......... .......... .......... .......... .......... 5.73G 510s 50K .... 9.24T=0s 510s 510s 2025-02-19 11:07:41 (6.30 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=58&graph_template_id=9’ saved [56282] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=57&graph_template_id=9 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=9 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=9 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=57&graph_template_id=9’ 510s 510s 0K .......... .......... .......... .......... .......... 7.21G 510s 50K .... 9.24T=0s 510s 510s 2025-02-19 11:07:41 (7.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=57&graph_template_id=9’ saved [56282] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=40&graph_template_id=5 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=40&graph_template_id=5’ 510s 510s 0K .......... .......... .......... .......... .......... 5.05G 510s 50K .......... . 20.7T=0s 510s 510s 2025-02-19 11:07:41 (6.17 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=40&graph_template_id=5’ saved [62555] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=33&graph_template_id=5 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=5 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=5 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=33&graph_template_id=5’ 510s 510s 0K .......... .......... .......... .......... .......... 3.83G 510s 50K .......... . 20.7T=0s 510s 510s 2025-02-19 11:07:41 (4.69 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=33&graph_template_id=5’ saved [62555] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=13&graph_template_id=3 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=3 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=3 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=13&graph_template_id=3’ 510s 510s 0K .......... .......... .......... .......... .......... 3.21G 510s 50K .......... .......... 172M=0s 510s 510s 2025-02-19 11:07:41 (529 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=13&graph_template_id=3’ saved [71782] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=52&graph_template_id=7 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=52&graph_template_id=7’ 510s 510s 0K .......... .......... .......... .......... .......... 5.22G 510s 50K .......... . 21.0T=0s 510s 510s 2025-02-19 11:07:41 (6.39 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=52&graph_template_id=7’ saved [62731] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=45&graph_template_id=7 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=7 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=7 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=45&graph_template_id=7’ 510s 510s 0K .......... .......... .......... .......... .......... 4.83G 510s 50K .......... . 21.0T=0s 510s 510s 2025-02-19 11:07:41 (5.92 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=45&graph_template_id=7’ saved [62731] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=115&graph_template_id=14 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=115&graph_template_id=14’ 510s 510s 0K .......... .......... .......... .......... .......... 7.39G 510s 50K ........ 16.6T=0s 510s 510s 2025-02-19 11:07:41 (8.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=115&graph_template_id=14’ saved [60318] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=110&graph_template_id=14 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=14 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=14 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=110&graph_template_id=14’ 510s 510s 0K .......... .......... .......... .......... .......... 6.91G 510s 50K ........ 16.6T=0s 510s 510s 2025-02-19 11:07:41 (8.14 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=110&graph_template_id=14’ saved [60318] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=121&graph_template_id=15 510s Connecting to localhost (localhost)|::1|:80... connected. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=121&graph_template_id=15’ 510s 510s 0K .......... .......... .......... .......... .......... 4.47G 510s 50K ........ 16.3T=0s 510s 510s 2025-02-19 11:07:41 (5.26 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=121&graph_template_id=15’ saved [60185] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=116&graph_template_id=15 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=15 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=15 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=116&graph_template_id=15’ 510s 510s 0K .......... .......... .......... .......... .......... 7.85G 510s 50K ........ 16.3T=0s 510s 510s 2025-02-19 11:07:41 (9.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=116&graph_template_id=15’ saved [60185] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=89&graph_template_id=12 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=12 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=12 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=89&graph_template_id=12’ 510s 510s 0K .......... .......... .......... .......... .......... 4.42G 510s 50K .......... ........ 211M=0s 510s 510s 2025-02-19 11:07:41 (703 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=89&graph_template_id=12’ saved [69819] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=109&graph_template_id=13 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=109&graph_template_id=13’ 510s 510s 0K .......... .......... .......... .......... .......... 6.04G 510s 50K ........ 16.3T=0s 510s 510s 2025-02-19 11:07:41 (7.10 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=109&graph_template_id=13’ saved [60187] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=104&graph_template_id=13 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=13 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=13 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=104&graph_template_id=13’ 510s 510s 0K .......... .......... .......... .......... .......... 5.40G 510s 50K ........ 16.3T=0s 510s 510s 2025-02-19 11:07:41 (6.35 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=104&graph_template_id=13’ saved [60187] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=74&graph_template_id=11 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=11 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=11 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=74&graph_template_id=11’ 510s 510s 0K .......... .......... .......... .......... .......... 4.90G 510s 50K .......... ........ 224M=0s 510s 510s 2025-02-19 11:07:41 (748 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=74&graph_template_id=11’ saved [69759] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=59&graph_template_id=10 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=10 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=10 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=59&graph_template_id=10’ 510s 510s 0K .......... .......... .......... .......... .......... 4.79G 510s 50K .......... ........ 363M=0s 510s 510s 2025-02-19 11:07:41 (1.11 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=59&graph_template_id=10’ saved [69800] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=449&graph_template_id=50 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=50 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=50 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=449&graph_template_id=50’ 510s 510s 0K .......... .......... .......... .......... .......... 5.71G 510s 50K .......... ..... 191M=0s 510s 510s 2025-02-19 11:07:41 (740 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=449&graph_template_id=50’ saved [66804] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=502&graph_template_id=52 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=52 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=52 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=502&graph_template_id=52’ 510s 510s 0K .......... .......... .......... .......... .......... 5.33G 510s 50K .......... .......... .. 227M=0s 510s 510s 2025-02-19 11:07:41 (674 MB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=502&graph_template_id=52’ saved [73946] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=461&graph_template_id=51 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=51 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=51 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=461&graph_template_id=51’ 510s 510s 0K .......... .......... .......... .......... .......... 3.93G 510s 50K .......... .......... .......... .......... ...... 880M=0s 510s 510s 2025-02-19 11:07:41 (1.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=461&graph_template_id=51’ saved [98625] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=420&graph_template_id=46 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=46 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=46 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=420&graph_template_id=46’ 510s 510s 0K .......... .......... .......... .......... .......... 4.01G 510s 50K .......... ......... 356M=0s 510s 510s 2025-02-19 11:07:41 (1.01 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=420&graph_template_id=46’ saved [71403] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=436&graph_template_id=47 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=47 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=47 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=436&graph_template_id=47’ 510s 510s 0K .......... .......... .......... .......... .......... 5.35G 510s 50K ....... 14.8T=0s 510s 510s 2025-02-19 11:07:41 (6.20 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=436&graph_template_id=47’ saved [59351] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=127&graph_template_id=16 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=127&graph_template_id=16’ 510s 510s 0K .......... .......... .......... .......... .......... 4.73G 510s 50K ........ 16.3T=0s 510s 510s 2025-02-19 11:07:41 (5.55 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=127&graph_template_id=16’ saved [60144] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=122&graph_template_id=16 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=16 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=16 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 200 OK 510s Length: unspecified [text/html] 510s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=122&graph_template_id=16’ 510s 510s 0K .......... .......... .......... .......... .......... 5.82G 510s 50K ........ 16.3T=0s 510s 510s 2025-02-19 11:07:41 (6.83 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=122&graph_template_id=16’ saved [60144] 510s 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=195&graph_template_id=26 510s Reusing existing connection to [localhost]:80. 510s HTTP request sent, awaiting response... 302 Found 510s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 510s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 510s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=195&graph_template_id=26’ 511s 511s 0K .......... .......... .......... .......... .......... 6.68G 511s 50K .......... ... 24.4T=0s 511s 511s 2025-02-19 11:07:41 (8.44 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=195&graph_template_id=26’ saved [64625] 511s 511s --2025-02-19 11:07:41-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=186&graph_template_id=26 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=26 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=26 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=186&graph_template_id=26’ 511s 511s 0K .......... .......... .......... .......... .......... 5.19G 511s 50K .......... ... 24.4T=0s 511s 511s 2025-02-19 11:07:42 (6.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=186&graph_template_id=26’ saved [64625] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=185&graph_template_id=25 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=185&graph_template_id=25’ 511s 511s 0K .......... .......... .......... .......... .......... 5.30G 511s 50K .......... ... 24.7T=0s 511s 511s 2025-02-19 11:07:42 (6.70 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=185&graph_template_id=25’ saved [64765] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=176&graph_template_id=25 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=25 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=25 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=176&graph_template_id=25’ 511s 511s 0K .......... .......... .......... .......... .......... 6.00G 511s 50K .......... ... 24.7T=0s 511s 511s 2025-02-19 11:07:42 (7.59 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=176&graph_template_id=25’ saved [64765] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=205&graph_template_id=27 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=205&graph_template_id=27’ 511s 511s 0K .......... .......... .......... .......... .......... 5.35G 511s 50K .......... ... 24.4T=0s 511s 511s 2025-02-19 11:07:42 (6.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=205&graph_template_id=27’ saved [64626] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=196&graph_template_id=27 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=27 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=27 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=196&graph_template_id=27’ 511s 511s 0K .......... .......... .......... .......... .......... 5.91G 511s 50K .......... ... 24.4T=0s 511s 511s 2025-02-19 11:07:42 (7.45 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=196&graph_template_id=27’ saved [64626] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=139&graph_template_id=18 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=139&graph_template_id=18’ 511s 511s 0K .......... .......... .......... .......... .......... 4.03G 511s 50K ........ 16.5T=0s 511s 511s 2025-02-19 11:07:42 (4.75 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=139&graph_template_id=18’ saved [60287] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=134&graph_template_id=18 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=18 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=18 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=134&graph_template_id=18’ 511s 511s 0K .......... .......... .......... .......... .......... 7.32G 511s 50K ........ 16.5T=0s 511s 511s 2025-02-19 11:07:42 (8.61 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=134&graph_template_id=18’ saved [60287] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=145&graph_template_id=19 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=145&graph_template_id=19’ 511s 511s 0K .......... .......... .......... .......... .......... 5.59G 511s 50K ........ 16.2T=0s 511s 511s 2025-02-19 11:07:42 (6.56 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=145&graph_template_id=19’ saved [60112] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=140&graph_template_id=19 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=19 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=19 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=140&graph_template_id=19’ 511s 511s 0K .......... .......... .......... .......... .......... 7.08G 511s 50K ........ 16.2T=0s 511s 511s 2025-02-19 11:07:42 (8.31 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=140&graph_template_id=19’ saved [60112] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=151&graph_template_id=20 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=151&graph_template_id=20’ 511s 511s 0K .......... .......... .......... .......... .......... 3.59G 511s 50K ........ 16.6T=0s 511s 511s 2025-02-19 11:07:42 (4.23 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=151&graph_template_id=20’ saved [60341] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=146&graph_template_id=20 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=20 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=20 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=146&graph_template_id=20’ 511s 511s 0K .......... .......... .......... .......... .......... 5.00G 511s 50K ........ 16.6T=0s 511s 511s 2025-02-19 11:07:42 (5.90 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=146&graph_template_id=20’ saved [60341] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_movedown&id=276&graph_template_id=32 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=276&graph_template_id=32’ 511s 511s 0K .......... .......... .......... .......... .......... 3.75G 511s 50K .......... ... 24.4T=0s 511s 511s 2025-02-19 11:07:42 (4.73 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_movedown&id=276&graph_template_id=32’ saved [64599] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates_items.php?action=item_moveup&id=267&graph_template_id=32 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 302 Found 511s Location: graph_templates.php?header=false&action=template_edit&id=32 [following] 511s --2025-02-19 11:07:42-- http://localhost/cacti/graph_templates.php?header=false&action=template_edit&id=32 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=267&graph_template_id=32’ 511s 511s 0K .......... .......... .......... .......... .......... 4.50G 511s 50K .......... ... 24.4T=0s 511s 511s 2025-02-19 11:07:42 (5.68 GB/s) - ‘localhost/cacti/graph_templates_items.php?action=item_moveup&id=267&graph_template_id=32’ saved [64599] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=12 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=12’ 511s 511s 0K .......... .......... .......... .......... .......... 7.20G 511s 50K ....... 14.1T=0s 511s 511s 2025-02-19 11:07:42 (8.29 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=4&view_rrd=12’ saved [58945] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=1 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=1’ 511s 511s 0K .......... .......... .......... .......... .......... 3.80G 511s 50K ....... 14.1T=0s 511s 511s 2025-02-19 11:07:42 (4.38 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=1&view_rrd=1’ saved [58933] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=22 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=22’ 511s 511s 0K .......... .......... .......... .......... ...... 6.64G=0s 511s 511s 2025-02-19 11:07:42 (6.64 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=14&view_rrd=22’ saved [47942] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=23 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=23’ 511s 511s 0K .......... .......... .......... .......... ...... 7.52G=0s 511s 511s 2025-02-19 11:07:42 (7.52 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=15&view_rrd=23’ saved [47909] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=20 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=20’ 511s 511s 0K .......... .......... .......... .......... ...... 3.18G=0s 511s 511s 2025-02-19 11:07:42 (3.18 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=12&view_rrd=20’ saved [47933] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=21 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=21’ 511s 511s 0K .......... .......... .......... .......... ...... 6.65G=0s 511s 511s 2025-02-19 11:07:42 (6.65 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=13&view_rrd=21’ saved [47905] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=19 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=19’ 511s 511s 0K .......... .......... .......... .......... ...... 6.11G=0s 511s 511s 2025-02-19 11:07:42 (6.11 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=11&view_rrd=19’ saved [47908] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=18 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=18’ 511s 511s 0K .......... .......... .......... .......... ...... 5.80G=0s 511s 511s 2025-02-19 11:07:42 (5.80 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=10&view_rrd=18’ saved [47914] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=85 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=85’ 511s 511s 0K .......... .......... .......... .......... ...... 6.24G=0s 511s 511s 2025-02-19 11:07:42 (6.24 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=48&view_rrd=85’ saved [47166] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=83 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=83’ 511s 511s 0K .......... .......... .......... .......... ...... 5.60G=0s 511s 511s 2025-02-19 11:07:42 (5.60 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=46&view_rrd=83’ saved [47178] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=84 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=84’ 511s 511s 0K .......... .......... .......... .......... ...... 7.40G=0s 511s 511s 2025-02-19 11:07:42 (7.40 GB/s) - ‘localhost/cacti/data_templates.php?action=template_edit&id=47&view_rrd=84’ saved [47198] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=1 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=1’ 511s 511s 0K .......... .......... .......... .......... ...... 7.07G=0s 511s 511s 2025-02-19 11:07:42 (7.07 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_rule=1’ saved [47970] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=0 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=0’ 511s 511s 0K .......... .......... .......... ....... 6.17G=0s 511s 511s 2025-02-19 11:07:42 (6.17 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_hosts=0’ saved [38496] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=0 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=0’ 511s 511s 0K .......... .......... .......... .... 5.80G=0s 511s 511s 2025-02-19 11:07:42 (5.80 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=3&show_graphs=0’ saved [35801] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=1 511s Reusing existing connection to [localhost]:80. 511s HTTP request sent, awaiting response... 200 OK 511s Length: unspecified [text/html] 511s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=1’ 511s 511s 0K .......... .......... .......... ........ 4.57G=0s 511s 511s 2025-02-19 11:07:42 (4.57 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_rule=1’ saved [39795] 511s 511s --2025-02-19 11:07:42-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=0 511s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=0’ 512s 512s 0K .......... .......... .......... ........ 5.30G=0s 512s 512s 2025-02-19 11:07:42 (5.30 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_hosts=0’ saved [39795] 512s 512s --2025-02-19 11:07:42-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=0’ 512s 512s 0K .......... .......... .......... ........ 4.35G=0s 512s 512s 2025-02-19 11:07:43 (4.35 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=1&show_graphs=0’ saved [39795] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=1’ 512s 512s 0K .......... .......... .......... ........ 3.32G=0s 512s 512s 2025-02-19 11:07:43 (3.32 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_rule=1’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=0’ 512s 512s 0K .......... .......... .......... ........ 6.13G=0s 512s 512s 2025-02-19 11:07:43 (6.13 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_hosts=0’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=0’ 512s 512s 0K .......... .......... .......... ........ 5.01G=0s 512s 512s 2025-02-19 11:07:43 (5.01 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=edit&id=2&show_graphs=0’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=0’ 512s 512s 0K .......... .......... .......... ...... 5.39G=0s 512s 512s 2025-02-19 11:07:43 (5.39 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=1&show_hosts=0’ saved [36890] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=1’ 512s 512s 0K .......... .......... .......... .......... . 5.40G=0s 512s 512s 2025-02-19 11:07:43 (5.40 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=1’ saved [42992] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=2&id=1&rule_type=4 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_tree_rules.php?action=edit&id=1 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=2&id=1&rule_type=4’ 512s 512s 0K .......... .......... .......... ...... 5.51G=0s 512s 512s 2025-02-19 11:07:43 (5.51 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=2&id=1&rule_type=4’ saved [36890] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=1&id=1&rule_type=4 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_tree_rules.php?action=edit&id=1 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=1&id=1&rule_type=4’ 512s 512s 0K .......... .......... .......... ...... 5.29G=0s 512s 512s 2025-02-19 11:07:43 (5.29 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=1&id=1&rule_type=4’ saved [36890] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=1’ 512s 512s 0K .......... .......... .......... .......... . 5.92G=0s 512s 512s 2025-02-19 11:07:43 (5.92 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=1’ saved [42989] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=0’ 512s 512s 0K .......... .......... .......... ...... 4.97G=0s 512s 512s 2025-02-19 11:07:43 (4.97 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=edit&id=2&show_hosts=0’ saved [37629] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=7&id=2&rule_type=3 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_tree_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=7&id=2&rule_type=3’ 512s 512s 0K .......... .......... .......... ...... 3.69G=0s 512s 512s 2025-02-19 11:07:43 (3.69 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=7&id=2&rule_type=3’ saved [37629] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=6&id=2&rule_type=3 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_tree_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=6&id=2&rule_type=3’ 512s 512s 0K .......... .......... .......... ...... 5.01G=0s 512s 512s 2025-02-19 11:07:43 (5.01 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=6&id=2&rule_type=3’ saved [37629] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=1’ 512s 512s 0K .......... .......... .......... .......... .. 4.78G=0s 512s 512s 2025-02-19 11:07:43 (4.78 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=1’ saved [43315] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=8&id=1&rule_type=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=1 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=8&id=1&rule_type=1’ 512s 512s 0K .......... .......... .......... ........ 3.41G=0s 512s 512s 2025-02-19 11:07:43 (3.41 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=8&id=1&rule_type=1’ saved [39795] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=1 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=1’ 512s 512s 0K .......... .......... .......... ........ 6.87G=0s 512s 512s 2025-02-19 11:07:43 (6.87 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=1’ saved [39795] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=3&id=1&rule_type=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=1 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=3&id=1&rule_type=2’ 512s 512s 0K .......... .......... .......... ........ 5.99G=0s 512s 512s 2025-02-19 11:07:43 (5.99 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=3&id=1&rule_type=2’ saved [39795] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=1 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=2’ 512s 512s 0K .......... .......... .......... ........ 5.13G=0s 512s 512s 2025-02-19 11:07:43 (5.13 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=1&id=1&rule_type=2’ saved [39795] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=1’ 512s 512s 0K .......... .......... .......... ........ 3.38G=0s 512s 512s 2025-02-19 11:07:43 (3.38 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=5&id=2&rule_type=1’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=1 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=1’ 512s 512s 0K .......... .......... .......... ........ 6.87G=0s 512s 512s 2025-02-19 11:07:43 (6.87 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=1’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=6&id=2&rule_type=2 512s Connecting to localhost (localhost)|::1|:80... connected. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=6&id=2&rule_type=2’ 512s 512s 0K .......... .......... .......... ........ 415M=0s 512s 512s 2025-02-19 11:07:43 (415 MB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_movedown&item_id=6&id=2&rule_type=2’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_graph_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_graph_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=2’ 512s 512s 0K .......... .......... .......... ........ 4.31G=0s 512s 512s 2025-02-19 11:07:43 (4.31 GB/s) - ‘localhost/cacti/automation_graph_rules.php?action=item_moveup&item_id=4&id=2&rule_type=2’ saved [39009] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=0’ 512s 512s 0K .......... .......... .......... .... 5.67G=0s 512s 512s 2025-02-19 11:07:43 (5.67 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=1&rule_type=4&show_trees=0’ saved [35779] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=0’ 512s 512s 0K .......... .......... .......... .... 5.86G=0s 512s 512s 2025-02-19 11:07:43 (5.86 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=1&item_id=2&rule_type=4&show_trees=0’ saved [35773] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=4&id=2&rule_type=4 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_tree_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=4&id=2&rule_type=4’ 512s 512s 0K .......... .......... .......... ...... 4.26G=0s 512s 512s 2025-02-19 11:07:43 (4.26 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_movedown&item_id=4&id=2&rule_type=4’ saved [37629] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=3&id=2&rule_type=4 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 302 Found 512s Location: automation_tree_rules.php?action=edit&id=2 [following] 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=edit&id=2 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=3&id=2&rule_type=4’ 512s 512s 0K .......... .......... .......... ...... 6.72G=0s 512s 512s 2025-02-19 11:07:43 (6.72 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_moveup&item_id=3&id=2&rule_type=4’ saved [37629] 512s 512s --2025-02-19 11:07:43-- http://localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=0 512s Reusing existing connection to [localhost]:80. 512s HTTP request sent, awaiting response... 200 OK 512s Length: unspecified [text/html] 512s Saving to: ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=0’ 512s 512s 0K .......... .......... .......... ..... 7.12G=0s 512s 512s 2025-02-19 11:07:43 (7.12 GB/s) - ‘localhost/cacti/automation_tree_rules.php?action=item_edit&id=2&item_id=4&rule_type=4&show_trees=0’ saved [36094] 512s 512s FINISHED --2025-02-19 11:07:43-- 512s Total wall clock time: 1m 4s 512s Downloaded: 2535 files, 122M in 0.1s (991 MB/s) 512s --2025-02-19 11:07:43-- http://localhost/cacti/tree.php 512s Resolving localhost (localhost)... ::1, 127.0.0.1 512s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: unspecified [text/html] 513s Saving to: ‘tree.php.1’ 513s 513s 0K .......... .......... .......... ..... 1.65G=0s 513s 513s 2025-02-19 11:07:43 (1.65 GB/s) - ‘tree.php.1’ saved [36234] 513s 513s --2025-02-19 11:07:43-- http://localhost/cacti/graph_view.php?action=tree&';window.alert('bla');' 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: unspecified [text/html] 513s Saving to: ‘/tmp/tmp.ZGCaxCPcha’ 513s 513s 0K .......... ......... Checking /tmp/tmp.ZGCaxCPcha for unescaped code (CVE-2017-15194)... done 513s 1.78G=0s 513s 513s 2025-02-19 11:07:44 (1.78 GB/s) - ‘/tmp/tmp.ZGCaxCPcha’ saved [20111] 513s 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s --2025-02-19 11:07:44-- http://localhost/cacti/remote_agent.php 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... Checking for CVE-2017-16660 ... done 513s 200 OK 513s Length: 79 [text/html] 513s Saving to: ‘/tmp/tmp.ZGCaxCPcha’ 513s 513s 0K 100% 42.8M=0s 513s 513s 2025-02-19 11:07:44 (42.8 MB/s) - ‘/tmp/tmp.ZGCaxCPcha’ saved [79/79] 513s 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s --2025-02-19 11:07:44-- http://localhost/cacti/clog.php?rfilter=&reverse=1&refresh=60&message_type=-1&tail_lines=500&filename=passwd 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.ZGCaxCPcha’ 513s 513s 0K Checking /tmp/tmp.ZGCaxCPcha for /etc/passwd content (CVE-2017-16661) ... done 513s 100% 53.5M=0s 513s 513s 2025-02-19 11:07:44 (53.5 MB/s) - ‘/tmp/tmp.ZGCaxCPcha’ saved [93/93] 513s 513s --2025-02-19 11:07:44-- http://localhost/cacti/host.php/gahv8'-alert('this_is_bad')-'w6vt7??host_status=-1&host_template_id=-1&site_id=-1&poller_id=-1&rows=-1&filter= 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.ZGCaxCPcha’ 513s 513s 0KChecking /tmp/tmp.ZGCaxCPcha for XSS content (CVE-2017-16785) ... 100% 45.9M=0s 513s 513s 2025-02-19 11:07:44 (45.9 MB/s) - ‘/tmp/tmp.ZGCaxCPcha’ saved [93/93] 513s 513s done 513s --2025-02-19 11:07:44-- http://localhost/cacti/settings.php 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.ZGCaxCPcha’ 513s 513s 0K 100% 42.6M=0s 513s 513s 2025-02-19 11:07:44 (42.6 MB/s) - ‘/tmp/tmp.ZGCaxCPcha’ saved [93/93] 513s 513s No unexpected output in /var/log/cacti/cacti.log 513s Copying /var/log/cacti/cacti.log to artifacts 513s Copying /var/log/apache2/error.log to artifacts 513s + sudo systemctl restart apache2 513s + sudo systemctl status apache2 513s ● apache2.service - The Apache HTTP Server 513s Loaded: loaded (/usr/lib/systemd/system/apache2.service; enabled; preset: enabled) 513s Active: active (running) since Wed 2025-02-19 11:07:44 UTC; 16ms ago 513s Invocation: e1dbd67f86904bdabe51367014285fc0 513s Docs: https://httpd.apache.org/docs/2.4/ 513s Process: 14794 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS) 513s Main PID: 14797 (apache2) 513s Tasks: 1 (limit: 4769) 513s Memory: 7M (peak: 7M) 513s CPU: 30ms 513s CGroup: /system.slice/apache2.service 513s └─14797 /usr/sbin/apache2 -k start 513s 513s Feb 19 11:07:44 autopkgtest systemd[1]: Starting apache2.service - The Apache HTTP Server... 513s Feb 19 11:07:44 autopkgtest systemd[1]: Started apache2.service - The Apache HTTP Server. 513s + sudo systemctl stop firewalld 513s --------------------------------------------------------------------- 513s NOTE: Check all Pages Script Starting 513s --------------------------------------------------------------------- 513s Failed to stop firewalld.service: Unit firewalld.service not loaded. 513s + echo --------------------------------------------------------------------- 513s + echo 'NOTE: Check all Pages Script Starting' 513s + echo --------------------------------------------------------------------- 513s + WEBHOST=http://localhost/cacti 513s + WAUSER=admin 513s + WAPASS=admin 513s + DBFILE=./.my.cnf 513s + DBHOST=localhost 513s + DBNAME=cacti 513s + DBPASS=cacti_user 513s + DBUSER=cacti_user 513s + DBSLEEP=2 513s + WSOWNER=apache 513s + WSERROR=/var/log/httpd/error_log 513s + WSACCESS=/var/log/httpd/access_log 513s + id www-data 513s + WSOWNER=www-data 513s + WSERROR=/var/log/apache2/error.log 513s + WSACCESS=/var/log/apache2/access.log 513s ++ wget 513s + WGET_OUTPUT='wget: missing URL 513s Usage: wget [OPTION]... [URL]... 513s 513s Try `wget --help'\'' for more options.' 513s + WGET_RESULT=1 513s + '[' 1 -eq 127 ']' 513s + '[' -n -du ']' 513s + case $1 in 513s + DBUSER=cacti 513s + DBSLEEP=0 513s + shift 513s + shift 513s + '[' -n -dp ']' 513s + case $1 in 513s + DBPASS=RipjgWFyvm8c 513s + DBSLEEP=0 513s + shift 513s + shift 513s + '[' -n '' ']' 513s + echo 'Using the following values:' 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=WEBHOST 513s + [[ WEBHOST == \W\A\P\A\S\S ]] 513s + [[ WEBHOST == \D\B\P\A\S\S ]] 513s + value=http://localhost/cacti 513s + printf '\t%10s | %s\n' WEBHOST http://localhost/cacti 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=WAUSER 513s + [[ WAUSER == \W\A\P\A\S\S ]] 513s + [[ WAUSER == \D\B\P\A\S\S ]] 513s + value=admin 513s + printf '\t%10s | %s\n' WAUSER admin 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=WAPASS 513s + [[ WAPASS == \W\A\P\A\S\S ]] 513s + value='*******' 513s + printf '\t%10s | %s\n' WAPASS '*******' 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=DBFILE 513s + [[ DBFILE == \W\A\P\A\S\S ]] 513s + [[ DBFILE == \D\B\P\A\S\S ]] 513s + value=./.my.cnf 513s + printf '\t%10s | %s\n' DBFILE ./.my.cnf 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=DBHOST 513s + [[ DBHOST == \W\A\P\A\S\S ]] 513s + [[ DBHOST == \D\B\P\A\S\S ]] 513s + value=localhost 513s + printf '\t%10s | %s\n' DBHOST localhost 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=DBNAME 513s + [[ DBNAME == \W\A\P\A\S\S ]] 513s + [[ DBNAME == \D\B\P\A\S\S ]] 513s + value=cacti 513s + printf '\t%10s | %s\n' DBNAME cacti 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=DBPASS 513s + [[ DBPASS == \W\A\P\A\S\S ]] 513s + [[ DBPASS == \D\B\P\A\S\S ]] 513s + value='*******' 513s + printf '\t%10s | %s\n' DBPASS '*******' 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=DBUSER 513s + [[ DBUSER == \W\A\P\A\S\S ]] 513s + [[ DBUSER == \D\B\P\A\S\S ]] 513s + value=cacti 513s + printf '\t%10s | %s\n' DBUSER cacti 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=DBSLEEP 513s + [[ DBSLEEP == \W\A\P\A\S\S ]] 513s + [[ DBSLEEP == \D\B\P\A\S\S ]] 513s + value=0 513s Using the following values: 513s WEBHOST | http://localhost/cacti 513s WAUSER | admin 513s WAPASS | ******* 513s DBFILE | ./.my.cnf 513s DBHOST | localhost 513s DBNAME | cacti 513s DBPASS | ******* 513s DBUSER | cacti 513s DBSLEEP | 0 513s WSOWNER | www-data 513s WSERROR | /var/log/apache2/error.log 513s WSACCESS | /var/log/apache2/access.log 513s NOTE: Script is running in non-interactive mode ensure you fill out the DB credentials!!! 513s + printf '\t%10s | %s\n' DBSLEEP 0 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=WSOWNER 513s + [[ WSOWNER == \W\A\P\A\S\S ]] 513s + [[ WSOWNER == \D\B\P\A\S\S ]] 513s + value=www-data 513s + printf '\t%10s | %s\n' WSOWNER www-data 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=WSERROR 513s + [[ WSERROR == \W\A\P\A\S\S ]] 513s + [[ WSERROR == \D\B\P\A\S\S ]] 513s + value=/var/log/apache2/error.log 513s + printf '\t%10s | %s\n' WSERROR /var/log/apache2/error.log 513s + for v in WEBHOST WAUSER WAPASS DBFILE DBHOST DBNAME DBPASS DBUSER DBSLEEP WSOWNER WSERROR WSACCESS 513s + name=WSACCESS 513s + [[ WSACCESS == \W\A\P\A\S\S ]] 513s + [[ WSACCESS == \D\B\P\A\S\S ]] 513s + value=/var/log/apache2/access.log 513s + printf '\t%10s | %s\n' WSACCESS /var/log/apache2/access.log 513s + export 'MYSQL_AUTH_USR=-ucacti -pRipjgWFyvm8c' 513s + MYSQL_AUTH_USR='-ucacti -pRipjgWFyvm8c' 513s + '[' -f ./.my.cnf ']' 513s + echo 'NOTE: Script is running in non-interactive mode ensure you fill out the DB credentials!!!' 513s + [[ -n 0 ]] 513s + sleep 0 513s + started=0 513s + BASE_PATH=/usr/share/cacti/site 513s + echo 'NOTE: Base Path is /usr/share/cacti/site' 513s NOTE: Base Path is /usr/share/cacti/site 513s + DEBUG=0 513s + CACTI_LOG=/usr/share/cacti/site/log/cacti.log 513s + CACTI_ERRLOG=/usr/share/cacti/site/log/cacti.stderr.log 513s + POLLER=/usr/share/cacti/site/poller.php 513s + '[' '!' -d /tmp/check-all-pages ']' 513s + mkdir /tmp/check-all-pages 513s + trap catch_error 1 2 3 6 9 14 15 513s + export 'MYSQL_AUTH_USR=-ucacti -pRipjgWFyvm8c -hlocalhost' 513s + MYSQL_AUTH_USR='-ucacti -pRipjgWFyvm8c -hlocalhost' 513s + exec 513s ++ pwd 513s + echo 'NOTE: Current Directory is /tmp/autopkgtest.ysJYGH/build.Eyz/src' 513s NOTE: Current Directory is /tmp/autopkgtest.ysJYGH/build.Eyz/src 513s + /bin/chown www-data:www-data /usr/share/cacti/site/log/cacti.log 513s + /bin/chown www-data:www-data /usr/share/cacti/site/log/cacti.stderr.log 513s + set_cacti_admin_password 513s + echo 'NOTE: Setting Cacti admin password and unsetting forced password change' 513s NOTE: Setting Cacti admin password and unsetting forced password change 513s + mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'UPDATE user_auth SET password=MD5('\''admin'\'') WHERE id = 1 ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'UPDATE user_auth SET password_change='\'''\'', must_change_password='\'''\'' WHERE id = 1 ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'REPLACE INTO settings (name, value) VALUES ('\''secpass_forceold'\'', '\'''\'') ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + enable_log_validation 513s + echo 'NOTE: Setting Cacti log validation to on to validate improperly validated variables' 513s NOTE: Setting Cacti log validation to on to validate improperly validated variables 513s + mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'REPLACE INTO settings (name, value) VALUES ('\''log_validation'\'','\''on'\'') ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + set_stderr_logging 513s + echo 'NOTE: Setting Cacti standard error log location' 513s NOTE: Setting Cacti standard error log location 513s + mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'REPLACE INTO cacti.settings (name, value) VALUES ('\''path_stderrlog'\'', '\''/usr/share/cacti/site/log/cacti.stderr.log'\'');' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + allow_index_following 513s + echo 'NOTE: Altering Cacti to allow following pages' 513s NOTE: Altering Cacti to allow following pages 513s + sed -i 's///g' /usr/share/cacti/site/lib/html.php 513s ++ mktemp 513s + tmpFile1=/tmp/tmp.wVhHvtNpGT 513s ++ mktemp 513s + tmpFile2=/tmp/tmp.Wla2Uptohp 513s ++ mktemp 513s + logFile1=/tmp/tmp.yk5rnMEEhG 513s ++ mktemp 513s + cookieFile=/tmp/tmp.xAsk2ZRClb 513s + loadSaveCookie='--load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb' 513s + started=1 513s + '[' 0 -eq 1 ']' 513s + set_log_level_normal 513s + echo 'NOTE: Setting Cacti log verbosity to low' 513s NOTE: Setting Cacti log verbosity to low 513s + mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'REPLACE INTO settings (name, value) VALUES ('\''log_verbosity'\'', '\''2'\'') ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + echo 'Starting Web Based Page Validation' 513s Starting Web Based Page Validation 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + echo 'NOTE: Saving Cookie Data' 513s NOTE: Saving Cookie Data 513s + wget -q --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb --output-document=/tmp/tmp.wVhHvtNpGT http://localhost/cacti/index.php 513s ++ grep 'name='\''__csrf_magic'\'' value=' '{/tmp/tmp.wVhHvtNpGT}' 513s ++ sed 's/.*__csrf_magic'\'' value="//' 513s grep: {/tmp/tmp.wVhHvtNpGT}: No such file or directory 513s ++ sed 's/" \/>//' 513s + magic= 513s + postData='action=login&login_username=admin&login_password=admin&__csrf_magic=' 513s + echo 'NOTE: Logging into the Cacti User Interface' 513s NOTE: Logging into the Cacti User Interface 513s + wget --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb '--post-data=action=login&login_username=admin&login_password=admin&__csrf_magic=' --output-document=/tmp/tmp.Wla2Uptohp http://localhost/cacti/index.php 513s --2025-02-19 11:07:44-- http://localhost/cacti/index.php 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.Wla2Uptohp’ 513s 513s 0K 100% 55.3M=0s 513s 513s 2025-02-19 11:07:44 (55.3 MB/s) - ‘/tmp/tmp.Wla2Uptohp’ saved [93/93] 513s 513s + echo 'NOTE: Recursively Checking all Base Pages - Note this will take several minutes!!!' 513s NOTE: Recursively Checking all Base Pages - Note this will take several minutes!!! 513s + wget --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb --output-file=/tmp/tmp.yk5rnMEEhG '--reject-regex=(logout\.php|remove|delete|uninstall|install|disable|enable)' --recursive --level=0 --execute=robots=off http://localhost/cacti/index.php 513s + error=0 513s + '[' 0 -eq 8 ']' 513s + '[' 0 -eq 1 ']' 513s ++ grep -c HTTP /tmp/tmp.yk5rnMEEhG 513s + checks=1 513s + echo 'NOTE: There were 1 pages checked through recursion' 513s NOTE: There were 1 pages checked through recursion 513s + [[ 0 -eq 1 ]] 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + echo 'NOTE: Displaying some page view statistics for PHP pages only' 513s NOTE: Displaying some page view statistics for PHP pages only 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + echo 'NOTE: Page Clicks' 513s NOTE: Page Clicks 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + awk '{print $7}' 513s + grep -v index.php 513s + awk '-F?' '{print $1}' 513s + sort 513s + awk '{printf("NOTE: %-57s %5d\n", $2, $1)}' 513s + grep php 513s + uniq -c 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + echo 'NOTE: Checking Cacti Log for Errors' 513s NOTE: Checking Cacti Log for Errors 513s ++ grep -v -e 'AUTH LOGIN: User '\''admin'\'' authenticated' -e 'WEBUI NOTE: Poller Resource Cache scheduled for rebuild by user admin' -e 'WEBUI NOTE: Poller Cache repopulated by user admin' -e 'WEBUI NOTE: Cacti DS Stats purged by user admin' -e 'IMPORT NOTE: File is Signed Correctly' -e 'MAILER INFO:' -e STATS: -e 'IMPORT Importing XML Data for ' -e 'CMDPHP SQL Backtrace: ' -e 'CMDPHP Not Already Set' /usr/share/cacti/site/log/cacti.log 513s + FILTERED_LOG= 513s + true 513s + for file in debian/tests/check-CVE-* 513s + echo 513s 513s + echo running check-CVE-2016-3172 513s running check-CVE-2016-3172 513s + source debian/tests/check-CVE-2016-3172 513s ++ postData='action=item_edit&tree_id=1&parent_id=7%20and%20sleep%28100%29&__csrf_magic=' 513s ++ wget --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb '--post-data=action=item_edit&tree_id=1&parent_id=7%20and%20sleep%28100%29&__csrf_magic=' --timeout=10 --tries=1 http://localhost/cacti/tree.php 513s --2025-02-19 11:07:44-- http://localhost/cacti/tree.php 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘tree.php.2’ 513s 513s 0K 100% 2.84M=0s 513s 513s 2025-02-19 11:07:44 (2.84 MB/s) - ‘tree.php.2’ saved [93/93] 513s 513s + for file in debian/tests/check-CVE-* 513s + echo 513s 513s + echo running check-CVE-2017-15194 513s running check-CVE-2017-15194 513s + source debian/tests/check-CVE-2017-15194 513s ++ wget --output-document=/tmp/tmp.wVhHvtNpGT --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb 'http://localhost/cacti/graph_view.php?action=tree&'\'';window.alert('\''bla'\'');'\''' 513s --2025-02-19 11:07:44-- http://localhost/cacti/graph_view.php?action=tree&';window.alert('bla');' 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.wVhHvtNpGT’ 513s 513s 0K 100% 55.4M=0s 513s 513s 2025-02-19 11:07:44 (55.4 MB/s) - ‘/tmp/tmp.wVhHvtNpGT’ saved [93/93] 513s 513s ++ echo -n 'Checking /tmp/tmp.wVhHvtNpGT for unescaped code (CVE-2017-15194)... ' 513s Checking /tmp/tmp.wVhHvtNpGT for unescaped code (CVE-2017-15194)... ++ grep -q ';window.alert('\''bla'\'');' /tmp/tmp.wVhHvtNpGT 513s ++ echo done 513s done 513s + for file in debian/tests/check-CVE-* 513s + echo 513s 513s + echo running check-CVE-2017-16641 513s running check-CVE-2017-16641 513s + source debian/tests/check-CVE-2017-16641 513s ++ postData='tab=path&path_rrdtool=touch%20/tmp/CVE-2017-16641&action=save&path_snmpwalk=/usr/bin/snmpwalk&path_snmpget=/usr/bin/snmpget&path_snmpbulkwalk=/usr/bin/snmpbulkwalk&path_snmpgetnext=/usr/bin/snmpgetnext&path_snmptrap=/usr/bin/snmptrap&path_php_binary=/usr/bin/php&path_cactilog=/var/log/cacti/cacti.log&logrotate_retain=7&path_spine=/usr/sbin/spine&path_spine_config=/etc/cacti/spine.conf&rrd_autoclean_method=1&rrd_achive=/usr/share/cacti/site/rra/archive/&__csrf_magic=' 513s ++ wget --output-document=/tmp/tmp.wVhHvtNpGT --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb '--post-data=tab=path&path_rrdtool=touch%20/tmp/CVE-2017-16641&action=save&path_snmpwalk=/usr/bin/snmpwalk&path_snmpget=/usr/bin/snmpget&path_snmpbulkwalk=/usr/bin/snmpbulkwalk&path_snmpgetnext=/usr/bin/snmpgetnext&path_snmptrap=/usr/bin/snmptrap&path_php_binary=/usr/bin/php&path_cactilog=/var/log/cacti/cacti.log&logrotate_retain=7&path_spine=/usr/sbin/spine&path_spine_config=/etc/cacti/spine.conf&rrd_autoclean_method=1&rrd_achive=/usr/share/cacti/site/rra/archive/&__csrf_magic=' http://localhost/cacti/settings.php 513s --2025-02-19 11:07:44-- http://localhost/cacti/settings.php 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.wVhHvtNpGT’ 513s 513s 0K 100% 54.7M=0s 513s 513s 2025-02-19 11:07:44 (54.7 MB/s) - ‘/tmp/tmp.wVhHvtNpGT’ saved [93/93] 513s 513s ++ php /usr/share/cacti/site/poller.php 513s 02/19/2025 11:07:44 - SYSTEM STATS: Time:0.1072 Method:cmd.php Processes:1 Threads:1 Hosts:0 HostsPerProcess:0 DataSources:0 RRDsProcessed:0 513s ++ '[' -f /tmp/CVE-2017-16641 ']' 513s + for file in debian/tests/check-CVE-* 513s + echo 513s 513s + echo running check-CVE-2017-16660 513s running check-CVE-2017-16660 513s + source debian/tests/check-CVE-2017-16660 513s ++ mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'update cacti.settings set value='\''/var/lib/cacti/rra/shell.php'\'' where name='\''path_cactilog'\'' ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s ++ wget --output-document=/tmp/tmp.wVhHvtNpGT --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb --header 'Client-ip: ' http://localhost/cacti/remote_agent.php 513s --2025-02-19 11:07:44-- http://localhost/cacti/remote_agent.php 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 79 [text/html] 513s Saving to: ‘/tmp/tmp.wVhHvtNpGT’ 513s 513s 0K 100% 18.3M=0s 513s 513s 2025-02-19 11:07:44 (18.3 MB/s) - ‘/tmp/tmp.wVhHvtNpGT’ saved [79/79] 513s 513s ++ echo -n 'Checking for CVE-2017-16660 ... ' 513s Checking for CVE-2017-16660 ... ++ '[' -f /var/lib/cacti/rra/shell.php ']' 513s ++ grep -q '' /var/lib/cacti/rra/shell.php 513s ++ echo done 513s done 513s ++ mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'update cacti.settings set value='\''/usr/share/cacti/log/cacti.log'\'' where name='\''path_cactilog'\'' ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + for file in debian/tests/check-CVE-* 513s + echo 513s 513s + echo running check-CVE-2017-16661 513s running check-CVE-2017-16661 513s + source debian/tests/check-CVE-2017-16661 513s ++ mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'update cacti.settings set value='\''/etc/cacti.log'\'' where name='\''path_cactilog'\'' ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s ++ wget --output-document=/tmp/tmp.wVhHvtNpGT --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb 'http://localhost/cacti/clog.php?rfilter=&reverse=1&refresh=60&message_type=-1&tail_lines=500&filename=passwd' 513s --2025-02-19 11:07:44-- http://localhost/cacti/clog.php?rfilter=&reverse=1&refresh=60&message_type=-1&tail_lines=500&filename=passwd 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: 93 [text/html] 513s Saving to: ‘/tmp/tmp.wVhHvtNpGT’ 513s 513s 0K 100% 54.4M=0s 513s 513s 2025-02-19 11:07:44 (54.4 MB/s) - ‘/tmp/tmp.wVhHvtNpGT’ saved [93/93] 513s 513s ++ echo -n 'Checking /tmp/tmp.wVhHvtNpGT for /etc/passwd content (CVE-2017-16661) ... ' 513s Checking /tmp/tmp.wVhHvtNpGT for /etc/passwd content (CVE-2017-16661) ... ++ grep -q root:x:0:0 /tmp/tmp.wVhHvtNpGT 513s ++ echo done 513s done 513s ++ mysql -ucacti -pRipjgWFyvm8c -hlocalhost -e 'update cacti.settings set value='\''/usr/share/cacti/site/log/cacti.log'\'' where name='\''path_cactilog'\'' ;' cacti 513s mysql: [Warning] Using a password on the command line interface can be insecure. 513s + for file in debian/tests/check-CVE-* 513s + echo 513s 513s + echo running check-CVE-2017-16785 513s running check-CVE-2017-16785 513s + source debian/tests/check-CVE-2017-16785 513s ++ wget --output-document=/tmp/tmp.wVhHvtNpGT --load-cookies /tmp/tmp.xAsk2ZRClb --keep-session-cookies --save-cookies /tmp/tmp.xAsk2ZRClb 'http://localhost/cacti/host.php/gahv8'\''-alert('\''this_is_bad'\'')-'\''w6vt7??host_status=-1&host_template_id=-1&site_id=-1&poller_id=-1&rows=-1&filter=' 513s --2025-02-19 11:07:44-- http://localhost/cacti/host.php/gahv8'-alert('this_is_bad')-'w6vt7??host_status=-1&host_template_id=-1&site_id=-1&poller_id=-1&rows=-1&filter= 513s Resolving localhost (localhost)... ::1, 127.0.0.1 513s Connecting to localhost (localhost)|::1|:80... connected. 513s HTTP request sent, awaiting response... 200 OK 513s Length: unspecified [text/html] 513s Saving to: ‘/tmp/tmp.wVhHvtNpGT’ 513s 513s 0K .......... .... 2.40G=0s 513s 513s 2025-02-19 11:07:44 (2.40 GB/s) - ‘/tmp/tmp.wVhHvtNpGT’ saved [14489] 513s 513s ++ echo -n 'Checking /tmp/tmp.wVhHvtNpGT for XSS content (CVE-2017-16785) ... ' 513s Checking /tmp/tmp.wVhHvtNpGT for XSS content (CVE-2017-16785) ... ++ grep -q '-alert('\''this_is_bad'\'')-' /tmp/tmp.wVhHvtNpGT 513s ++ echo done 513s done 513s + save_log_files 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + echo 'Saving All Log Files' 513s Saving All Log Files 513s + echo --------------------------------------------------------------------- 513s --------------------------------------------------------------------- 513s + '[' 1 == 1 ']' 513s ++ date +%s 513s + logBase=/tmp/check-all-pages/test.1739963264 513s + mkdir -p /tmp/check-all-pages/test.1739963264 513s + echo 'NOTE: Copying /usr/share/cacti/site/log/cacti.log to artifacts' 513s NOTE: Copying /usr/share/cacti/site/log/cacti.log to artifacts 513s + cp /usr/share/cacti/site/log/cacti.log /tmp/check-all-pages/test.1739963264/cacti.log 513s + cp /usr/share/cacti/site/log/cacti.stderr.log /tmp/check-all-pages/test.1739963264/cacti_error.log 513s + '[' -f /var/log/apache2/access.log ']' 513s + echo 'NOTE: Copying {/var/log/apache2/access.log} to artifacts' 513s NOTE: Copying {/var/log/apache2/access.log} to artifacts 513s + cp /var/log/apache2/access.log /tmp/check-all-pages/test.1739963264/apache_access.log 513s + '[' -f /var/log/apache2/error.log ']' 513s + echo 'NOTE: Copying /var/log/apache2/error.log to artifacts' 513s NOTE: Copying /var/log/apache2/error.log to artifacts 513s + cp -f /var/log/apache2/error.log /tmp/check-all-pages/test.1739963264/apache_error.log 513s + '[' -f /tmp/tmp.yk5rnMEEhG ']' 513s + echo 'NOTE: Copying /tmp/tmp.yk5rnMEEhG to artifacts' 513s NOTE: Copying /tmp/tmp.yk5rnMEEhG to artifacts 513s + cp -f /tmp/tmp.yk5rnMEEhG /tmp/check-all-pages/test.1739963264/wget_error.log 513s + chmod a+r -R /tmp/check-all-pages/test.1739963264/ 513s + '[' 0 -eq 1 ']' 513s + error=0 513s + '[' -n '' ']' 513s + echo 'NOTE: Success No unexpected output in /usr/share/cacti/site/log/cacti.log' 513s NOTE: Success No unexpected output in /usr/share/cacti/site/log/cacti.log 513s + exit 0 513s /tmp/autopkgtest.ysJYGH/wrapper.sh: checking for leaked background processes... 513s /tmp/autopkgtest.ysJYGH/wrapper.sh: waiting for tee/cat subprocesses... 513s /tmp/autopkgtest.ysJYGH/wrapper.sh: cleaning up... 513s /tmp/autopkgtest.ysJYGH/wrapper.sh: Exit status: 0 514s autopkgtest: DBG: testbed command exited with code 0 514s autopkgtest [11:07:45]: test check-all-pages-with-mysql: -----------------------] 514s autopkgtest: DBG: testbed executing test finished with exit status 0 514s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stdout /tmp/autopkgtest-work.hhfgazt4/out/check-all-pages-with-mysql-stdout 514s autopkgtest: DBG: got reply from testbed: ok 514s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-stderr /tmp/autopkgtest-work.hhfgazt4/out/check-all-pages-with-mysql-stderr 514s autopkgtest: DBG: got reply from testbed: ok 514s autopkgtest [11:07:45]: test check-all-pages-with-mysql: - - - - - - - - - - results - - - - - - - - - - 514s check-all-pages-with-mysql PASS 514s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-artifacts/ /tmp/autopkgtest-work.hhfgazt4/out/artifacts/ 515s autopkgtest: DBG: got reply from testbed: ok 515s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ysJYGH/check-all-pages-with-mysql-artifacts', '/tmp/autopkgtest.ysJYGH/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 515s autopkgtest: DBG: testbed command exited with code 0 515s autopkgtest [11:07:46]: test check-cli-version: preparing testbed 515s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['mysql-server', 'cacti', 'wget', 'apache2'], deps_new=['mariadb-server', 'cacti'] 515s autopkgtest: DBG: testbed reset 515s autopkgtest: DBG: sending command to testbed: revert 640s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ysJYGH 640s autopkgtest: DBG: sending command to testbed: print-execute-command 640s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.d3dki18o/runcmd 640s autopkgtest: DBG: sending command to testbed: capabilities 640s autopkgtest: DBG: got reply from testbed: ok ok root-on-testbed revert-full-system suggested-normal-user=ubuntu reboot isolation-machine revert 640s autopkgtest: DBG: testbed capabilities: ['ok', 'root-on-testbed', 'revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert', 'has_internet'] 640s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 640s autopkgtest: DBG: testbed command exited with code 0 640s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ysJYGH/wrapper.sh 640s autopkgtest: DBG: got reply from testbed: ok 640s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/wrapper.sh'], kind short, sout raw, serr pipe, env [] 640s autopkgtest: DBG: testbed command exited with code 0 640s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest [11:09:52]: testbed dpkg architecture: s390x 641s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest [11:09:52]: testbed apt version: 2.9.30 641s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest: DBG: testbed has eatmydata 641s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest [11:09:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 641s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest [11:09:52]: testbed release detected to be: plucky 641s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: adding APT source: Types: deb deb-src 642s URIs: http://ftpmaster.internal/ubuntu/ 642s Suites: plucky-proposed 642s Components: main restricted universe multiverse 642s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 642s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 642s Package: * 642s Pin: release plucky-proposed 642s Pin-Priority: 500 642s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest [11:09:53]: updating testbed package index (apt update) 642s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 642s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 643s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 643s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 643s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 643s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 643s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 643s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 643s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 643s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 643s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 643s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 643s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 643s Fetched 1700 kB in 1s (1800 kB/s) 644s Reading package lists... 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 644s Package: * 644s Pin: release plucky-proposed 644s Pin-Priority: 100 644s 644s Package: src:apache2:any 644s Pin: release plucky-proposed 644s Pin-Priority: 995 644s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:apache2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.ysJYGH/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 644s + lsb_release --codename --short 644s + RELEASE=plucky 644s + cat 644s + [ plucky != trusty ] 644s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 644s Reading package lists... 644s Building dependency tree... 644s Reading state information... 645s Calculating upgrade... 645s The following packages were automatically installed and are no longer required: 645s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 645s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 645s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 645s linux-tools-6.11.0-8-generic 645s Use 'sudo apt autoremove' to remove them. 645s The following packages will be upgraded: 645s iproute2 liblsof0 libp11-kit0 lsof 645s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 645s Need to get 1791 kB of archives. 645s After this operation, 17.4 kB of additional disk space will be used. 645s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 645s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 645s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 645s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 646s Preconfiguring packages ... 646s Fetched 1791 kB in 1s (2875 kB/s) 646s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 646s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 646s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 646s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 646s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 646s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 646s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 646s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 646s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 646s Setting up liblsof0 (4.99.4+dfsg-1) ... 646s Setting up iproute2 (6.13.0-1ubuntu1) ... 646s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 646s Setting up lsof (4.99.4+dfsg-1) ... 646s Processing triggers for man-db (2.13.0-1) ... 646s Processing triggers for libc-bin (2.40-4ubuntu1) ... 647s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 647s + /usr/lib/apt/apt-helper analyze-pattern ?true 647s + uname -r 647s + sed s/\./\\./g 647s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 647s + apt list ?obsolete 647s + tail -n+2 647s + cut -d/ -f1 647s + grep -v ^linux-.*6\.12\.0-15-generic.* 647s + true 647s + obsolete_pkgs= 647s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 647s Reading package lists... 647s Building dependency tree... 647s Reading state information... 647s The following packages will be REMOVED: 647s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 647s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 647s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 647s linux-tools-6.11.0-8-generic* 647s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 647s After this operation, 167 MB disk space will be freed. 647s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 647s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 647s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 647s Removing libpython3.12t64:s390x (3.12.9-1) ... 647s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 647s Removing libnsl2:s390x (1.3.0-3build3) ... 647s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 647s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 647s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 648s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 648s Processing triggers for libc-bin (2.40-4ubuntu1) ... 648s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 648s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 648s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 648s + grep -q trusty /etc/lsb-release 648s + [ ! -d /usr/share/doc/unattended-upgrades ] 648s + [ ! -d /usr/share/doc/lxd ] 648s + [ ! -d /usr/share/doc/lxd-client ] 648s + [ ! -d /usr/share/doc/snapd ] 648s + type iptables 648s + cat 648s + chmod 755 /etc/rc.local 648s + . /etc/rc.local 648s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 648s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 648s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 648s + uname -m 648s + [ s390x = ppc64le ] 648s + [ -d /run/systemd/system ] 648s + systemd-detect-virt --quiet --vm 648s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 648s + cat 648s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 648s + echo COMPRESS=lz4 648s autopkgtest: DBG: testbed command exited with code 0 648s autopkgtest [11:09:59]: upgrading testbed (apt dist-upgrade and autopurge) 648s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 649s Reading package lists... 649s Building dependency tree... 649s Reading state information... 649s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 649s Starting 2 pkgProblemResolver with broken count: 0 649s Done 649s Entering ResolveByKeep 649s 649s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 649s autopkgtest: DBG: testbed command exited with code 0 649s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 650s Reading package lists... 650s Building dependency tree... 650s Reading state information... 650s Starting pkgProblemResolver with broken count: 0 650s Starting 2 pkgProblemResolver with broken count: 0 650s Done 650s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 650s autopkgtest: DBG: testbed command exited with code 0 650s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.ysJYGH/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 650s autopkgtest: DBG: testbed command exited with code 1 650s autopkgtest [11:10:01]: rebooting testbed after setup commands that affected boot 650s autopkgtest: DBG: sending command to testbed: reboot 667s autopkgtest: DBG: got reply from testbed: ok 667s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 667s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 667s autopkgtest: DBG: testbed command exited with code 0 667s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot 667s autopkgtest: DBG: got reply from testbed: ok 667s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 667s autopkgtest: DBG: testbed command exited with code 0 667s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 668s autopkgtest: DBG: testbed command exited with code 0 668s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 668s autopkgtest: DBG: testbed command exited with code 0 668s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 668s autopkgtest: DBG: testbed command exited with code 0 668s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare 668s autopkgtest: DBG: got reply from testbed: ok 668s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 668s autopkgtest: DBG: testbed command exited with code 0 668s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 668s autopkgtest: DBG: testbed command exited with code 0 668s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 669s autopkgtest: DBG: testbed command exited with code 0 669s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ysJYGH/testbed-packages"], kind short, sout raw, serr pipe, env [] 669s autopkgtest: DBG: testbed command exited with code 0 669s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/testbed-packages /tmp/autopkgtest-work.hhfgazt4/out/testbed-packages 669s autopkgtest: DBG: got reply from testbed: ok 669s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 669s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 669s autopkgtest: DBG: testbed command exited with code 0 669s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot 669s autopkgtest: DBG: got reply from testbed: ok 669s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 670s autopkgtest: DBG: testbed command exited with code 0 670s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 670s autopkgtest: DBG: testbed command exited with code 0 670s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 670s autopkgtest: DBG: testbed command exited with code 0 670s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH'], kind short, sout raw, serr pipe, env [] 670s autopkgtest: DBG: testbed command exited with code 0 670s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare 670s autopkgtest: DBG: got reply from testbed: ok 670s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 670s autopkgtest: DBG: testbed command exited with code 0 670s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ysJYGH/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 671s autopkgtest: DBG: testbed command exited with code 0 671s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 671s autopkgtest: DBG: testbed command exited with code 0 671s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 671s autopkgtest: DBG: install_deps: deps_new=['mariadb-server', 'cacti'] 671s autopkgtest: DBG: install-deps: satisfying mariadb-server, cacti 671s autopkgtest: DBG: can use apt-get on testbed: True 671s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'mariadb-server, cacti'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 671s Reading package lists... 671s Building dependency tree... 671s Reading state information... 671s Starting pkgProblemResolver with broken count: 0 671s Starting 2 pkgProblemResolver with broken count: 0 671s Done 672s The following NEW packages will be installed: 672s apache2-bin cacti dbconfig-common dbconfig-mysql fontconfig 672s fontconfig-config fonts-dejavu-core fonts-dejavu-extra fonts-dejavu-mono 672s fonts-fork-awesome galera-4 javascript-common libaom3 libapache2-mod-php 672s libapache2-mod-php8.3 libapr1t64 libaprutil1-dbd-sqlite3 libaprutil1-ldap 672s libaprutil1t64 libargon2-1 libcairo2 libconfig-inifiles-perl libdatrie1 672s libdbi-perl libdbi1t64 libde265-0 libdeflate0 libfontconfig1 libfreetype6 672s libgd3 libgomp1 libgraphite2-3 libharfbuzz0b libheif-plugin-aomdec 672s libheif-plugin-libde265 libheif1 libimagequant0 libjbig0 libjpeg-turbo8 672s libjpeg8 libjs-chart.js libjs-d3-format libjs-jquery 672s libjs-jquery-colorpicker libjs-jquery-cookie libjs-jquery-hotkeys 672s libjs-jquery-jstree libjs-jquery-metadata libjs-jquery-tablesorter 672s libjs-jquery-timepicker libjs-jquery-ui libjs-jquery-ui-theme-smoothness 672s libjs-jquery-ui-theme-south-street libjs-jquery-ui-theme-ui-darkness 672s libjs-jquery-ui-touch-punch liblua5.4-0 libmariadb3 libpango-1.0-0 672s libpangocairo-1.0-0 libpangoft2-1.0-0 libphp-phpmailer libpixman-1-0 672s libraqm0 librrd8t64 libsharpyuv0 libsnmp-base libsnmp40t64 libsodium23 672s libthai-data libthai0 libtiff6 liburing2 libwebp7 libxcb-render0 libxcb-shm0 672s libxpm4 libxrender1 libxslt1.1 mariadb-client mariadb-client-core 672s mariadb-common mariadb-server mariadb-server-core mysql-common 672s node-commander node-d3 node-d3-array node-d3-axis node-d3-brush 672s node-d3-chord node-d3-collection node-d3-color node-d3-contour 672s node-d3-dispatch node-d3-drag node-d3-dsv node-d3-ease node-d3-fetch 672s node-d3-force node-d3-format node-d3-geo node-d3-hierarchy 672s node-d3-interpolate node-d3-path node-d3-polygon node-d3-quadtree 672s node-d3-queue node-d3-random node-d3-scale node-d3-scale-chromatic 672s node-d3-selection node-d3-shape node-d3-time node-d3-time-format 672s node-d3-timer node-d3-transition node-d3-voronoi node-d3-zoom node-dompurify 672s node-iconv-lite node-rw node-safe-buffer node-ua-parser-js php-common php-gd 672s php-gmp php-ldap php-mbstring php-mysql php-phpmyadmin-motranslator 672s php-phpseclib php-psr-cache php-psr-container php-psr-log php-snmp 672s php-symfony-cache php-symfony-cache-contracts 672s php-symfony-deprecation-contracts php-symfony-expression-language 672s php-symfony-service-contracts php-symfony-var-exporter php-twig php-xml 672s php8.3-cli php8.3-common php8.3-gd php8.3-gmp php8.3-ldap php8.3-mbstring 672s php8.3-mysql php8.3-opcache php8.3-readline php8.3-snmp php8.3-xml rrdtool 672s snmp socat 672s 0 upgraded, 157 newly installed, 0 to remove and 0 not upgraded. 672s Need to get 64.6 MB of archives. 672s After this operation, 339 MB of additional disk space will be used. 672s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x galera-4 s390x 26.4.21-1 [753 kB] 672s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 672s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-common all 1:11.4.4-3 [28.6 kB] 672s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 672s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-inifiles-perl all 3.000003-3 [38.4 kB] 672s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libmariadb3 s390x 1:11.4.4-3 [203 kB] 672s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client-core s390x 1:11.4.4-3 [1056 kB] 672s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client s390x 1:11.4.4-3 [2410 kB] 673s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 673s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server-core s390x 1:11.4.4-3 [8555 kB] 673s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x socat s390x 1.8.0.2-1 [385 kB] 673s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server s390x 1:11.4.4-3 [3311 kB] 673s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libapr1t64 s390x 1.7.5-1 [114 kB] 673s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1t64 s390x 1.6.3-3ubuntu2 [98.4 kB] 673s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-dbd-sqlite3 s390x 1.6.3-3ubuntu2 [11.7 kB] 673s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-ldap s390x 1.6.3-3ubuntu2 [9064 B] 673s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 673s Get:18 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x apache2-bin s390x 2.4.63-1ubuntu1 [1414 kB] 674s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-common all 2.0.24 [596 kB] 674s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-mysql all 2.0.24 [938 B] 674s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 674s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 674s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 674s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 674s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 674s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 674s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-extra all 2.37-8 [1947 kB] 674s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-fork-awesome all 1.2.0+ds1-1 [603 kB] 674s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 674s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 674s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x php-common all 2:93ubuntu2 [13.9 kB] 674s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-common s390x 8.3.11-0ubuntu4 [745 kB] 674s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-opcache s390x 8.3.11-0ubuntu4 [78.0 kB] 674s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-readline s390x 8.3.11-0ubuntu4 [13.9 kB] 674s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libargon2-1 s390x 0~20190702+dfsg-4build1 [54.1 kB] 674s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 674s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-cli s390x 8.3.11-0ubuntu4 [1940 kB] 674s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libapache2-mod-php8.3 s390x 8.3.11-0ubuntu4 [1871 kB] 674s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libapache2-mod-php all 2:8.3+93ubuntu2 [4224 B] 674s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 674s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 674s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 674s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 674s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 674s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 674s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi1t64 s390x 0.9.0-6.1build1 [27.0 kB] 674s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 674s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 674s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 674s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 674s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 674s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 674s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 674s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 674s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 674s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 674s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 674s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 674s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 674s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 674s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 674s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 674s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 674s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 674s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-chart.js all 3.9.1+~cs3.1.2-3 [199 kB] 674s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 674s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 674s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-colorpicker all 1.2.20-4 [194 kB] 674s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-cookie all 12-4 [6484 B] 674s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-jstree all 3.3.16+dfsg1-1 [105 kB] 674s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-metadata all 12-4 [6582 B] 674s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-tablesorter all 1:2.31.3+dfsg1-4 [192 kB] 674s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-timepicker all 1.6.3-6 [50.2 kB] 674s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-smoothness all 1.12.1+dfsg-1.1 [23.7 kB] 674s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-south-street all 1.12.1+dfsg-1.1 [29.4 kB] 674s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-theme-ui-darkness all 1.12.1+dfsg-1.1 [27.6 kB] 674s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 674s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 674s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 674s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 674s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 674s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x libphp-phpmailer all 6.9.1-1 [87.9 kB] 674s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x librrd8t64 s390x 1.7.2-4.2ubuntu1 [181 kB] 674s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp-base all 5.9.4+dfsg-1.1ubuntu6 [206 kB] 674s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp40t64 s390x 5.9.4+dfsg-1.1ubuntu6 [1055 kB] 674s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 674s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-array all 3.2.0+~cs5.0.6-2 [45.1 kB] 674s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-axis all 1.0.12+~1.0.16-1 [14.1 kB] 674s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-dispatch all 1.0.6+~1.0.9-1 [9774 B] 674s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-selection all 1.4.1+~1.4.3-1 [42.8 kB] 674s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-drag all 1.2.5+~1.2.5-1 [19.1 kB] 674s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-color all 1.4.1+~1.4.2-1 [19.9 kB] 674s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-interpolate all 1.4.0+~1.4.2-1 [24.0 kB] 674s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-ease all 1.0.7+~1.0.11-1 [12.5 kB] 675s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-timer all 1.0.10+~1.0.10-1 [10.6 kB] 675s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-transition all 1.3.2+~1.3.2-1 [28.7 kB] 675s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-brush all 1.1.6+~1.1.5-1 [181 kB] 675s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-path all 1.0.9+~1.0.9-1 [10.5 kB] 675s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-chord all 1.0.6+~1.0.11-1 [14.2 kB] 675s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-collection all 1.0.7+~1.0.10-1 [17.2 kB] 675s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-contour all 1.3.2+~1.3.3-1 [17.7 kB] 675s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.8 kB] 675s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x node-iconv-lite all 0.6.3-3 [158 kB] 675s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-queue all 3.0.7-13 [10.2 kB] 675s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x node-rw all 1.3.3-5 [7570 B] 675s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x node-commander all 9.4.1-1 [50.6 kB] 675s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-dsv all 1.2.0+~1.2.3-1 [17.7 kB] 675s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-fetch all 1.2.0+~1.2.2-1 [10.1 kB] 675s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-quadtree all 1.0.7+~1.0.9-1 [16.6 kB] 675s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-force all 2.1.1+~2.1.4-1 [30.9 kB] 675s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-d3-format all 1:1.4.5+~1.4.2-2 [18.2 kB] 675s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-format all 1:1.4.5+~1.4.2-2 [11.1 kB] 675s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-geo all 1.12.1+~1.12.4-1 [67.3 kB] 675s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-hierarchy all 1.1.9+~1.1.8-1 [35.1 kB] 675s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-polygon all 1.0.6+~1.0.8-1 [8744 B] 675s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-random all 1.1.2+~1.1.3-1 [9140 B] 675s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-time all 1.1.0+~1.1.1-1 [19.2 kB] 675s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-time-format all 2.3.0+~2.3.1-1 [23.8 kB] 675s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-scale all 2.2.2+~2.2.6-1 [43.4 kB] 675s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-scale-chromatic all 1.5.0+~1.5.1-1 [23.5 kB] 675s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-shape all 1.3.7+~1.3.8-1 [56.0 kB] 676s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-voronoi all 1.1.4+~1.1.9-1 [20.5 kB] 676s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3-zoom all 1.8.3+~1.8.4-1 [27.2 kB] 676s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x node-d3 all 5.16.0+~cs5.28.10-2 [197 kB] 676s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x node-dompurify all 3.1.7+dfsg+~3.0.5-1 [73.3 kB] 676s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x node-ua-parser-js all 0.8.1+ds+~0.7.36-3 [30.1 kB] 676s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-gd s390x 8.3.11-0ubuntu4 [30.6 kB] 676s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x php-gd all 2:8.3+93ubuntu2 [1830 B] 676s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-gmp s390x 8.3.11-0ubuntu4 [22.9 kB] 676s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x php-gmp all 2:8.3+93ubuntu2 [1834 B] 676s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-ldap s390x 8.3.11-0ubuntu4 [34.1 kB] 676s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x php-ldap all 2:8.3+93ubuntu2 [1836 B] 676s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mbstring s390x 8.3.11-0ubuntu4 [523 kB] 676s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x php-mbstring all 2:8.3+93ubuntu2 [1848 B] 676s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mysql s390x 8.3.11-0ubuntu4 [133 kB] 676s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x php-mysql all 2:8.3+93ubuntu2 [1838 B] 676s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-deprecation-contracts all 3.5.2-5 [6146 B] 676s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-cache all 3.0.0-4 [5834 B] 676s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-log all 3.0.2-2 [6682 B] 676s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-cache-contracts all 3.5.2-5 [8636 B] 676s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x php-psr-container all 2.0.2-1 [3878 B] 676s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-service-contracts all 3.5.2-5 [7650 B] 676s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-var-exporter all 6.4.10+dfsg-1ubuntu1 [35.3 kB] 676s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-cache all 6.4.10+dfsg-1ubuntu1 [69.8 kB] 676s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x php-symfony-expression-language all 6.4.10+dfsg-1ubuntu1 [23.3 kB] 676s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phpmyadmin-motranslator all 5.3.1-1 [15.1 kB] 676s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phpseclib all 2.0.48-2 [205 kB] 676s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-snmp s390x 8.3.11-0ubuntu4 [23.7 kB] 676s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x php-snmp all 2:8.3+93ubuntu2 [1840 B] 676s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x php-twig all 3.8.0-3 [86.8 kB] 677s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-xml s390x 8.3.11-0ubuntu4 [129 kB] 677s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x php-xml all 2:8.3+93ubuntu2 [1856 B] 677s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x snmp s390x 5.9.4+dfsg-1.1ubuntu6 [186 kB] 677s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-hotkeys all 0.2.0-1 [13.3 kB] 677s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui-touch-punch all 0.0~git20141218.2.4bc0091+dfsg1-4.1 [4744 B] 677s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x rrdtool s390x 1.7.2-4.2ubuntu1 [362 kB] 677s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x cacti all 1.2.28+ds1-3ubuntu1 [23.3 MB] 680s Preconfiguring packages ... 680s Fetched 64.6 MB in 8s (7982 kB/s) 680s Selecting previously unselected package galera-4. 680s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 680s Preparing to unpack .../00-galera-4_26.4.21-1_s390x.deb ... 680s Unpacking galera-4 (26.4.21-1) ... 680s Selecting previously unselected package mysql-common. 680s Preparing to unpack .../01-mysql-common_5.8+1.1.1_all.deb ... 680s Unpacking mysql-common (5.8+1.1.1) ... 680s Selecting previously unselected package mariadb-common. 680s Preparing to unpack .../02-mariadb-common_1%3a11.4.4-3_all.deb ... 680s Unpacking mariadb-common (1:11.4.4-3) ... 680s Selecting previously unselected package libdbi-perl:s390x. 680s Preparing to unpack .../03-libdbi-perl_1.647-1_s390x.deb ... 680s Unpacking libdbi-perl:s390x (1.647-1) ... 680s Selecting previously unselected package libconfig-inifiles-perl. 680s Preparing to unpack .../04-libconfig-inifiles-perl_3.000003-3_all.deb ... 680s Unpacking libconfig-inifiles-perl (3.000003-3) ... 680s Selecting previously unselected package libmariadb3:s390x. 680s Preparing to unpack .../05-libmariadb3_1%3a11.4.4-3_s390x.deb ... 680s Unpacking libmariadb3:s390x (1:11.4.4-3) ... 680s Selecting previously unselected package mariadb-client-core. 680s Preparing to unpack .../06-mariadb-client-core_1%3a11.4.4-3_s390x.deb ... 680s Unpacking mariadb-client-core (1:11.4.4-3) ... 680s Selecting previously unselected package mariadb-client. 680s Preparing to unpack .../07-mariadb-client_1%3a11.4.4-3_s390x.deb ... 680s Unpacking mariadb-client (1:11.4.4-3) ... 681s Selecting previously unselected package liburing2:s390x. 681s Preparing to unpack .../08-liburing2_2.9-1_s390x.deb ... 681s Unpacking liburing2:s390x (2.9-1) ... 681s Selecting previously unselected package mariadb-server-core. 681s Preparing to unpack .../09-mariadb-server-core_1%3a11.4.4-3_s390x.deb ... 681s Unpacking mariadb-server-core (1:11.4.4-3) ... 681s Selecting previously unselected package socat. 681s Preparing to unpack .../10-socat_1.8.0.2-1_s390x.deb ... 681s Unpacking socat (1.8.0.2-1) ... 681s Setting up mysql-common (5.8+1.1.1) ... 681s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 681s Setting up mariadb-common (1:11.4.4-3) ... 681s update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 681s Selecting previously unselected package mariadb-server. 681s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 56375 files and directories currently installed.) 681s Preparing to unpack .../000-mariadb-server_1%3a11.4.4-3_s390x.deb ... 681s Unpacking mariadb-server (1:11.4.4-3) ... 681s Selecting previously unselected package libapr1t64:s390x. 681s Preparing to unpack .../001-libapr1t64_1.7.5-1_s390x.deb ... 681s Unpacking libapr1t64:s390x (1.7.5-1) ... 681s Selecting previously unselected package libaprutil1t64:s390x. 681s Preparing to unpack .../002-libaprutil1t64_1.6.3-3ubuntu2_s390x.deb ... 681s Unpacking libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 681s Selecting previously unselected package libaprutil1-dbd-sqlite3:s390x. 681s Preparing to unpack .../003-libaprutil1-dbd-sqlite3_1.6.3-3ubuntu2_s390x.deb ... 681s Unpacking libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 681s Selecting previously unselected package libaprutil1-ldap:s390x. 681s Preparing to unpack .../004-libaprutil1-ldap_1.6.3-3ubuntu2_s390x.deb ... 681s Unpacking libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 681s Selecting previously unselected package liblua5.4-0:s390x. 681s Preparing to unpack .../005-liblua5.4-0_5.4.7-1_s390x.deb ... 681s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 681s Selecting previously unselected package apache2-bin. 681s Preparing to unpack .../006-apache2-bin_2.4.63-1ubuntu1_s390x.deb ... 681s Unpacking apache2-bin (2.4.63-1ubuntu1) ... 681s Selecting previously unselected package dbconfig-common. 681s Preparing to unpack .../007-dbconfig-common_2.0.24_all.deb ... 681s Unpacking dbconfig-common (2.0.24) ... 681s Selecting previously unselected package dbconfig-mysql. 681s Preparing to unpack .../008-dbconfig-mysql_2.0.24_all.deb ... 681s Unpacking dbconfig-mysql (2.0.24) ... 681s Selecting previously unselected package libfreetype6:s390x. 681s Preparing to unpack .../009-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 681s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 681s Selecting previously unselected package fonts-dejavu-mono. 681s Preparing to unpack .../010-fonts-dejavu-mono_2.37-8_all.deb ... 681s Unpacking fonts-dejavu-mono (2.37-8) ... 681s Selecting previously unselected package fonts-dejavu-core. 681s Preparing to unpack .../011-fonts-dejavu-core_2.37-8_all.deb ... 681s Unpacking fonts-dejavu-core (2.37-8) ... 681s Selecting previously unselected package fontconfig-config. 681s Preparing to unpack .../012-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 681s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 681s Selecting previously unselected package libfontconfig1:s390x. 681s Preparing to unpack .../013-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 681s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 681s Selecting previously unselected package fontconfig. 682s Preparing to unpack .../014-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 682s Unpacking fontconfig (2.15.0-2ubuntu1) ... 682s Selecting previously unselected package fonts-dejavu-extra. 682s Preparing to unpack .../015-fonts-dejavu-extra_2.37-8_all.deb ... 682s Unpacking fonts-dejavu-extra (2.37-8) ... 682s Selecting previously unselected package fonts-fork-awesome. 682s Preparing to unpack .../016-fonts-fork-awesome_1.2.0+ds1-1_all.deb ... 682s Unpacking fonts-fork-awesome (1.2.0+ds1-1) ... 682s Selecting previously unselected package javascript-common. 682s Preparing to unpack .../017-javascript-common_11+nmu1_all.deb ... 682s Unpacking javascript-common (11+nmu1) ... 682s Selecting previously unselected package libaom3:s390x. 682s Preparing to unpack .../018-libaom3_3.12.0-1_s390x.deb ... 682s Unpacking libaom3:s390x (3.12.0-1) ... 682s Selecting previously unselected package php-common. 682s Preparing to unpack .../019-php-common_2%3a93ubuntu2_all.deb ... 682s Unpacking php-common (2:93ubuntu2) ... 682s Selecting previously unselected package php8.3-common. 682s Preparing to unpack .../020-php8.3-common_8.3.11-0ubuntu4_s390x.deb ... 682s Unpacking php8.3-common (8.3.11-0ubuntu4) ... 682s Selecting previously unselected package php8.3-opcache. 682s Preparing to unpack .../021-php8.3-opcache_8.3.11-0ubuntu4_s390x.deb ... 682s Unpacking php8.3-opcache (8.3.11-0ubuntu4) ... 682s Selecting previously unselected package php8.3-readline. 682s Preparing to unpack .../022-php8.3-readline_8.3.11-0ubuntu4_s390x.deb ... 682s Unpacking php8.3-readline (8.3.11-0ubuntu4) ... 682s Selecting previously unselected package libargon2-1:s390x. 682s Preparing to unpack .../023-libargon2-1_0~20190702+dfsg-4build1_s390x.deb ... 682s Unpacking libargon2-1:s390x (0~20190702+dfsg-4build1) ... 682s Selecting previously unselected package libsodium23:s390x. 682s Preparing to unpack .../024-libsodium23_1.0.18-1build3_s390x.deb ... 682s Unpacking libsodium23:s390x (1.0.18-1build3) ... 682s Selecting previously unselected package php8.3-cli. 682s Preparing to unpack .../025-php8.3-cli_8.3.11-0ubuntu4_s390x.deb ... 682s Unpacking php8.3-cli (8.3.11-0ubuntu4) ... 682s Selecting previously unselected package libapache2-mod-php8.3. 682s Preparing to unpack .../026-libapache2-mod-php8.3_8.3.11-0ubuntu4_s390x.deb ... 682s Unpacking libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 682s Selecting previously unselected package libapache2-mod-php. 682s Preparing to unpack .../027-libapache2-mod-php_2%3a8.3+93ubuntu2_all.deb ... 682s Unpacking libapache2-mod-php (2:8.3+93ubuntu2) ... 682s Selecting previously unselected package libpixman-1-0:s390x. 682s Preparing to unpack .../028-libpixman-1-0_0.44.0-3_s390x.deb ... 682s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 682s Selecting previously unselected package libxcb-render0:s390x. 682s Preparing to unpack .../029-libxcb-render0_1.17.0-2_s390x.deb ... 682s Unpacking libxcb-render0:s390x (1.17.0-2) ... 682s Selecting previously unselected package libxcb-shm0:s390x. 682s Preparing to unpack .../030-libxcb-shm0_1.17.0-2_s390x.deb ... 682s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 682s Selecting previously unselected package libxrender1:s390x. 682s Preparing to unpack .../031-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 682s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 682s Selecting previously unselected package libcairo2:s390x. 682s Preparing to unpack .../032-libcairo2_1.18.2-2_s390x.deb ... 682s Unpacking libcairo2:s390x (1.18.2-2) ... 682s Selecting previously unselected package libdatrie1:s390x. 682s Preparing to unpack .../033-libdatrie1_0.2.13-3build1_s390x.deb ... 682s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 682s Selecting previously unselected package libdbi1t64:s390x. 682s Preparing to unpack .../034-libdbi1t64_0.9.0-6.1build1_s390x.deb ... 682s Unpacking libdbi1t64:s390x (0.9.0-6.1build1) ... 682s Selecting previously unselected package libde265-0:s390x. 682s Preparing to unpack .../035-libde265-0_1.0.15-1build4_s390x.deb ... 682s Unpacking libde265-0:s390x (1.0.15-1build4) ... 682s Selecting previously unselected package libdeflate0:s390x. 682s Preparing to unpack .../036-libdeflate0_1.23-1_s390x.deb ... 682s Unpacking libdeflate0:s390x (1.23-1) ... 682s Selecting previously unselected package libsharpyuv0:s390x. 682s Preparing to unpack .../037-libsharpyuv0_1.5.0-0.1_s390x.deb ... 682s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 682s Selecting previously unselected package libheif-plugin-aomdec:s390x. 682s Preparing to unpack .../038-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 682s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 682s Selecting previously unselected package libheif-plugin-libde265:s390x. 682s Preparing to unpack .../039-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 682s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 682s Selecting previously unselected package libheif1:s390x. 682s Preparing to unpack .../040-libheif1_1.19.5-1build1_s390x.deb ... 682s Unpacking libheif1:s390x (1.19.5-1build1) ... 682s Selecting previously unselected package libgomp1:s390x. 682s Preparing to unpack .../041-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 682s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 682s Selecting previously unselected package libimagequant0:s390x. 682s Preparing to unpack .../042-libimagequant0_2.18.0-1build1_s390x.deb ... 682s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 682s Selecting previously unselected package libjpeg-turbo8:s390x. 682s Preparing to unpack .../043-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 682s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 682s Selecting previously unselected package libjpeg8:s390x. 682s Preparing to unpack .../044-libjpeg8_8c-2ubuntu11_s390x.deb ... 682s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 682s Selecting previously unselected package libgraphite2-3:s390x. 682s Preparing to unpack .../045-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 682s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 682s Selecting previously unselected package libharfbuzz0b:s390x. 682s Preparing to unpack .../046-libharfbuzz0b_10.2.0-1_s390x.deb ... 682s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 682s Selecting previously unselected package libraqm0:s390x. 682s Preparing to unpack .../047-libraqm0_0.10.2-1_s390x.deb ... 682s Unpacking libraqm0:s390x (0.10.2-1) ... 682s Selecting previously unselected package libjbig0:s390x. 682s Preparing to unpack .../048-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 682s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 682s Selecting previously unselected package libwebp7:s390x. 682s Preparing to unpack .../049-libwebp7_1.5.0-0.1_s390x.deb ... 682s Unpacking libwebp7:s390x (1.5.0-0.1) ... 682s Selecting previously unselected package libtiff6:s390x. 682s Preparing to unpack .../050-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 682s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 682s Selecting previously unselected package libxpm4:s390x. 682s Preparing to unpack .../051-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 682s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 682s Selecting previously unselected package libgd3:s390x. 682s Preparing to unpack .../052-libgd3_2.3.3-12ubuntu3_s390x.deb ... 682s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 682s Selecting previously unselected package libjs-chart.js. 682s Preparing to unpack .../053-libjs-chart.js_3.9.1+~cs3.1.2-3_all.deb ... 682s Unpacking libjs-chart.js (3.9.1+~cs3.1.2-3) ... 682s Selecting previously unselected package libjs-jquery. 682s Preparing to unpack .../054-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 682s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 682s Selecting previously unselected package libjs-jquery-ui. 682s Preparing to unpack .../055-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 682s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 682s Selecting previously unselected package libjs-jquery-colorpicker. 682s Preparing to unpack .../056-libjs-jquery-colorpicker_1.2.20-4_all.deb ... 682s Unpacking libjs-jquery-colorpicker (1.2.20-4) ... 682s Selecting previously unselected package libjs-jquery-cookie. 682s Preparing to unpack .../057-libjs-jquery-cookie_12-4_all.deb ... 682s Unpacking libjs-jquery-cookie (12-4) ... 682s Selecting previously unselected package libjs-jquery-jstree. 682s Preparing to unpack .../058-libjs-jquery-jstree_3.3.16+dfsg1-1_all.deb ... 682s Unpacking libjs-jquery-jstree (3.3.16+dfsg1-1) ... 682s Selecting previously unselected package libjs-jquery-metadata. 682s Preparing to unpack .../059-libjs-jquery-metadata_12-4_all.deb ... 682s Unpacking libjs-jquery-metadata (12-4) ... 682s Selecting previously unselected package libjs-jquery-tablesorter. 682s Preparing to unpack .../060-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-4_all.deb ... 682s Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 682s Selecting previously unselected package libjs-jquery-timepicker. 682s Preparing to unpack .../061-libjs-jquery-timepicker_1.6.3-6_all.deb ... 682s Unpacking libjs-jquery-timepicker (1.6.3-6) ... 682s Selecting previously unselected package libjs-jquery-ui-theme-smoothness. 682s Preparing to unpack .../062-libjs-jquery-ui-theme-smoothness_1.12.1+dfsg-1.1_all.deb ... 682s Unpacking libjs-jquery-ui-theme-smoothness (1.12.1+dfsg-1.1) ... 682s Selecting previously unselected package libjs-jquery-ui-theme-south-street. 682s Preparing to unpack .../063-libjs-jquery-ui-theme-south-street_1.12.1+dfsg-1.1_all.deb ... 682s Unpacking libjs-jquery-ui-theme-south-street (1.12.1+dfsg-1.1) ... 682s Selecting previously unselected package libjs-jquery-ui-theme-ui-darkness. 682s Preparing to unpack .../064-libjs-jquery-ui-theme-ui-darkness_1.12.1+dfsg-1.1_all.deb ... 682s Unpacking libjs-jquery-ui-theme-ui-darkness (1.12.1+dfsg-1.1) ... 682s Selecting previously unselected package libthai-data. 682s Preparing to unpack .../065-libthai-data_0.1.29-2build1_all.deb ... 682s Unpacking libthai-data (0.1.29-2build1) ... 682s Selecting previously unselected package libthai0:s390x. 682s Preparing to unpack .../066-libthai0_0.1.29-2build1_s390x.deb ... 682s Unpacking libthai0:s390x (0.1.29-2build1) ... 682s Selecting previously unselected package libpango-1.0-0:s390x. 682s Preparing to unpack .../067-libpango-1.0-0_1.56.1-1_s390x.deb ... 682s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 682s Selecting previously unselected package libpangoft2-1.0-0:s390x. 682s Preparing to unpack .../068-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 682s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 682s Selecting previously unselected package libpangocairo-1.0-0:s390x. 682s Preparing to unpack .../069-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 682s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 682s Selecting previously unselected package libphp-phpmailer. 682s Preparing to unpack .../070-libphp-phpmailer_6.9.1-1_all.deb ... 682s Unpacking libphp-phpmailer (6.9.1-1) ... 682s Selecting previously unselected package librrd8t64:s390x. 682s Preparing to unpack .../071-librrd8t64_1.7.2-4.2ubuntu1_s390x.deb ... 682s Unpacking librrd8t64:s390x (1.7.2-4.2ubuntu1) ... 682s Selecting previously unselected package libsnmp-base. 682s Preparing to unpack .../072-libsnmp-base_5.9.4+dfsg-1.1ubuntu6_all.deb ... 682s Unpacking libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 682s Selecting previously unselected package libsnmp40t64:s390x. 682s Preparing to unpack .../073-libsnmp40t64_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 682s Unpacking libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 682s Selecting previously unselected package libxslt1.1:s390x. 682s Preparing to unpack .../074-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 682s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 682s Selecting previously unselected package node-d3-array. 682s Preparing to unpack .../075-node-d3-array_3.2.0+~cs5.0.6-2_all.deb ... 682s Unpacking node-d3-array (3.2.0+~cs5.0.6-2) ... 682s Selecting previously unselected package node-d3-axis. 682s Preparing to unpack .../076-node-d3-axis_1.0.12+~1.0.16-1_all.deb ... 682s Unpacking node-d3-axis (1.0.12+~1.0.16-1) ... 682s Selecting previously unselected package node-d3-dispatch. 682s Preparing to unpack .../077-node-d3-dispatch_1.0.6+~1.0.9-1_all.deb ... 682s Unpacking node-d3-dispatch (1.0.6+~1.0.9-1) ... 682s Selecting previously unselected package node-d3-selection. 682s Preparing to unpack .../078-node-d3-selection_1.4.1+~1.4.3-1_all.deb ... 682s Unpacking node-d3-selection (1.4.1+~1.4.3-1) ... 682s Selecting previously unselected package node-d3-drag. 682s Preparing to unpack .../079-node-d3-drag_1.2.5+~1.2.5-1_all.deb ... 682s Unpacking node-d3-drag (1.2.5+~1.2.5-1) ... 682s Selecting previously unselected package node-d3-color. 682s Preparing to unpack .../080-node-d3-color_1.4.1+~1.4.2-1_all.deb ... 682s Unpacking node-d3-color (1.4.1+~1.4.2-1) ... 682s Selecting previously unselected package node-d3-interpolate. 682s Preparing to unpack .../081-node-d3-interpolate_1.4.0+~1.4.2-1_all.deb ... 682s Unpacking node-d3-interpolate (1.4.0+~1.4.2-1) ... 682s Selecting previously unselected package node-d3-ease. 682s Preparing to unpack .../082-node-d3-ease_1.0.7+~1.0.11-1_all.deb ... 682s Unpacking node-d3-ease (1.0.7+~1.0.11-1) ... 682s Selecting previously unselected package node-d3-timer. 682s Preparing to unpack .../083-node-d3-timer_1.0.10+~1.0.10-1_all.deb ... 682s Unpacking node-d3-timer (1.0.10+~1.0.10-1) ... 682s Selecting previously unselected package node-d3-transition. 682s Preparing to unpack .../084-node-d3-transition_1.3.2+~1.3.2-1_all.deb ... 682s Unpacking node-d3-transition (1.3.2+~1.3.2-1) ... 682s Selecting previously unselected package node-d3-brush. 682s Preparing to unpack .../085-node-d3-brush_1.1.6+~1.1.5-1_all.deb ... 682s Unpacking node-d3-brush (1.1.6+~1.1.5-1) ... 682s Selecting previously unselected package node-d3-path. 682s Preparing to unpack .../086-node-d3-path_1.0.9+~1.0.9-1_all.deb ... 682s Unpacking node-d3-path (1.0.9+~1.0.9-1) ... 682s Selecting previously unselected package node-d3-chord. 682s Preparing to unpack .../087-node-d3-chord_1.0.6+~1.0.11-1_all.deb ... 682s Unpacking node-d3-chord (1.0.6+~1.0.11-1) ... 683s Selecting previously unselected package node-d3-collection. 683s Preparing to unpack .../088-node-d3-collection_1.0.7+~1.0.10-1_all.deb ... 683s Unpacking node-d3-collection (1.0.7+~1.0.10-1) ... 683s Selecting previously unselected package node-d3-contour. 683s Preparing to unpack .../089-node-d3-contour_1.3.2+~1.3.3-1_all.deb ... 683s Unpacking node-d3-contour (1.3.2+~1.3.3-1) ... 683s Selecting previously unselected package node-safe-buffer. 683s Preparing to unpack .../090-node-safe-buffer_5.2.1+~cs2.1.2-3_all.deb ... 683s Unpacking node-safe-buffer (5.2.1+~cs2.1.2-3) ... 683s Selecting previously unselected package node-iconv-lite. 683s Preparing to unpack .../091-node-iconv-lite_0.6.3-3_all.deb ... 683s Unpacking node-iconv-lite (0.6.3-3) ... 683s Selecting previously unselected package node-d3-queue. 683s Preparing to unpack .../092-node-d3-queue_3.0.7-13_all.deb ... 683s Unpacking node-d3-queue (3.0.7-13) ... 683s Selecting previously unselected package node-rw. 683s Preparing to unpack .../093-node-rw_1.3.3-5_all.deb ... 683s Unpacking node-rw (1.3.3-5) ... 683s Selecting previously unselected package node-commander. 683s Preparing to unpack .../094-node-commander_9.4.1-1_all.deb ... 683s Unpacking node-commander (9.4.1-1) ... 683s Selecting previously unselected package node-d3-dsv. 683s Preparing to unpack .../095-node-d3-dsv_1.2.0+~1.2.3-1_all.deb ... 683s Unpacking node-d3-dsv (1.2.0+~1.2.3-1) ... 683s Selecting previously unselected package node-d3-fetch. 683s Preparing to unpack .../096-node-d3-fetch_1.2.0+~1.2.2-1_all.deb ... 683s Unpacking node-d3-fetch (1.2.0+~1.2.2-1) ... 683s Selecting previously unselected package node-d3-quadtree. 683s Preparing to unpack .../097-node-d3-quadtree_1.0.7+~1.0.9-1_all.deb ... 683s Unpacking node-d3-quadtree (1.0.7+~1.0.9-1) ... 683s Selecting previously unselected package node-d3-force. 683s Preparing to unpack .../098-node-d3-force_2.1.1+~2.1.4-1_all.deb ... 683s Unpacking node-d3-force (2.1.1+~2.1.4-1) ... 683s Selecting previously unselected package libjs-d3-format. 683s Preparing to unpack .../099-libjs-d3-format_1%3a1.4.5+~1.4.2-2_all.deb ... 683s Unpacking libjs-d3-format (1:1.4.5+~1.4.2-2) ... 683s Selecting previously unselected package node-d3-format. 683s Preparing to unpack .../100-node-d3-format_1%3a1.4.5+~1.4.2-2_all.deb ... 683s Unpacking node-d3-format (1:1.4.5+~1.4.2-2) ... 683s Selecting previously unselected package node-d3-geo. 683s Preparing to unpack .../101-node-d3-geo_1.12.1+~1.12.4-1_all.deb ... 683s Unpacking node-d3-geo (1.12.1+~1.12.4-1) ... 683s Selecting previously unselected package node-d3-hierarchy. 683s Preparing to unpack .../102-node-d3-hierarchy_1.1.9+~1.1.8-1_all.deb ... 683s Unpacking node-d3-hierarchy (1.1.9+~1.1.8-1) ... 683s Selecting previously unselected package node-d3-polygon. 683s Preparing to unpack .../103-node-d3-polygon_1.0.6+~1.0.8-1_all.deb ... 683s Unpacking node-d3-polygon (1.0.6+~1.0.8-1) ... 683s Selecting previously unselected package node-d3-random. 683s Preparing to unpack .../104-node-d3-random_1.1.2+~1.1.3-1_all.deb ... 683s Unpacking node-d3-random (1.1.2+~1.1.3-1) ... 683s Selecting previously unselected package node-d3-time. 683s Preparing to unpack .../105-node-d3-time_1.1.0+~1.1.1-1_all.deb ... 683s Unpacking node-d3-time (1.1.0+~1.1.1-1) ... 683s Selecting previously unselected package node-d3-time-format. 683s Preparing to unpack .../106-node-d3-time-format_2.3.0+~2.3.1-1_all.deb ... 683s Unpacking node-d3-time-format (2.3.0+~2.3.1-1) ... 683s Selecting previously unselected package node-d3-scale. 683s Preparing to unpack .../107-node-d3-scale_2.2.2+~2.2.6-1_all.deb ... 683s Unpacking node-d3-scale (2.2.2+~2.2.6-1) ... 683s Selecting previously unselected package node-d3-scale-chromatic. 683s Preparing to unpack .../108-node-d3-scale-chromatic_1.5.0+~1.5.1-1_all.deb ... 683s Unpacking node-d3-scale-chromatic (1.5.0+~1.5.1-1) ... 683s Selecting previously unselected package node-d3-shape. 683s Preparing to unpack .../109-node-d3-shape_1.3.7+~1.3.8-1_all.deb ... 683s Unpacking node-d3-shape (1.3.7+~1.3.8-1) ... 683s Selecting previously unselected package node-d3-voronoi. 683s Preparing to unpack .../110-node-d3-voronoi_1.1.4+~1.1.9-1_all.deb ... 683s Unpacking node-d3-voronoi (1.1.4+~1.1.9-1) ... 683s Selecting previously unselected package node-d3-zoom. 683s Preparing to unpack .../111-node-d3-zoom_1.8.3+~1.8.4-1_all.deb ... 683s Unpacking node-d3-zoom (1.8.3+~1.8.4-1) ... 683s Selecting previously unselected package node-d3. 683s Preparing to unpack .../112-node-d3_5.16.0+~cs5.28.10-2_all.deb ... 683s Unpacking node-d3 (5.16.0+~cs5.28.10-2) ... 683s Selecting previously unselected package node-dompurify. 683s Preparing to unpack .../113-node-dompurify_3.1.7+dfsg+~3.0.5-1_all.deb ... 683s Unpacking node-dompurify (3.1.7+dfsg+~3.0.5-1) ... 683s Selecting previously unselected package node-ua-parser-js. 683s Preparing to unpack .../114-node-ua-parser-js_0.8.1+ds+~0.7.36-3_all.deb ... 683s Unpacking node-ua-parser-js (0.8.1+ds+~0.7.36-3) ... 683s Selecting previously unselected package php8.3-gd. 683s Preparing to unpack .../115-php8.3-gd_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-gd (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-gd. 683s Preparing to unpack .../116-php-gd_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-gd (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package php8.3-gmp. 683s Preparing to unpack .../117-php8.3-gmp_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-gmp (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-gmp. 683s Preparing to unpack .../118-php-gmp_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-gmp (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package php8.3-ldap. 683s Preparing to unpack .../119-php8.3-ldap_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-ldap (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-ldap. 683s Preparing to unpack .../120-php-ldap_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-ldap (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package php8.3-mbstring. 683s Preparing to unpack .../121-php8.3-mbstring_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-mbstring (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-mbstring. 683s Preparing to unpack .../122-php-mbstring_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-mbstring (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package php8.3-mysql. 683s Preparing to unpack .../123-php8.3-mysql_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-mysql (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-mysql. 683s Preparing to unpack .../124-php-mysql_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-mysql (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package php-symfony-deprecation-contracts. 683s Preparing to unpack .../125-php-symfony-deprecation-contracts_3.5.2-5_all.deb ... 683s Unpacking php-symfony-deprecation-contracts (3.5.2-5) ... 683s Selecting previously unselected package php-psr-cache. 683s Preparing to unpack .../126-php-psr-cache_3.0.0-4_all.deb ... 683s Unpacking php-psr-cache (3.0.0-4) ... 683s Selecting previously unselected package php-psr-log. 683s Preparing to unpack .../127-php-psr-log_3.0.2-2_all.deb ... 683s Unpacking php-psr-log (3.0.2-2) ... 683s Selecting previously unselected package php-symfony-cache-contracts. 683s Preparing to unpack .../128-php-symfony-cache-contracts_3.5.2-5_all.deb ... 683s Unpacking php-symfony-cache-contracts (3.5.2-5) ... 683s Selecting previously unselected package php-psr-container. 683s Preparing to unpack .../129-php-psr-container_2.0.2-1_all.deb ... 683s Unpacking php-psr-container (2.0.2-1) ... 683s Selecting previously unselected package php-symfony-service-contracts. 683s Preparing to unpack .../130-php-symfony-service-contracts_3.5.2-5_all.deb ... 683s Unpacking php-symfony-service-contracts (3.5.2-5) ... 683s Selecting previously unselected package php-symfony-var-exporter. 683s Preparing to unpack .../131-php-symfony-var-exporter_6.4.10+dfsg-1ubuntu1_all.deb ... 683s Unpacking php-symfony-var-exporter (6.4.10+dfsg-1ubuntu1) ... 683s Selecting previously unselected package php-symfony-cache. 683s Preparing to unpack .../132-php-symfony-cache_6.4.10+dfsg-1ubuntu1_all.deb ... 683s Unpacking php-symfony-cache (6.4.10+dfsg-1ubuntu1) ... 683s Selecting previously unselected package php-symfony-expression-language. 683s Preparing to unpack .../133-php-symfony-expression-language_6.4.10+dfsg-1ubuntu1_all.deb ... 683s Unpacking php-symfony-expression-language (6.4.10+dfsg-1ubuntu1) ... 683s Selecting previously unselected package php-phpmyadmin-motranslator. 683s Preparing to unpack .../134-php-phpmyadmin-motranslator_5.3.1-1_all.deb ... 683s Unpacking php-phpmyadmin-motranslator (5.3.1-1) ... 683s Selecting previously unselected package php-phpseclib. 683s Preparing to unpack .../135-php-phpseclib_2.0.48-2_all.deb ... 683s Unpacking php-phpseclib (2.0.48-2) ... 683s Selecting previously unselected package php8.3-snmp. 683s Preparing to unpack .../136-php8.3-snmp_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-snmp (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-snmp. 683s Preparing to unpack .../137-php-snmp_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-snmp (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package php-twig. 683s Preparing to unpack .../138-php-twig_3.8.0-3_all.deb ... 683s Unpacking php-twig (3.8.0-3) ... 683s Selecting previously unselected package php8.3-xml. 683s Preparing to unpack .../139-php8.3-xml_8.3.11-0ubuntu4_s390x.deb ... 683s Unpacking php8.3-xml (8.3.11-0ubuntu4) ... 683s Selecting previously unselected package php-xml. 683s Preparing to unpack .../140-php-xml_2%3a8.3+93ubuntu2_all.deb ... 683s Unpacking php-xml (2:8.3+93ubuntu2) ... 683s Selecting previously unselected package snmp. 683s Preparing to unpack .../141-snmp_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 683s Unpacking snmp (5.9.4+dfsg-1.1ubuntu6) ... 683s Selecting previously unselected package libjs-jquery-hotkeys. 683s Preparing to unpack .../142-libjs-jquery-hotkeys_0.2.0-1_all.deb ... 683s Unpacking libjs-jquery-hotkeys (0.2.0-1) ... 683s Selecting previously unselected package libjs-jquery-ui-touch-punch. 683s Preparing to unpack .../143-libjs-jquery-ui-touch-punch_0.0~git20141218.2.4bc0091+dfsg1-4.1_all.deb ... 683s Unpacking libjs-jquery-ui-touch-punch (0.0~git20141218.2.4bc0091+dfsg1-4.1) ... 683s Selecting previously unselected package rrdtool. 683s Preparing to unpack .../144-rrdtool_1.7.2-4.2ubuntu1_s390x.deb ... 683s Unpacking rrdtool (1.7.2-4.2ubuntu1) ... 683s Selecting previously unselected package cacti. 683s Preparing to unpack .../145-cacti_1.2.28+ds1-3ubuntu1_all.deb ... 683s Unpacking cacti (1.2.28+ds1-3ubuntu1) ... 683s Setting up libconfig-inifiles-perl (3.000003-3) ... 683s Setting up javascript-common (11+nmu1) ... 683s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 683s Setting up node-ua-parser-js (0.8.1+ds+~0.7.36-3) ... 683s Setting up libpixman-1-0:s390x (0.44.0-3) ... 683s Setting up galera-4 (26.4.21-1) ... 683s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 683s Setting up php-common (2:93ubuntu2) ... 684s Created symlink '/etc/systemd/system/timers.target.wants/phpsessionclean.timer' → '/usr/lib/systemd/system/phpsessionclean.timer'. 684s Setting up node-d3-timer (1.0.10+~1.0.10-1) ... 684s Setting up libaom3:s390x (3.12.0-1) ... 684s Setting up node-d3-color (1.4.1+~1.4.2-1) ... 684s Setting up node-d3-interpolate (1.4.0+~1.4.2-1) ... 684s Setting up node-d3-queue (3.0.7-13) ... 684s Setting up libsodium23:s390x (1.0.18-1build3) ... 684s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 684s Setting up libjs-chart.js (3.9.1+~cs3.1.2-3) ... 684s Setting up node-d3-hierarchy (1.1.9+~1.1.8-1) ... 684s Setting up node-d3-ease (1.0.7+~1.0.11-1) ... 684s Setting up node-dompurify (3.1.7+dfsg+~3.0.5-1) ... 684s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 684s Setting up libphp-phpmailer (6.9.1-1) ... 684s Setting up libdatrie1:s390x (0.2.13-3build1) ... 684s Setting up libxcb-render0:s390x (1.17.0-2) ... 684s Setting up fonts-fork-awesome (1.2.0+ds1-1) ... 684s Setting up node-d3-scale-chromatic (1.5.0+~1.5.1-1) ... 684s Setting up libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 684s Setting up libargon2-1:s390x (0~20190702+dfsg-4build1) ... 684s Setting up libdbi1t64:s390x (0.9.0-6.1build1) ... 684s Setting up php-psr-container (2.0.2-1) ... 684s Setting up libjs-jquery-ui-theme-south-street (1.12.1+dfsg-1.1) ... 684s Setting up libdeflate0:s390x (1.23-1) ... 684s Setting up node-d3-selection (1.4.1+~1.4.3-1) ... 684s Setting up libxcb-shm0:s390x (1.17.0-2) ... 684s Setting up dbconfig-common (2.0.24) ... 684s Creating config file /etc/dbconfig-common/config with new version 684s Setting up php8.3-common (8.3.11-0ubuntu4) ... 684s Creating config file /etc/php/8.3/mods-available/calendar.ini with new version 684s Creating config file /etc/php/8.3/mods-available/ctype.ini with new version 685s Creating config file /etc/php/8.3/mods-available/exif.ini with new version 685s Creating config file /etc/php/8.3/mods-available/fileinfo.ini with new version 685s Creating config file /etc/php/8.3/mods-available/ffi.ini with new version 685s Creating config file /etc/php/8.3/mods-available/ftp.ini with new version 685s Creating config file /etc/php/8.3/mods-available/gettext.ini with new version 685s Creating config file /etc/php/8.3/mods-available/iconv.ini with new version 686s Creating config file /etc/php/8.3/mods-available/pdo.ini with new version 686s Creating config file /etc/php/8.3/mods-available/phar.ini with new version 686s Creating config file /etc/php/8.3/mods-available/posix.ini with new version 686s Creating config file /etc/php/8.3/mods-available/shmop.ini with new version 686s Creating config file /etc/php/8.3/mods-available/sockets.ini with new version 686s Creating config file /etc/php/8.3/mods-available/sysvmsg.ini with new version 687s Creating config file /etc/php/8.3/mods-available/sysvsem.ini with new version 687s Creating config file /etc/php/8.3/mods-available/sysvshm.ini with new version 687s Creating config file /etc/php/8.3/mods-available/tokenizer.ini with new version 687s Setting up node-d3-axis (1.0.12+~1.0.16-1) ... 687s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 687s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 687s Setting up node-d3-path (1.0.9+~1.0.9-1) ... 687s Setting up php8.3-mysql (8.3.11-0ubuntu4) ... 687s Creating config file /etc/php/8.3/mods-available/mysqlnd.ini with new version 687s Creating config file /etc/php/8.3/mods-available/mysqli.ini with new version 688s Creating config file /etc/php/8.3/mods-available/pdo_mysql.ini with new version 688s Setting up php-phpseclib (2.0.48-2) ... 688s Setting up php8.3-mbstring (8.3.11-0ubuntu4) ... 688s Creating config file /etc/php/8.3/mods-available/mbstring.ini with new version 688s Setting up node-safe-buffer (5.2.1+~cs2.1.2-3) ... 688s Setting up node-rw (1.3.3-5) ... 688s Setting up node-d3-polygon (1.0.6+~1.0.8-1) ... 688s Setting up php8.3-readline (8.3.11-0ubuntu4) ... 688s Creating config file /etc/php/8.3/mods-available/readline.ini with new version 688s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 688s Setting up node-d3-quadtree (1.0.7+~1.0.9-1) ... 688s Setting up php8.3-gmp (8.3.11-0ubuntu4) ... 688s Creating config file /etc/php/8.3/mods-available/gmp.ini with new version 688s Setting up socat (1.8.0.2-1) ... 688s Setting up libimagequant0:s390x (2.18.0-1build1) ... 688s Setting up php-psr-cache (3.0.0-4) ... 688s Setting up fonts-dejavu-mono (2.37-8) ... 688s Setting up node-d3-collection (1.0.7+~1.0.10-1) ... 688s Setting up libmariadb3:s390x (1:11.4.4-3) ... 688s Setting up fonts-dejavu-core (2.37-8) ... 688s Setting up libjs-jquery-ui-theme-smoothness (1.12.1+dfsg-1.1) ... 688s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 688s Setting up php-twig (3.8.0-3) ... 688s Setting up php-gmp (2:8.3+93ubuntu2) ... 688s Setting up node-d3-voronoi (1.1.4+~1.1.9-1) ... 688s Setting up node-d3-dispatch (1.0.6+~1.0.9-1) ... 688s Setting up libwebp7:s390x (1.5.0-0.1) ... 688s Setting up node-d3-time (1.1.0+~1.1.1-1) ... 688s Setting up php-psr-log (3.0.2-2) ... 688s Setting up node-commander (9.4.1-1) ... 688s Setting up php8.3-ldap (8.3.11-0ubuntu4) ... 688s Creating config file /etc/php/8.3/mods-available/ldap.ini with new version 688s Setting up fonts-dejavu-extra (2.37-8) ... 688s Setting up node-d3-array (3.2.0+~cs5.0.6-2) ... 688s Setting up libjs-d3-format (1:1.4.5+~1.4.2-2) ... 688s Setting up libapr1t64:s390x (1.7.5-1) ... 688s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 688s Setting up libjs-jquery-ui-theme-ui-darkness (1.12.1+dfsg-1.1) ... 688s Setting up liblua5.4-0:s390x (5.4.7-1) ... 688s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 688s Setting up libthai-data (0.1.29-2build1) ... 688s Setting up php8.3-xml (8.3.11-0ubuntu4) ... 688s Creating config file /etc/php/8.3/mods-available/dom.ini with new version 689s Creating config file /etc/php/8.3/mods-available/simplexml.ini with new version 689s Creating config file /etc/php/8.3/mods-available/xml.ini with new version 689s Creating config file /etc/php/8.3/mods-available/xmlreader.ini with new version 689s Creating config file /etc/php/8.3/mods-available/xmlwriter.ini with new version 689s Creating config file /etc/php/8.3/mods-available/xsl.ini with new version 689s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 689s Setting up php8.3-opcache (8.3.11-0ubuntu4) ... 689s Creating config file /etc/php/8.3/mods-available/opcache.ini with new version 690s Setting up node-d3-geo (1.12.1+~1.12.4-1) ... 690s Setting up liburing2:s390x (2.9-1) ... 690s Setting up libjs-jquery-hotkeys (0.2.0-1) ... 690s Setting up libde265-0:s390x (1.0.15-1build4) ... 690s Setting up node-d3-transition (1.3.2+~1.3.2-1) ... 690s Setting up node-d3-random (1.1.2+~1.1.3-1) ... 690s Setting up libdbi-perl:s390x (1.647-1) ... 690s Setting up php-symfony-deprecation-contracts (3.5.2-5) ... 690s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 690s Setting up php-xml (2:8.3+93ubuntu2) ... 690s Setting up libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 690s Setting up libjs-jquery-cookie (12-4) ... 690s Setting up libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 690s Setting up php-mysql (2:8.3+93ubuntu2) ... 690s Setting up node-d3-format (1:1.4.5+~1.4.2-2) ... 690s Setting up php-symfony-cache-contracts (3.5.2-5) ... 690s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 690s Setting up node-d3-time-format (2.3.0+~2.3.1-1) ... 690s Setting up node-d3-chord (1.0.6+~1.0.11-1) ... 690s Setting up libjs-jquery-jstree (3.3.16+dfsg1-1) ... 690s Setting up php-symfony-service-contracts (3.5.2-5) ... 690s Setting up snmp (5.9.4+dfsg-1.1ubuntu6) ... 690s Setting up libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 690s Setting up php8.3-cli (8.3.11-0ubuntu4) ... 690s update-alternatives: using /usr/bin/php8.3 to provide /usr/bin/php (php) in auto mode 690s update-alternatives: using /usr/bin/phar8.3 to provide /usr/bin/phar (phar) in auto mode 690s update-alternatives: using /usr/bin/phar.phar8.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode 690s Creating config file /etc/php/8.3/cli/php.ini with new version 690s Setting up php-mbstring (2:8.3+93ubuntu2) ... 690s Setting up node-d3-shape (1.3.7+~1.3.8-1) ... 690s Setting up libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 690s Setting up mariadb-client-core (1:11.4.4-3) ... 690s Setting up libthai0:s390x (0.1.29-2build1) ... 690s Setting up node-d3-drag (1.2.5+~1.2.5-1) ... 690s Setting up node-iconv-lite (0.6.3-3) ... 690s Setting up php-ldap (2:8.3+93ubuntu2) ... 690s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 690s Setting up libjs-jquery-metadata (12-4) ... 690s Setting up libraqm0:s390x (0.10.2-1) ... 690s Setting up node-d3-scale (2.2.2+~2.2.6-1) ... 690s Setting up node-d3-force (2.1.1+~2.1.4-1) ... 690s Setting up node-d3-contour (1.3.2+~1.3.3-1) ... 690s Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 690s Setting up node-d3-brush (1.1.6+~1.1.5-1) ... 690s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 690s Setting up libjs-jquery-timepicker (1.6.3-6) ... 690s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 690s Setting up php-symfony-var-exporter (6.4.10+dfsg-1ubuntu1) ... 690s Setting up node-d3-dsv (1.2.0+~1.2.3-1) ... 690s Setting up mariadb-server-core (1:11.4.4-3) ... 690s Invalid file '/usr/sbin/mysqld' for capability operation 690s Setcap failed on /usr/sbin/mysqld, required with --memlock if insufficent RLIMIT_MEMLOCK 690s Setting up php8.3-snmp (8.3.11-0ubuntu4) ... 690s Creating config file /etc/php/8.3/mods-available/snmp.ini with new version 690s Setting up fontconfig (2.15.0-2ubuntu1) ... 692s Regenerating fonts cache... done. 692s Setting up mariadb-client (1:11.4.4-3) ... 692s Setting up libjs-jquery-colorpicker (1.2.20-4) ... 692s Setting up node-d3-zoom (1.8.3+~1.8.4-1) ... 692s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 692s Setting up dbconfig-mysql (2.0.24) ... 692s Setting up node-d3-fetch (1.2.0+~1.2.2-1) ... 692s Setting up node-d3 (5.16.0+~cs5.28.10-2) ... 692s Setting up apache2-bin (2.4.63-1ubuntu1) ... 692s Setting up libcairo2:s390x (1.18.2-2) ... 692s Setting up mariadb-server (1:11.4.4-3) ... 693s Created symlink '/etc/systemd/system/multi-user.target.wants/mariadb.service' → '/usr/lib/systemd/system/mariadb.service'. 696s Setting up libjs-jquery-ui-touch-punch (0.0~git20141218.2.4bc0091+dfsg1-4.1) ... 696s Setting up php-symfony-cache (6.4.10+dfsg-1ubuntu1) ... 696s Setting up php-symfony-expression-language (6.4.10+dfsg-1ubuntu1) ... 696s Setting up php-snmp (2:8.3+93ubuntu2) ... 696s Setting up libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 696s Warning: Could not load Apache 2.4 maintainer script helper. 696s Creating config file /etc/php/8.3/apache2/php.ini with new version 697s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 697s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 697s Setting up php-phpmyadmin-motranslator (5.3.1-1) ... 697s Setting up libapache2-mod-php (2:8.3+93ubuntu2) ... 697s Setting up librrd8t64:s390x (1.7.2-4.2ubuntu1) ... 697s Setting up rrdtool (1.7.2-4.2ubuntu1) ... 697s Setting up libheif1:s390x (1.19.5-1build1) ... 697s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 697s Setting up php8.3-gd (8.3.11-0ubuntu4) ... 697s Creating config file /etc/php/8.3/mods-available/gd.ini with new version 697s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 697s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 697s Setting up cacti (1.2.28+ds1-3ubuntu1) ... 697s Determining localhost credentials from /etc/mysql/debian.cnf: succeeded. 697s dbconfig-common: writing config to /etc/dbconfig-common/cacti.conf 697s Creating config file /etc/dbconfig-common/cacti.conf with new version 697s Creating config file /etc/cacti/debian.php with new version 697s checking privileges on database cacti for cacti@localhost: user creation needed. 697s granting access to database cacti for cacti@localhost: success. 697s verifying access for cacti@localhost: success. 698s creating database cacti: success. 698s verifying database cacti exists: success. 698s populating database via administrative sql... done. 698s populating database via sql... done. 698s dbconfig-common: flushing administrative password 698s Creating config file /etc/apache2/conf-available/cacti.conf with new version 698s Creating config file /etc/lighttpd/conf-available/20-cacti.conf with new version 714s Loading default cacti templates (may take some time)............................. done. 714s Created directory: /var/lib/snmp/cert_indexes 714s Apache2 not installed, skipping 714s Setting up php-gd (2:8.3+93ubuntu2) ... 714s Processing triggers for libc-bin (2.40-4ubuntu1) ... 714s Processing triggers for man-db (2.13.0-1) ... 715s Processing triggers for php8.3-cli (8.3.11-0ubuntu4) ... 715s Processing triggers for libapache2-mod-php8.3 (8.3.11-0ubuntu4) ... 715s Warning: Could not load Apache 2.4 maintainer script helper. 715s autopkgtest: DBG: testbed command exited with code 0 715s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cacti'], kind short, sout pipe, serr pipe, env [] 715s autopkgtest: DBG: testbed command exited with code 0 715s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ysJYGH/check-cli-version-packages.all"], kind short, sout raw, serr pipe, env [] 715s autopkgtest: DBG: testbed command exited with code 0 715s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-cli-version-packages.all /tmp/autopkgtest-work.hhfgazt4/out/check-cli-version-packages.all 715s autopkgtest: DBG: got reply from testbed: ok 715s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ysJYGH/build.Eyz/src'], kind short, sout raw, serr raw, env [] 716s autopkgtest: DBG: testbed command exited with code 1 716s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ysJYGH/build.Eyz'], kind short, sout raw, serr pipe, env [] 716s autopkgtest: DBG: testbed command exited with code 0 716s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.hhfgazt4/out/tests-tree/ /tmp/autopkgtest.ysJYGH/build.Eyz/src/ 721s autopkgtest: DBG: got reply from testbed: ok 721s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.ysJYGH/build.Eyz/src'], kind short, sout raw, serr pipe, env [] 721s autopkgtest: DBG: testbed command exited with code 0 721s autopkgtest [11:11:12]: test check-cli-version: tests/tools/check_cli_version.sh 721s autopkgtest [11:11:12]: test check-cli-version: [----------------------- 721s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.ysJYGH/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ysJYGH/check-cli-version-artifacts --chdir=/tmp/autopkgtest.ysJYGH/build.Eyz/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.ysJYGH/check-cli-version-stderr --stdout=/tmp/autopkgtest.ysJYGH/check-cli-version-stdout --tmp=/tmp/autopkgtest.ysJYGH/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 -- bash -ec tests/tools/check_cli_version.sh'], kind test, sout raw, serr raw, env [] 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ysJYGH/check-cli-version-artifacts 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: changing to directory: /tmp/autopkgtest.ysJYGH/build.Eyz/src 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: LANG=C.UTF-8 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LANGUAGE 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_ADDRESS 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_ALL 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_COLLATE 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_CTYPE 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_IDENTIFICATION 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MEASUREMENT 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MESSAGES 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_MONETARY 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_NAME 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_NUMERIC 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_PAPER 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_TELEPHONE 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: unsetting environment: LC_TIME 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: pretending to be a login shell 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: will write standard error to /tmp/autopkgtest.ysJYGH/check-cli-version-stderr 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: will write stdout to /tmp/autopkgtest.ysJYGH/check-cli-version-stdout 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ysJYGH/autopkgtest_tmp 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=apache2/2.4.63-1ubuntu1 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: command to run: bash -ec tests/tools/check_cli_version.sh 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: copying /tmp/tmp.iT9wCFYdMs/out to stdout and file: /tmp/autopkgtest.ysJYGH/check-cli-version-stdout 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: copying /tmp/tmp.iT9wCFYdMs/err to standard error and file: /tmp/autopkgtest.ysJYGH/check-cli-version-stdout 721s /tmp/autopkgtest.ysJYGH/wrapper.sh: writing script pid 14029 to /tmp/autopkgtest_script_pid 721s Testing script: cli/add_data_query.php 722s Testing script: cli/add_datasource.php 722s Testing script: cli/add_device.php 722s Testing script: cli/add_graph_template.php 722s Testing script: cli/add_graphs.php 722s Testing script: cli/add_perms.php 722s Testing script: cli/add_tree.php 722s Testing script: cli/analyze_database.php 722s Testing script: cli/apply_automation_rules.php 723s Testing script: cli/audit_database.php 723s Testing script: cli/batchgapfix.php 723s Testing script: cli/change_device.php 723s Testing script: cli/convert_tables.php 723s Testing script: cli/copy_user.php 723s Testing script: cli/fix_mediumint.php 723s Testing script: cli/float_rrdfiles.php 723s Testing script: cli/host_update_template.php 724s Testing script: cli/import_package.php 724s Testing script: cli/import_template.php 724s Testing script: cli/input_whitelist.php 724s Testing script: cli/install_cacti.php 724s Testing script: cli/md5sum.php 724s Testing script: cli/plugin_manage.php 724s Testing script: cli/poller_data_sources_reapply_names.php 724s Testing script: cli/poller_graphs_reapply_names.php 724s Testing script: cli/poller_output_empty.php 725s Testing script: cli/poller_reindex_hosts.php 725s Testing script: cli/poller_replicate.php 725s Testing script: cli/push_out_hosts.php 725s Testing script: cli/rebuild_poller_cache.php 725s Testing script: cli/refresh_csrf.php 725s Testing script: cli/remove_broken_graphs.php 725s stty: 'standard input': Inappropriate ioctl for device 725s stty: 'standard input': Inappropriate ioctl for device 725s Testing script: cli/remove_device.php 725s Testing script: cli/remove_graphs.php 726s Testing script: cli/removespikes.php 726s Testing script: cli/reorder_data_query.php 726s Testing script: cli/repair_database.php 726s Testing script: cli/repair_graphs.php 726s Testing script: cli/repair_templates.php 726s Testing script: cli/splice_rrd.php 726s Testing script: cli/sqltable_to_php.php 726s Testing script: cli/structure_rra_paths.php 726s Testing script: cli/update_heartbeat.php 727s Testing script: cli/upgrade_database.php 727s Testing script: site/poller.php 727s Testing script: site/poller_automation.php 727s Testing script: site/poller_boost.php 727s Testing script: site/poller_commands.php 727s Testing script: site/poller_dsstats.php 727s Testing script: site/poller_maintenance.php 727s Testing script: site/poller_realtime.php 728s Testing script: site/poller_recovery.php 728s Testing script: site/poller_reports.php 728s Testing script: site/poller_rrdcheck.php 728s Testing script: site/poller_spikekill.php 728s Testing script: site/cactid.php 728s Testing script: site/cmd.php 728s /tmp/autopkgtest.ysJYGH/wrapper.sh: checking for leaked background processes... 728s /tmp/autopkgtest.ysJYGH/wrapper.sh: waiting for tee/cat subprocesses... 728s /tmp/autopkgtest.ysJYGH/wrapper.sh: cleaning up... 728s /tmp/autopkgtest.ysJYGH/wrapper.sh: Exit status: 0 728s autopkgtest: DBG: testbed command exited with code 0 729s autopkgtest [11:11:20]: test check-cli-version: -----------------------] 729s autopkgtest: DBG: testbed executing test finished with exit status 0 729s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-cli-version-stdout /tmp/autopkgtest-work.hhfgazt4/out/check-cli-version-stdout 729s autopkgtest: DBG: got reply from testbed: ok 729s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-cli-version-stderr /tmp/autopkgtest-work.hhfgazt4/out/check-cli-version-stderr 729s autopkgtest: DBG: got reply from testbed: ok 729s check-cli-version PASS 729s autopkgtest [11:11:20]: test check-cli-version: - - - - - - - - - - results - - - - - - - - - - 729s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ysJYGH/check-cli-version-artifacts/ /tmp/autopkgtest-work.hhfgazt4/out/artifacts/ 729s autopkgtest: DBG: got reply from testbed: ok 729s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ysJYGH/check-cli-version-artifacts', '/tmp/autopkgtest.ysJYGH/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 729s autopkgtest: DBG: testbed command exited with code 0 729s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 729s autopkgtest [11:11:20]: @@@@@@@@@@@@@@@@@@@@ summary 729s check-all-pages-with-mariadb PASS 729s check-all-pages-with-mysql PASS 729s check-cli-version PASS 729s autopkgtest: DBG: testbed stop 729s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ysJYGH 729s autopkgtest: DBG: sending command to testbed: close 746s autopkgtest: DBG: got reply from testbed: ok 746s autopkgtest: DBG: sending command to testbed: quit 746s nova [W] Using flock in prodstack6-s390x 746s Creating nova instance adt-plucky-s390x-cacti-20250219-105911-juju-7f2275-prod-proposed-migration-environment-15-092d9933-a717-4e75-b786-58382708bb44 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 746s nova [W] Timed out waiting for c9c74712-bdf9-4446-8208-429e5d6f9033 to get deleted. 746s nova [W] Using flock in prodstack6-s390x 746s Creating nova instance adt-plucky-s390x-cacti-20250219-105911-juju-7f2275-prod-proposed-migration-environment-15-092d9933-a717-4e75-b786-58382708bb44 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 746s nova [W] Timed out waiting for 80655b04-736c-4b4f-b3b8-4fce7fe76426 to get deleted. 746s nova [W] Using flock in prodstack6-s390x 746s Creating nova instance adt-plucky-s390x-cacti-20250219-105911-juju-7f2275-prod-proposed-migration-environment-15-092d9933-a717-4e75-b786-58382708bb44 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 746s nova [W] Timed out waiting for 1fe5559e-0c39-4997-a93b-a76e45b022ac to get deleted.