Compare commits
10 Commits
d677a30f0b
...
3f7be9aee3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3f7be9aee3 | ||
|
|
39096029cc | ||
|
|
06aed28a75 | ||
|
|
63413e3735 | ||
|
|
a52e06be8f | ||
|
|
dffe0c2106 | ||
|
|
ac69cceb66 | ||
|
|
87000c217e | ||
|
|
e83c1cf9ca | ||
|
|
0a1a3796e9 |
Binary file not shown.
BIN
gala-anteater-1.1.0.tar.gz
Normal file
BIN
gala-anteater-1.1.0.tar.gz
Normal file
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: gala-anteater
|
Name: gala-anteater
|
||||||
Version: 1.0.0
|
Version: 1.1.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A time-series anomaly detection platform for operating system.
|
Summary: A time-series anomaly detection platform for operating system.
|
||||||
License: MulanPSL2
|
License: MulanPSL2
|
||||||
@ -18,12 +18,13 @@ Abnormal detection module for A-Ops project
|
|||||||
Summary: Python3 package of gala-anteater
|
Summary: Python3 package of gala-anteater
|
||||||
Requires: python3-APScheduler python3-kafka-python python3-joblib python3-numpy
|
Requires: python3-APScheduler python3-kafka-python python3-joblib python3-numpy
|
||||||
Requires: python3-pandas python3-requests python3-scikit-learn python3-pytorch
|
Requires: python3-pandas python3-requests python3-scikit-learn python3-pytorch
|
||||||
|
Requires: python3-pyyaml
|
||||||
|
|
||||||
%description -n python3-gala-anteater
|
%description -n python3-gala-anteater
|
||||||
Python3 package of gala-anteater
|
Python3 package of gala-anteater
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %{name}-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
@ -31,24 +32,39 @@ Python3 package of gala-anteater
|
|||||||
%install
|
%install
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
|
%pre
|
||||||
|
if [ -f "%{_unitdir}/gala-anteater.service" ] ; then
|
||||||
|
systemctl enable gala-anteater.service || :
|
||||||
|
fi
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
%systemd_post gala-anteater.service
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
|
%systemd_preun gala-anteater.service
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
|
if [ -f "%{_unitdir}/gala-anteater.service" ] ; then
|
||||||
|
%systemd_postun_with_restart gala-anteater.service
|
||||||
|
fi
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{_bindir}/gala-anteater
|
%{_bindir}/gala-anteater
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/config/metricinfo.json
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/gala-anteater.yaml
|
%config(noreplace) %{_sysconfdir}/%{name}/config/gala-anteater.yaml
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/log.settings.ini
|
%config(noreplace) %{_sysconfdir}/%{name}/config/log.settings.ini
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/module/app_sli_rtt.json
|
%config(noreplace) %{_sysconfdir}/%{name}/module/app_sli_rtt.job.json
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/module/proc_io_latency.json
|
%config(noreplace) %{_sysconfdir}/%{name}/module/disk_throughput.job.json
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/module/sys_io_latency.json
|
%config(noreplace) %{_sysconfdir}/%{name}/module/jvm_oom.job.json
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/module/sys_tcp_establish.json
|
%config(noreplace) %{_sysconfdir}/%{name}/module/proc_io_latency.job.json
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/config/module/sys_tcp_transmission.json
|
%config(noreplace) %{_sysconfdir}/%{name}/module/sys_io_latency.job.json
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/module/sys_nic_loss.job.json
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/module/sys_tcp_establish.job.json
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/module/sys_tcp_transmission_latency.job.json
|
||||||
|
%config(noreplace) %{_sysconfdir}/%{name}/module/usad_model.job.json
|
||||||
|
/usr/lib/systemd/system/gala-anteater.service
|
||||||
|
|
||||||
%files -n python3-gala-anteater
|
%files -n python3-gala-anteater
|
||||||
%{python3_sitelib}/anteater/*
|
%{python3_sitelib}/anteater/*
|
||||||
@ -56,5 +72,28 @@ Python3 package of gala-anteater
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 31 2023 Li Zhenxing <lizhenxing11@huawei.com> - 1.1.0-1
|
||||||
|
- Upgrade anteater version to 1.1.0
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Zhen Chen <chenzhen126@huawei.com> - 1.0.1-4
|
||||||
|
- eliminate 'Fail to try-restart' warning when downgrading to 1.0.1-1
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Zhen Chen <chenzhen126@huawei.com> - 1.0.1-3
|
||||||
|
- fix missing Requires:python3-pyyaml
|
||||||
|
|
||||||
|
* Tue Jan 17 2023 Zhen Chen <chenzhen126@huawei.com> - 1.0.1-2
|
||||||
|
- fix str2enum bug & data query refactor
|
||||||
|
- add systemd service for anteater
|
||||||
|
- remove 'sys-level' config param
|
||||||
|
- add chinese descriptions
|
||||||
|
- Update TCP Establish Model & Add Nic Loss Detector
|
||||||
|
- Add disk throughput detector
|
||||||
|
|
||||||
|
* Wed Nov 30 2022 Li Zhenxing <lizhenxing11@huawei.com> - 1.0.1-1
|
||||||
|
- Add sys level anomaly detection and cause inference
|
||||||
|
|
||||||
|
* Tue Nov 22 2022 Li Zhenxing <lizhenxing11@huawei.com> - 1.0.0-2
|
||||||
|
- Updates anomaly detection model and imporves cause inference result
|
||||||
|
|
||||||
* Sat Nov 12 2022 Zhen Chen <chenzhen126@huawei.com> - 1.0.0-1
|
* Sat Nov 12 2022 Zhen Chen <chenzhen126@huawei.com> - 1.0.0-1
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user