I'm trying to add a new graph to a test using NCV (SPLITNCV actually). I read through the graphing tips, I read several emails that provided hints (not my exact problem but nudged me the right way)...
long story short. I finally got he graph to show up on my test page...but the rrd file doesn't seem to be populating the fields as expected when I run "rrdtool dump". The only thing I can figure is that the test I'm performing doesn't run every 5 minutes but every 15 minutes. Does that matter? I would have expected in the worst case that only every 3rd row would have a value.
What am I missing here? Note, I dropped my test to run every 5 minutes to see if this theory is true.
As a side note, it would be extremely helpful if the NCV component didn't look at the entire status but required a comment block (for example) to contain it. That way you could keep your data stream isolated from your message. For example:
<!-- NCV data metric1: 123 metric2: 456 etc -->
My test kept creating an rrd file for a date string that was part of the status message. That's a bit annoying.
=G=
Hi,
On 15/04/2015 21:04, Galen Johnson wrote:
I'm trying to add a new graph to a test using NCV (SPLITNCV actually). I read through the graphing tips, I read several emails that provided hints (not my exact problem but nudged me the right way)...
long story short. I finally got he graph to show up on my test page...but the rrd file doesn't seem to be populating the fields as expected when I run "rrdtool dump". The only thing I can figure is that the test I'm performing doesn't run every 5 minutes but every 15 minutes. Does that matter? I would have expected in the worst case that only every 3rd row would have a value.
What am I missing here? Note, I dropped my test to run every 5 minutes to see if this theory is true.
Firstly, remember that the rrd specifies how much data must be valid for it to work. so if 66% of your data is unknown, then it probably isn't going to work.
While running it every 5 minutes, you need to also remember that by default xymon will cache the rrd updates from being written to the rrd file by up to 30 minutes, so try waiting a bit longer and looking at older data within the rrd.
As a side note, it would be extremely helpful if the NCV component didn't look at the entire status but required a comment block (for example) to contain it. That way you could keep your data stream isolated from your message. For example:
<!-- NCV data metric1: 123 metric2: 456 etc -->
My test kept creating an rrd file for a date string that was part of the status message. That's a bit annoying.
Yes, but then you lose the advantage and simplicity of the ncv format. Make sure your data is being sent in the correct format so you only include the data in the right format.
PS, I think I recall you could send the data in a "data" message and then also send the "pretty" stuff in a status message. I'm on holidays right now, so can't double check what I did with this.
Regards, Adam
Hello,
I'm trying to add a new graph to a test using NCV (SPLITNCV actually). I read through the graphing tips, I read several emails that provided hints (not my exact problem but nudged me the right way)...
long story short. I finally got he graph to show up on my test page...but the rrd file doesn't seem to be populating the fields as expected when I run "rrdtool dump". The only thing I can figure is that the test I'm performing doesn't run every 5 minutes but every 15 minutes. Does that matter? I would have expected in the worst case that only every 3rd row would have a value.
What am I missing here? Note, I dropped my test to run every 5 minutes to see if this theory is true. Is the DS type DERIVE or COUNTER? In that case two successive samples, which are 5 minutes apart, are needed to create one data point in the graph.
As a side note, it would be extremely helpful if the NCV component didn't look at the entire status but required a comment block (for example) to contain it. That way you could keep your data stream isolated from your message. For example:
<!-- NCV data metric1: 123 metric2: 456 etc -->
Perhaps you can use the devmon format, which encapsulates the data to trend in an HTML comment section. In that case, one would have to specify "test=devmon" in stead of "test=ncv" in variable TEST2RRD. There is no need for an NCV_Something variable, as the DS definition is included with the data to trend.
My test kept creating an rrd file for a date string that was part of the status message. That's a bit annoying.
There are (at least) two ways to circumvent that problem: A) Add "*:NONE" to the NCV_Something variable; B) Replace all occurrences of ":" and "=" outside the NCV part by their HTML equivalent, thus ":" and "=".
Regards, Wim Nelis.
Thanks for the replies. Adam's reply regarding the way RRD handles the data makes sense. Once I move the test to run every 5 minutes, it did begin to populate the graph. I let it run for hours with the 15 minute run without success (looks like RRD stops caring after 10 minutes). I'll look more into RRD to see if there is some easy way to have this work since it's a valid need to have tests that run less often but you still want to graph for trending purposes. Likely just a user education issue.
I looked at the data message but the man page seemed to indicate that this would only populate a graph only for the trends page. I may revisit it since when I stopped trying to use it, I was still running at 15 minute intervals.
per WJM's comment, It's a GUAGE, actually. I may look at the devmon option. I may not have been clear on the request to have the data be restricted somehow for the status. It's too easy to have NCV trigger since '=' and ':' are fairly common separators when one provides output. I love the flexibility of NCV but that little foible is a bit annoying. Also note, even when I defined NONE, it still creates an rrd file (I used SPLITNCV). It would also be difficult to set that up for a string that looks like this:
Thu Apr 16 22:33:41 EDT 2015
and creates a rrd file named test,Thu_Apr_16_22.rrd
that is going to create a new rrd file every hour.
Having to filter the content to change it to use the html entities is (IMHO) a hack that shouldn't be needed. The devmon test apparently already requires this so it really doesn't seem too unreasonable for NCV to handle it the same way.
Just throwing it out there...it's graphing along and I'm happy I was able to figure it out.
On Thu, Apr 16, 2015 at 2:58 AM, W.J.M. Nelis <Wim.Nelis at nlr.nl> wrote:
Hello,
I'm trying to add a new graph to a test using NCV (SPLITNCV actually). I read through the graphing tips, I read several emails that provided hints (not my exact problem but nudged me the right way)...
long story short. I finally got he graph to show up on my test page...but the rrd file doesn't seem to be populating the fields as expected when I run "rrdtool dump". The only thing I can figure is that the test I'm performing doesn't run every 5 minutes but every 15 minutes. Does that matter? I would have expected in the worst case that only every 3rd row would have a value.
What am I missing here? Note, I dropped my test to run every 5 minutes to see if this theory is true.
Is the DS type DERIVE or COUNTER? In that case two successive samples, which are 5 minutes apart, are needed to create one data point in the graph.
As a side note, it would be extremely helpful if the NCV component didn't look at the entire status but required a comment block (for example) to contain it. That way you could keep your data stream isolated from your message. For example:
<!-- NCV data metric1: 123 metric2: 456 etc -->
Perhaps you can use the devmon format, which encapsulates the data to trend in an HTML comment section. In that case, one would have to specify "test=devmon" in stead of "test=ncv" in variable TEST2RRD. There is no need for an NCV_Something variable, as the DS definition is included with the data to trend.
My test kept creating an rrd file for a date string that was part of the status message. That's a bit annoying.
There are (at least) two ways to circumvent that problem: A) Add "*:NONE" to the NCV_Something variable; B) Replace all occurrences of ":" and "=" outside the NCV part by their HTML equivalent, thus ":" and "=".
Regards, Wim Nelis.
*The NLR disclaimer is valid for NLR e-mail messages.*
This message is only meant for providing information. Nothing in this e-mail message amounts to a contractual or legal commitment on the part of the sender.
This message may contain information that is not intended for you. If you are not the addressee or if this message was sent to you by mistake, you are requested to inform the sender and delete the message. Sender accepts no liability for damage of any kind resulting from the risks inherent in the electronic transmission of messages.
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
You probably need to create the RRDs manually. I don't recall the details, but you can specify how often samples should arrive and how many can be missed before it records not-a-number (NaN). The default sample interval is 5 minutes, and I think if you miss two that counts as NaN. That fits with your observed loss of graphs.
Xymon doesn't care who created the RRD, so you should be able to create one with the rrdtool command line program that would work with 15 minute samples.
Ralph Mitchell
On Thu, Apr 16, 2015 at 10:40 PM, Galen Johnson <solitaryr at gmail.com> wrote:
Thanks for the replies. Adam's reply regarding the way RRD handles the data makes sense. Once I move the test to run every 5 minutes, it did begin to populate the graph. I let it run for hours with the 15 minute run without success (looks like RRD stops caring after 10 minutes). I'll look more into RRD to see if there is some easy way to have this work since it's a valid need to have tests that run less often but you still want to graph for trending purposes. Likely just a user education issue.
I looked at the data message but the man page seemed to indicate that this would only populate a graph only for the trends page. I may revisit it since when I stopped trying to use it, I was still running at 15 minute intervals.
per WJM's comment, It's a GUAGE, actually. I may look at the devmon option. I may not have been clear on the request to have the data be restricted somehow for the status. It's too easy to have NCV trigger since '=' and ':' are fairly common separators when one provides output. I love the flexibility of NCV but that little foible is a bit annoying. Also note, even when I defined NONE, it still creates an rrd file (I used SPLITNCV). It would also be difficult to set that up for a string that looks like this:
Thu Apr 16 22:33:41 EDT 2015
and creates a rrd file named test,Thu_Apr_16_22.rrd
that is going to create a new rrd file every hour.
Having to filter the content to change it to use the html entities is (IMHO) a hack that shouldn't be needed. The devmon test apparently already requires this so it really doesn't seem too unreasonable for NCV to handle it the same way.
Just throwing it out there...it's graphing along and I'm happy I was able to figure it out.
On Thu, Apr 16, 2015 at 2:58 AM, W.J.M. Nelis <Wim.Nelis at nlr.nl> wrote:
Hello,
I'm trying to add a new graph to a test using NCV (SPLITNCV actually). I read through the graphing tips, I read several emails that provided hints (not my exact problem but nudged me the right way)...
long story short. I finally got he graph to show up on my test page...but the rrd file doesn't seem to be populating the fields as expected when I run "rrdtool dump". The only thing I can figure is that the test I'm performing doesn't run every 5 minutes but every 15 minutes. Does that matter? I would have expected in the worst case that only every 3rd row would have a value.
What am I missing here? Note, I dropped my test to run every 5 minutes to see if this theory is true.
Is the DS type DERIVE or COUNTER? In that case two successive samples, which are 5 minutes apart, are needed to create one data point in the graph.
As a side note, it would be extremely helpful if the NCV component didn't look at the entire status but required a comment block (for example) to contain it. That way you could keep your data stream isolated from your message. For example:
<!-- NCV data metric1: 123 metric2: 456 etc -->
Perhaps you can use the devmon format, which encapsulates the data to trend in an HTML comment section. In that case, one would have to specify "test=devmon" in stead of "test=ncv" in variable TEST2RRD. There is no need for an NCV_Something variable, as the DS definition is included with the data to trend.
My test kept creating an rrd file for a date string that was part of the status message. That's a bit annoying.
There are (at least) two ways to circumvent that problem: A) Add "*:NONE" to the NCV_Something variable; B) Replace all occurrences of ":" and "=" outside the NCV part by their HTML equivalent, thus ":" and "=".
Regards, Wim Nelis.
*The NLR disclaimer is valid for NLR e-mail messages.*
This message is only meant for providing information. Nothing in this e-mail message amounts to a contractual or legal commitment on the part of the sender.
This message may contain information that is not intended for you. If you are not the addressee or if this message was sent to you by mistake, you are requested to inform the sender and delete the message. Sender accepts no liability for damage of any kind resulting from the risks inherent in the electronic transmission of messages.
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
The "heartbeat" determines how long RRD will wait (in seconds) before it mis-trust the next value received. It relates to the "step". It's a bit complicated, but check out the man page for rrdcreate for a good explanation.
On 17 April 2015 at 13:25, Ralph Mitchell <ralphmitchell at gmail.com> wrote:
You probably need to create the RRDs manually.
If the RRD file already exists, you can adjust the heartbeat using "rrdtune".
There are some RRD parameters you can pre-set in the rrddefinitions.cfg file, to override the defaults for creating new RRD files. Unfortunately, the heartbeat doesn't appear to be one of them, but "step" is, if that helps.
If you use the "more advanced" method of feeding data in, using "trends" messages, then you can specify the heartbeat, as well as min and max, when you send the data samples. The very first time Xymon receives a trends message, it will create the RRD file with the given heartbeat/min/max, but these will (I think) be ignored for all subsequent updates.
I think the moral of the story is that if you want maximum flexibility, create a trends message (as well as a status message if required). If you want standard RRD files and parameters, use "NCV". If you want to display non-data with colons and equals, use "devmon".
J
Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Ok...I'm going to show my ignorance here but what is "CFT"?
=G=
On Mon, Apr 20, 2015 at 9:21 AM, Gautier Begin <gbegin at csc.com> wrote:
Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
My google-fu says "combat fitness test"... Betting that's wrong.
Please do share, what is CFT in your world?
From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Galen Johnson Sent: Monday, April 20, 2015 6:00 PM To: Gautier Begin Cc: xymon at xymon.com Subject: Re: [Xymon] CFT
Ok...I'm going to show my ignorance here but what is "CFT"?
=G=
On Mon, Apr 20, 2015 at 9:21 AM, Gautier Begin <gbegin at csc.com> wrote:
Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 <tel:%2B352%2024%20834%20276> | m:+352 621 229 172 <tel:%2B352%20621%20229%20172> | gbegin at csc.com | <http://www.csc.com> www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Hello,
CFT (Cross File Transfert) is a file transfer solution widespreed used in financial institutions. It currently belongs to AXWAY: http://en.wikipedia.org/wiki/Cross_File_Transfer
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
From: "Dave Overton" <dave at syix.com> To: <xymon at xymon.com> Date: 04/21/2015 03:45 AM Subject: Re: [Xymon] CFT Sent by: "Xymon" <xymon-bounces at xymon.com>
My google-fu says "combat fitness test"... Betting that's wrong.
Please do share, what is CFT in your world?
From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Galen Johnson Sent: Monday, April 20, 2015 6:00 PM To: Gautier Begin Cc: xymon at xymon.com Subject: Re: [Xymon] CFT
Ok...I'm going to show my ignorance here but what is "CFT"?
=G=
On Mon, Apr 20, 2015 at 9:21 AM, Gautier Begin <gbegin at csc.com> wrote: Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
My immediate thought is to ask how you monitor it now. Can this process be automated? If so, then it probably could be turned into a custom Xymon test.
CC
On Tue, Apr 21, 2015 at 4:09 PM, Gautier Begin <gbegin at csc.com> wrote:
Hello,
CFT (Cross File Transfert) is a file transfer solution widespreed used in financial institutions. It currently belongs to AXWAY: http://en.wikipedia.org/wiki/Cross_File_Transfer
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
From: "Dave Overton" <dave at syix.com> To: <xymon at xymon.com> Date: 04/21/2015 03:45 AM Subject: Re: [Xymon] CFT Sent by: "Xymon" <xymon-bounces at xymon.com>
My google-fu says "combat fitness test"... Betting that's wrong.
Please do share, what is CFT in your world?
From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Galen Johnson Sent: Monday, April 20, 2015 6:00 PM To: Gautier Begin Cc: xymon at xymon.com Subject: Re: [Xymon] CFT
Ok...I'm going to show my ignorance here but what is "CFT"?
=G=
On Mon, Apr 20, 2015 at 9:21 AM, Gautier Begin <gbegin at csc.com> wrote: Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
I agree with the custom Xymon script. I set-up monitoring for IBM's MQ transfer software (sounds like CFT is Europe's version) at a security exchange and it was all done via scripts running MQ commands.
....Bruce
-----Original Message----- From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Colin Coe Sent: Tuesday, April 21, 2015 3:18 AM To: Gautier Begin Cc: xymon at xymon.com; Xymon Subject: Re: [Xymon] CFT
My immediate thought is to ask how you monitor it now. Can this process be automated? If so, then it probably could be turned into a custom Xymon test.
CC
On Tue, Apr 21, 2015 at 4:09 PM, Gautier Begin <gbegin at csc.com> wrote:
Hello,
CFT (Cross File Transfert) is a file transfer solution widespreed used in financial institutions. It currently belongs to AXWAY: http://en.wikipedia.org/wiki/Cross_File_Transfer
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
From: "Dave Overton" <dave at syix.com> To: <xymon at xymon.com> Date: 04/21/2015 03:45 AM Subject: Re: [Xymon] CFT Sent by: "Xymon" <xymon-bounces at xymon.com>
My google-fu says "combat fitness test"... Betting that's wrong.
Please do share, what is CFT in your world?
From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Galen Johnson Sent: Monday, April 20, 2015 6:00 PM To: Gautier Begin Cc: xymon at xymon.com Subject: Re: [Xymon] CFT
Ok...I'm going to show my ignorance here but what is "CFT"?
=G=
On Mon, Apr 20, 2015 at 9:21 AM, Gautier Begin <gbegin at csc.com> wrote: Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Bruce White Senior Enterprise Systems Engineer | Phone: 1-630-671-5169 | bewhite at fellowes.com | www.fellowes.com
Disclaimer: The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. Fellowes, Inc
Hello,
yes, IBM MQ is a different product, working differently but from the same family.
CFT seems very specific to France.
If that can help someone in the futur, here what I found:
I found here a nagios exemple: http://wiki.tuxunix.com/index.php/Doc_CFT (in French)
- usage of these commands: cftping -v cft (motor state) cftlog (log access) cftutil listcat state=KH (state of flows in the catalog)
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
From: "White, Bruce" <bewhite at fellowes.com> To: "'Colin Coe'" <colin.coe at gmail.com>, Gautier Begin/LUX/CSC at CSC Cc: "xymon at xymon.com" <xymon at xymon.com>, Xymon <xymon-bounces at xymon.com> Date: 04/21/2015 09:27 PM Subject: RE: [Xymon] CFT
I agree with the custom Xymon script. I set-up monitoring for IBM's MQ transfer software (sounds like CFT is Europe's version) at a security exchange and it was all done via scripts running MQ commands.
....Bruce
-----Original Message----- From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Colin Coe Sent: Tuesday, April 21, 2015 3:18 AM To: Gautier Begin Cc: xymon at xymon.com; Xymon Subject: Re: [Xymon] CFT
My immediate thought is to ask how you monitor it now. Can this process be automated? If so, then it probably could be turned into a custom Xymon test.
CC
On Tue, Apr 21, 2015 at 4:09 PM, Gautier Begin <gbegin at csc.com> wrote:
Hello,
CFT (Cross File Transfert) is a file transfer solution widespreed used in financial institutions. It currently belongs to AXWAY: http://en.wikipedia.org/wiki/Cross_File_Transfer
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
From: "Dave Overton" <dave at syix.com> To: <xymon at xymon.com> Date: 04/21/2015 03:45 AM Subject: Re: [Xymon] CFT Sent by: "Xymon" <xymon-bounces at xymon.com>
My google-fu says "combat fitness test"... Betting that's wrong.
Please do share, what is CFT in your world?
From: Xymon [mailto:xymon-bounces at xymon.com] On Behalf Of Galen Johnson Sent: Monday, April 20, 2015 6:00 PM To: Gautier Begin Cc: xymon at xymon.com Subject: Re: [Xymon] CFT
Ok...I'm going to show my ignorance here but what is "CFT"?
=G=
On Mon, Apr 20, 2015 at 9:21 AM, Gautier Begin <gbegin at csc.com> wrote: Hello,
Does any of you know how to monitor CFT using XYMON ?
Cordialement, Regards,Mit freundlichen Grüßen,
Gautier BEGIN
Global Service Support Solutions - Tools Support CACEIS and APERAM accounts CSC Computer Sciences Luxembourg S.A. 12D Impasse Drosbach L-1882 Luxembourg
Global Outsourcing Service | p:+352 24 834 276 | m:+352 621 229 172 | gbegin at csc.com | www.csc.com
CSC • This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose • CSC Computer Sciences SAS • Registered Office: Immeuble Le Balzac, 10 Place des Vosges, 92072 Paris La Défense Cedex, France • Registered in France: RCS Nanterre B 315 268 664
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Xymon mailing list Xymon at xymon.com http://lists.xymon.com/mailman/listinfo/xymon
Bruce White Senior Enterprise Systems Engineer | Phone: 1-630-671-5169 | bewhite at fellowes.com | www.fellowes.com
Disclaimer: The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. Fellowes, Inc
participants (9)
-
bewhite@fellowes.com
-
colin.coe@gmail.com
-
dave@syix.com
-
gbegin@csc.com
-
jlaidman@rebel-it.com.au
-
mailinglists@websitemanagers.com.au
-
ralphmitchell@gmail.com
-
solitaryr@gmail.com
-
Wim.Nelis@nlr.nl