From marco.davids at sidn.nl Wed Nov 3 16:21:41 2010 From: marco.davids at sidn.nl (Marco Davids (SIDN)) Date: Wed, 3 Nov 2010 17:21:41 +0100 Subject: [dsc] question about dnssec_qtypes in plot.pm Message-ID: <4CD18C15.8000500@sidn.nl> Hi, In 'plot.pm' it says: dnssec_qtype => { dataset => 'qtype', For us that turned out to be a problem, because there is no DNSSEC data in 'qtype.dat'. At least not any more. Perhaps it used to be there in the past, when we where still running an older version of DSC? In any case, we had to make a little change in plot.pm to make things work again: dnssec_qtype => { dataset => 'dnssec_qtype', Does this sound familiar? I checked an older version of DSC that I have running at home, and DNSSEC qtype-data does end up there in two places: qtype.dat and dnssec_qtype.dat. Therefore, the the problem of empty DNSSEC Qtype graphs does not occur there. Regards, -- Marco Davids SIDN From marco.davids at sidn.nl Wed Nov 3 16:36:08 2010 From: marco.davids at sidn.nl (Marco Davids (SIDN)) Date: Wed, 3 Nov 2010 17:36:08 +0100 Subject: [dsc] question about dnssec_qtypes in plot.pm In-Reply-To: <4CD18C15.8000500@sidn.nl> References: <4CD18C15.8000500@sidn.nl> Message-ID: <4CD18F78.9010909@sidn.nl> On 11/03/10 17:21, Marco Davids (SIDN) wrote: > dnssec_qtype => { > dataset => 'dnssec_qtype', > > Does this sound familiar? > > I checked an older version of DSC that I have running at home, and > DNSSEC qtype-data does end up there in two places: qtype.dat and > dnssec_qtype.dat. Mmmm, maybe not - I misinterpreted the .dat file I suppose. Probably wishful thinking... In any case the described change is not applied there, and things still work fine. Makes me wonder even more why we had to modify 'plot.pm' on the newer system to make it work there. -- Marco From wessels at measurement-factory.com Thu Nov 4 22:45:42 2010 From: wessels at measurement-factory.com (Duane Wessels) Date: Thu, 4 Nov 2010 16:45:42 -0600 (MDT) Subject: [dsc] question about dnssec_qtypes in plot.pm In-Reply-To: <4CD18F78.9010909@sidn.nl> References: <4CD18C15.8000500@sidn.nl> <4CD18F78.9010909@sidn.nl> Message-ID: On Wed, 3 Nov 2010, Marco Davids (SIDN) wrote: > On 11/03/10 17:21, Marco Davids (SIDN) wrote: > >> dnssec_qtype => { >> dataset => 'dnssec_qtype', >> >> Does this sound familiar? >> >> I checked an older version of DSC that I have running at home, and >> DNSSEC qtype-data does end up there in two places: qtype.dat and >> dnssec_qtype.dat. > > Mmmm, maybe not - I misinterpreted the .dat file I suppose. Probably > wishful thinking... In any case the described change is not applied > there, and things still work fine. Makes me wonder even more why we had > to modify 'plot.pm' on the newer system to make it work there. Hi Marco, Looks like there is a bug and your first message was correct. In fact the "dataset" line should be removed from the dnssec_qtype block because the data should be found in dnssec_qtype.dat (it has the same name as the plot). If you don't have a dnssec_qtype.dat file, then it sounds like something is out-of-date in the extractor code. The file perllib/DSC/extractor/config.pm should look like this: %DATASETS = ( qtype => { ndim => 1, type1 => 'Qtype', outputs => { qtype => { keys => [ qw(1 2 5 6 12 15 28 33 38 255 else) ], data_munger => \&main::munge_elsify, data_reader => \&DSC::extractor::read_data, data_merger => \&main::merge_trace, data_writer => \&DSC::extractor::write_data, }, dnssec_qtype => { keys => [ qw(24 25 30 43 46 47 50 48) ], data_munger => \&main::munge_elsify, data_reader => \&DSC::extractor::read_data, data_merger => \&main::merge_trace, data_writer => \&DSC::extractor::write_data, }, }, }, (yours may be missing "50" in the keys list because I just added it) The above tells the extractor code to write a dnssec_qtype.dat file containing the keys (query types) given in that list. Duane W. From mh+dsc at zugschlus.de Wed Nov 17 11:34:30 2010 From: mh+dsc at zugschlus.de (Marc Haber) Date: Wed, 17 Nov 2010 12:34:30 +0100 Subject: [dsc] Notes from DSC workshop In-Reply-To: References: <99E7B887-3F77-4DBF-9D07-2D0E8D4AD47A@knig.ht> Message-ID: <20101117113430.GI3306@torres.zugschlus.de> On Mon, Oct 25, 2010 at 01:53:02PM -0600, Duane Wessels wrote: > sigh. I've posted them here: > > http://dns.measurement-factory.com/tools/dsc/download/dsc-future.pdf Thanks, insightful. Appreciated. Greetings Marc -- ----------------------------------------------------------------------------- Marc Haber | "I don't trust Computers. They | Mailadresse im Header Mannheim, Germany | lose things." Winona Ryder | Fon: *49 621 72739834 Nordisch by Nature | How to make an American Quilt | Fax: *49 3221 2323190 From mh+dsc at zugschlus.de Wed Nov 17 11:40:10 2010 From: mh+dsc at zugschlus.de (Marc Haber) Date: Wed, 17 Nov 2010 12:40:10 +0100 Subject: [dsc] Debian packages for dsc (was: dsc wishlist for building a Debian package) In-Reply-To: <20101019114653.GC26905@torres.zugschlus.de> References: <20101004131640.GP1233@torres.zugschlus.de> <20101019114653.GC26905@torres.zugschlus.de> Message-ID: <20101117114010.GJ3306@torres.zugschlus.de> Hi On Tue, Oct 19, 2010 at 01:46:53PM +0200, Marc Haber wrote: > On Mon, Oct 18, 2010 at 05:05:22PM -0600, Duane Wessels wrote: > > On Mon, 4 Oct 2010, Marc Haber wrote: > >> I am currently trying to package up dsc for Debian as package > >> dsc-statistics (see also http://bugs.debian.org/505405). In the course > >> of preparing the package, I have discovered several issues, which may > >> be worth fixing in dsc itself. > > > > Hi Marc, > > > > thanks for the report on DSC's un-debianness. > > > > I'm happy to take a look at your patches and suggestions. > > I will publish them in git in a few days of time and give you a heads-up. I have pushed to Debian git today, see https://alioth.debian.org/scm/browser.php?group_id=100554 git clone https://alioth.debian.org/anonscm/git/dsc/dsc.git The packaging uses quilt, so you should be able to see all patches that are applicable to upstream dsc in debian/patches/ I'll appreciate feedback and/or comments. Greetings Marc -- ----------------------------------------------------------------------------- Marc Haber | "I don't trust Computers. They | Mailadresse im Header Mannheim, Germany | lose things." Winona Ryder | Fon: *49 621 72739834 Nordisch by Nature | How to make an American Quilt | Fax: *49 3221 2323190 From zhanglin3972 at gmail.com Sat Nov 27 07:51:04 2010 From: zhanglin3972 at gmail.com (zhanglin3972) Date: Sat, 27 Nov 2010 15:51:04 +0800 Subject: [dsc] space and dot in third_ld_vs_rcode array Message-ID: <201011271550563995094@gmail.com> Hi, Today I saw dot and space in third_ld_vs_rcode array. Is this normal? What's that mean? The version I downlaod is dsc-200901261740.tar.gz . I extract the third_ld_vs_rcode array here. Thanks, Lean 2010-11-27 zhanglin3972 From catalinl at rotld.ro Sun Nov 28 22:49:06 2010 From: catalinl at rotld.ro (Catalin Leanca) Date: Mon, 29 Nov 2010 00:49:06 +0200 Subject: [dsc] Problem with generated graphs (4 hour time scale) Message-ID: <4CF2DC62.9090207@rotld.ro> Hello, My installation of DSC is on CentOS 5.5 (latest dsc and latest patched ploticus). I have a problem with 4 hour time scale graphs. They show discrete lines. (spaces between vertical lines) I have attached a sample picture to this email. Thanks, Catalin L. From catalinl at rotld.ro Sun Nov 28 23:24:28 2010 From: catalinl at rotld.ro (Catalin Leanca) Date: Mon, 29 Nov 2010 01:24:28 +0200 Subject: [dsc] Fwd: Problem with generated graphs (4 hour time scale) Message-ID: <4CF2E4AC.9070905@rotld.ro> I changed the time scale from config to other intervals and the problem persist until 12 hour interval is selected. Attached is 5 hour time scale example. -------- Original Message -------- Subject: Problem with generated graphs (4 hour time scale) Date: Mon, 29 Nov 2010 00:49:06 +0200 From: Catalin Leanca To: dsc at measurement-factory.com Hello, My installation of DSC is on CentOS 5.5 (latest dsc and latest patched ploticus). I have a problem with 4 hour time scale graphs. They show discrete lines. (spaces between vertical lines) I have attached a sample picture to this email. Thanks, Catalin L. From mehmet at akcin.net Mon Nov 29 01:44:55 2010 From: mehmet at akcin.net (Mehmet Akcin) Date: Sun, 28 Nov 2010 17:44:55 -0800 Subject: [dsc] Problem with generated graphs (4 hour time scale) In-Reply-To: <4CF2DC62.9090207@rotld.ro> References: <4CF2DC62.9090207@rotld.ro> Message-ID: Hi Catalin I don't see the attachment. can you try to send it again? mehmet On Nov 28, 2010, at 2:49 PM, Catalin Leanca wrote: > Hello, > > My installation of DSC is on CentOS 5.5 (latest dsc and latest patched ploticus). > I have a problem with 4 hour time scale graphs. > They show discrete lines. (spaces between vertical lines) > I have attached a sample picture to this email. > > Thanks, > Catalin L. > > _______________________________________________ > dsc mailing list > dsc at measurement-factory.com > http://www.measurement-factory.com/mailman/listinfo/dsc From mehmet at akcin.net Mon Nov 29 08:44:35 2010 From: mehmet at akcin.net (Mehmet Akcin) Date: Mon, 29 Nov 2010 00:44:35 -0800 Subject: [dsc] Fwd: Problem with generated graphs (4 hour time scale) In-Reply-To: <4CF2E4AC.9070905@rotld.ro> References: <4CF2E4AC.9070905@rotld.ro> Message-ID: <90317BF8-116D-4840-BB9A-90B47922E07B@akcin.net> ok.. It seems like Ploticus issue to me. what version are you running? mehmet On Nov 28, 2010, at 3:24 PM, Catalin Leanca wrote: > I changed the time scale from config to other intervals and the problem persist > until 12 hour interval is selected. > Attached is 5 hour time scale example. > > -------- Original Message -------- > Subject: Problem with generated graphs (4 hour time scale) > Date: Mon, 29 Nov 2010 00:49:06 +0200 > From: Catalin Leanca > To: dsc at measurement-factory.com > > > > Hello, > > My installation of DSC is on CentOS 5.5 (latest dsc and latest patched > ploticus). > I have a problem with 4 hour time scale graphs. > They show discrete lines. (spaces between vertical lines) > I have attached a sample picture to this email. > > Thanks, > Catalin L. > > > > _______________________________________________ > dsc mailing list > dsc at measurement-factory.com > http://www.measurement-factory.com/mailman/listinfo/dsc From catalinl at rotld.ro Mon Nov 29 10:10:23 2010 From: catalinl at rotld.ro (Catalin Leanca) Date: Mon, 29 Nov 2010 12:10:23 +0200 Subject: [dsc] Fwd: Problem with generated graphs (4 hour time scale) Message-ID: <4CF37C0F.8050201@rotld.ro> I use ploticus 2.41 with latest bug fixes applied. ( http://ploticus.sourceforge.net/doc/news.html ) On 11/29/10 10:44 AM, Mehmet Akcin wrote: > ok.. > > It seems like Ploticus issue to me. > > what version are you running? > > mehmet > > On Nov 28, 2010, at 3:24 PM, Catalin Leanca wrote: > >> I changed the time scale from config to other intervals and the problem persist >> until 12 hour interval is selected. >> Attached is 5 hour time scale example. >> >> -------- Original Message -------- >> Subject: Problem with generated graphs (4 hour time scale) >> Date: Mon, 29 Nov 2010 00:49:06 +0200 >> From: Catalin Leanca >> To: dsc at measurement-factory.com >> >> >> >> Hello, >> >> My installation of DSC is on CentOS 5.5 (latest dsc and latest patched >> ploticus). >> I have a problem with 4 hour time scale graphs. >> They show discrete lines. (spaces between vertical lines) >> I have attached a sample picture to this email. >> >> Thanks, >> Catalin L. >> >> >> >> _______________________________________________ >> dsc mailing list >> dsc at measurement-factory.com >> http://www.measurement-factory.com/mailman/listinfo/dsc > From wessels at measurement-factory.com Tue Nov 30 01:03:22 2010 From: wessels at measurement-factory.com (Duane Wessels) Date: Mon, 29 Nov 2010 18:03:22 -0700 (MST) Subject: [dsc] Problem with generated graphs (4 hour time scale) In-Reply-To: <4CF2DC62.9090207@rotld.ro> References: <4CF2DC62.9090207@rotld.ro> Message-ID: On Mon, 29 Nov 2010, Catalin Leanca wrote: > Hello, > > My installation of DSC is on CentOS 5.5 (latest dsc and latest patched > ploticus). > I have a problem with 4 hour time scale graphs. > They show discrete lines. (spaces between vertical lines) Hi Catalin, The funny looking graphs happen because of some changes to ploticus between version 2.40 and 2.41. If you can get 2.40 installed I think you'll find the graphs look "normal." Meanwhile I'll try to find out how to make them look normal again with the most recent version > I have attached a sample picture to this email. Sorry I guess mailman is configured to strip out the attachments. DW From catalinl at rotld.ro Tue Nov 30 07:25:44 2010 From: catalinl at rotld.ro (Catalin Leanca) Date: Tue, 30 Nov 2010 09:25:44 +0200 Subject: [dsc] Problem with generated graphs (4 hour time scale) In-Reply-To: References: <4CF2DC62.9090207@rotld.ro> Message-ID: <4CF4A6F8.8000204@rotld.ro> Downgrading to ploticus 2.40 fixed the graphs. Thanks ! On 11/30/10 3:03 AM, Duane Wessels wrote: > > > > On Mon, 29 Nov 2010, Catalin Leanca wrote: > >> Hello, >> >> My installation of DSC is on CentOS 5.5 (latest dsc and latest >> patched ploticus). >> I have a problem with 4 hour time scale graphs. >> They show discrete lines. (spaces between vertical lines) > > Hi Catalin, > > The funny looking graphs happen because of some changes to ploticus > between version 2.40 and 2.41. If you can get 2.40 installed > I think you'll find the graphs look "normal." > > Meanwhile I'll try to find out how to make them look normal > again with the most recent version > >> I have attached a sample picture to this email. > > Sorry I guess mailman is configured to strip out the attachments. > > DW > From ondrej.sury at nic.cz Tue Nov 30 09:56:01 2010 From: ondrej.sury at nic.cz (=?UTF-8?B?T25kxZllaiBTdXLDvQ==?=) Date: Tue, 30 Nov 2010 10:56:01 +0100 Subject: [dsc] DNS Traffic Archive Protocol Message-ID: <4CF4CA31.1000002@nic.cz> Hi, we are building a DNS archivation protocol to reduce the size of raw dnscap/pcap packets. Since we are going to opensource that, I wonder whether there is an interest for defining the properties of such protocol, ie. what to store and what not, etc. We will then use this to store all the traffic on the authoritative servers for .CZ on a long term basic (possibly never delete the data). The idea is that we could possibly feed this to DSC if there is a need for a new aggregated statistics. Also a tool to convert the "compressed" data to pcap format so it can be fed to other tools will be prepared. I'll prepare short summary of what we have to the date if there is an interest to discuss it further. Ondrej -- Ond?ej Sur? vedouc? v?zkumu/Head of R&D department ------------------------------------------- CZ.NIC, z.s.p.o. -- Laborato?e CZ.NIC Americka 23, 120 00 Praha 2, Czech Republic mailto:ondrej.sury at nic.cz http://nic.cz/ tel:+420.222745110 fax:+420.222745112 ------------------------------------------- From martin at och.cz Tue Nov 30 16:01:40 2010 From: martin at och.cz (Martin Och) Date: Tue, 30 Nov 2010 17:01:40 +0100 (CET) Subject: [dsc] Bad legends In-Reply-To: <146415878.1944.1291132828854.JavaMail.root@zim1.3hosting.cz> Message-ID: <6928261.1946.1291132900672.JavaMail.root@zim1.3hosting.cz> Hi there, today i finished instalation and configuration of DSC. Everything looks good, but in some graphs are bad readable legends, for example Qtypes, Rcodes, Opcodes and more shows only colored lines, no text. Can anybody help me, please? I can send you screenshot if you wish, or access on my dsc web pages... Sincerely, -- Martin Och http://www.och.cz http://www.3foto.cz From wessels at measurement-factory.com Tue Nov 30 18:28:49 2010 From: wessels at measurement-factory.com (Duane Wessels) Date: Tue, 30 Nov 2010 11:28:49 -0700 (MST) Subject: [dsc] Bad legends In-Reply-To: <6928261.1946.1291132900672.JavaMail.root@zim1.3hosting.cz> References: <6928261.1946.1291132900672.JavaMail.root@zim1.3hosting.cz> Message-ID: On Tue, 30 Nov 2010, Martin Och wrote: > Hi there, > > today i finished instalation and configuration of DSC. > > Everything looks good, but in some graphs are bad readable legends, for example > Qtypes, Rcodes, Opcodes and more shows only colored lines, no text. > > Can anybody help me, please? I can send you screenshot if you wish, or access on my dsc web pages... Hi Martin, you can send a screenshot to me directly. Since I believe you just recently subscribed, you might have missed the recent discussion about how Ploticus version 2.40 looks a lot better than version 2.41. DW