Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dev-24.04.x] [gorgone] Fix column length for MBI (MON-143654) #1553

Merged
merged 21 commits into from
Aug 20, 2024
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d8f4830
MON-12908: add centreon-mbi etl optimized (#220)
garnier-quentin Apr 19, 2022
251120c
merge centreon-gorgone
kduret Nov 25, 2022
af8f8b5
enh(gorgone): use zmq ffi binding (#1057)
garnier-quentin Mar 10, 2023
990afaa
fix(mbi) change the type of metric_unit column (#1117)
s-duret Mar 27, 2023
95166ba
Centreon 23.10 (Jira release #19426#)
paloth Oct 30, 2023
7ec33c1
MON-22657 Sync Centreon OSS next 23.10 (#2482)
pkippes Oct 31, 2023
921e0d2
Sync dev-23.10.x vers develop oss (#2487)
pkippes Oct 31, 2023
8b1779f
Centreon 24.04 (Jira release #19608#)
paloth Jan 25, 2024
fedaadd
Empty-Commit
tuntoja Jan 26, 2024
0e41444
MON-34022 Sync Centreon OSS next 24.04 (Jira release #34022#) (#3181)
pkippes Jan 26, 2024
67c98a5
Centreon 24.04 (Jira release #19735#)
paloth Apr 9, 2024
e8637d0
MON-37060 Sync Centreon OSS next 24.04 (Jira release #37060#) (#3826)
pkippes Apr 10, 2024
72fb1f2
MON-52711 Centreon next 24.04 (Jira release #19810#) (#3854)
pkippes Apr 30, 2024
9c836fd
MON-52711 Sync Centreon next 24.04 (Jira release #19810#) (#3984)
pkippes May 2, 2024
167d5d2
MON-70033 Centreon next 24.04 (Jira release #19855#) (#4048)
pkippes May 28, 2024
8ce8901
MON-70033 Sync Centreon next 24.04 (#4222)
pkippes May 28, 2024
7ceb088
MON-111633 Centreon next 24.04 (Jira release #19873#) (#4358)
pkippes Jun 26, 2024
e2965f9
Empty-Commit
pkippes Jun 28, 2024
ae20dfd
MON-111633 ReSync Centreon next 24.04 (#4506)
pkippes Jul 1, 2024
d10225d
In the table mod_bi_tmp_today_servicemetrics, use the same type as de…
vuntz Jul 15, 2024
27023f5
Merge remote-tracking branch 'centreon-gorgone/MON-143654' into MON-1…
kduret Jul 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gorgone/gorgone/modules/centreon/mbi/libs/bi/BIMetric.pm
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ sub createTodayTable {

$db->query({ query => "DROP TABLE IF EXISTS `".$self->{"today_table"}."`" });
my $query = "CREATE TABLE `" . $self->{"today_table"} . "` (";
$query .= "`id` INT NOT NULL,";
$query .= "`metric_id` int(11) NOT NULL,";
$query .= "`id` BIGINT(20) UNSIGNED NOT NULL,";
$query .= "`metric_id` BIGINT(20) UNSIGNED NOT NULL,";
$query .= "`metric_name` varchar(255) NOT NULL,";
$query .= "`sc_id` int(11) NOT NULL,";
$query .= "`hg_id` int(11) NOT NULL,";
Expand Down