Bugzilla status of the day - bugzilla

I am using Bugzilla version 4.2 . When you use search engine you can check today's status of each bug in chosen product. But it's for today. I am trying to use advanced search to see the same status for different previous days. How can i achieve that? To see the list of tickets and their status for the chosen day from the past?

I'm using version 5.0.2.
You can use the advance search option to achieve this. Please see the picture.
enter image description here

Related

exporting the experiment/simulation screen with PLE possible?

so i made the model for my thesis and like to share it with my prof. over the anylogic cloud. Unfortunatelly when i try to export the model it shows:
"Model parameter values overridden by experiment 'Simulation' will not be used; default values will be exported."
and it will not show the simulation screen in the cloud version. Is this because i use the PLE, if no: how can i improve my export?
i already tried the documentation and various google searches, but i was not able to find anything useful.
Thank you in advance! :)
There is no simulation screen in the cloud. This is independent of your version.
Learn how to create simulation-setups in the cloud by checking the "Run configuration" part of your model before uploading to the cloud. Also check the help on that and example models (those uploaded by AnyLogic to the cloud and that you find matched in the AnyLogic example library).

Finding a PEiD database

Where can I get the latest version of the PEiD database? I know that one version is available in github (https://raw.githubusercontent.com/guelfoweb/peframe/5beta/peframe/signatures/userdb.txt), but it is more than one year old and it has approximately 4000 signatures.
If you're looking for the database to use in yara, There's a yara-rules github page here that has a lot of preexisting rules and seems to be quite up to date. hope this helps!

Google Analytics doesn't work for 'today'

I have been using Google Analytics for some time now but it doesn't work for today (it tells me how many views I had yesterday and this month et cetera but it won't show me what the statistics for today are). I have been experimenting with my HTML code but I don't know if I made a mistake doing that. I am using the 'official' tracking code my Google Analytics account gives me.
I hope somebody'll be able to help me.
My website is www.lemontierres.com
Friendly regards
Statistics and reports for the current day are delayed in Analytics. It is not real time.

Multiple Brands Versions Management with Jira

Our firm provide a web based product which is deployed onto multiple brands (customers) in a different data centers. Due to regulation concern we cannot multi-tenant architecture with our services.
Our code base is identical for all brands and we deploy each version to all brands in a lag of few hours up to a week (i.e we may deploy version V to brand A at 8:00AM, to brand B at 10:00AM and to brand C a week later).
We use Jira OnDemand as our task management system. The problem I'm trying to solve is that Jira supports only one release date for a version but since we release each version multiple times we should know somehow what date each version was release on (besides of course using a spreadsheet).
I appreciate any idea that can make my life easier.
Thanks,
Gil
I would start by imagining how you would do it with a spreadsheet. For the same version name V you would have a column named something like "Deployment Date and Time". I'd do the same in JIRA - create a custom Date and Time picker field and when a specific customer is updated, set the custom field to the date and time.
I'd try to create multiple versions for the different brands and have those multiple versions assigned to a single Jira item. The versions can then be released independently. So for example my version list would look like this:
Brand1-0.9
Brand1-1.0
Brand2-0.9
Brand2-1.0
Brand3-0.9
Brand3-1.0
This is a bit of effort, but I think it should solve your problem. It would also keep you flexible, different release dates for different brands are no problem this way.

Bugzilla Reporting

Is there a really good free tool for BugZilla reporting? I am finding the default search options on the web interface far too limiting. My biggest issue is with the lack of Order By options (only 1 field at a time, and a very limited set of fields to choose from). I have done some Google searches, but I can't find any good free BugZilla reporting tools.
If there isn't one, can someone please point me to an example on how to access the BugZilla web services? If I can get the BugZilla data, then I can easily build my own reports that will better meet our needs.
Take a look at this: http://www.faqs.org/docs/bugzilla/dbdoc.html
Use this database schema for reference: faqs.org/docs/bugzilla/dbschema.html
If you need a web-interface, use your favorite dynamic website scripting language that can access MySQL databases (say PHP)...
Simple-ish Tutorial: freewebmasterhelp.com/tutorials/phpmysql/4
PHP MySQL API Reference: php.net/manual/en/ref.mysql.php
Then use SQL queries such as:
"SELECT * FROM bugs WHERE WHERE bug_status != 'RESOLVED' ORDER BY creation_ts ASC, votes DESC LIMIT 50"
which lists first 50 entries of unresolved bugs ordered first ascending creation time then descending by number of votes.
I have used this in the past and have liked it a lot: http://www.mediawiki.org/wiki/Extension:Bugzilla_Reports
You can also consider other tool eg mantis
(http://www.mantisbt.org/)
I've personally switched from Bugzilla into Mantis and installed some plugins (http://deboutv.free.fr/mantis/) and found this more comfortable
If you are a Java user, you might want to check out Mylyn for eclipse. This is integrates a task-driven development approach into eclipse.
With that, you can raise bugs, tie together SVN changes and bugs, and hide classes that are not relevant to fixing bugs, etc. It's a bit involved to get started with, but quite powerful.
It also comes with a connector for BugZilla. See this introductory article for an example.
If you don't use eclipse, but you do use Java, then note that since Mylyn is open-source, you might want to look at the source code of the Mylyn BugZilla connector for how they do their work.
Good luck.
You can try Deskzilla (http://deskzilla.com/) - it is a multi-platform desktop client for Bugzilla with Outlook-like interface, rich reporting and filtering capabilities, offline work, drag-n-drop, etc. It's a commercial product, but if you're working on an Open Source project you can use it for free.
AFAIK Bugzilla uses MySQL database for storing data. So probably you can connect with some visual db manager (plenty of it exists, see Toad Data Modeler, DbVisualizer) and try do do some sql work...
There is a list of some add-ons (free and commercial) listed on the Buzilla addons wiki.
If you are a Windows user, MyZilla is a possible option.
Otherwise, to work toward your own, see the Bugzilla API documentation, which, in a way, includes how to retrieve the current schema (Bugzilla::DB::Schema), and Bugzilla::WebService.
Netbeans also has Bugzilla integration (I haven't tried it...).
I have analized a bunch of bug tracking tools.
You can try track or mantis, because bugzilla is very unfriendly about reporting.
Mantis
Mantis can export data in excel: all the graphic you need can be generated by that sheet.
For more information take a look to my blog:
http://gioorgi.com/2008/bug-tracking-mantis/
Anyway, Track is used a lot more, so for sake of completeness I should cite it:
Track
Pros:
Can Also work with an embedded database (using sqlite).
Easy to setup and use.
Cons:
Feature are too much, and aims to be also a CMS to some extend.
Take a look to:
http://gioorgi.com/2008/bug-tracking-trac/
Since Bugzilla can be installed on your own server, I presume the simplest way is to do that and play with the databases it creates ("Bugzilla supports MySQL, PostgreSQL and Oracle as database servers"). The documentation also says you can modify the templates as you like.
Otherwise one could try paid support or some other bug trackers.
I use this bookmarklet and like how it searches right with the strings entered in the location bar like smart search. It lets you quickly search bugzilla or jump to a bug number via Bugzilla Quicksearch, and is IE6+, Moz, Op7+ compatible.
Its companions on the same page can be used to refine or help with bug search/report, e.g. collect buglinks (queries bugzilla to show a list of bugs linked to from the current page),ord buglinkify (turns all numbers on the page into bug links).

Resources