Sponsored Content
Special Forums UNIX and Linux Applications Infrastructure Monitoring Cutting edge IT software - what's out there and what do you use Post 302406340 by rhfrommn on Monday 22nd of March 2010 03:37:46 PM
Old 03-22-2010
Check out Splunk. Not free, but very, very good. Easy to use and implement, and tons of features - very powerful.
 

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Dealing with edge-list

I have an edge-list with nodes, edge.txt A B B J J H C A G H G A A C K G I have another file which tells me which of these nodes are important, input.txt G C A (3 Replies)
Discussion started by: Sanchari
3 Replies

2. Web Development

Set Edge Compatibility Mode for IE

hi i have code in iplanet webserver in obj.conf file <If $uri !~'^/app/literature/item/(.*)'> AuthTrans fn="set-variable" insert-srvhdrs="X-UA-Compatible:IE=EmulateIE8" </If> i want to migrate it to apache webserver need your help to replace the above code for apache webserver. i... (0 Replies)
Discussion started by: raghur77
0 Replies

3. Shell Programming and Scripting

Comparing two edge list

Hello, I have two network edgelists with first two columns as nodes and the last column pearson correlation coefficient (PCC). I want to remove the edges from net1 whose edges are common with net2 && (PCC)net2>=(PCC)net1 net1.txt A B 0.6 A C 0.7 B C 0.7 D C ... (1 Reply)
Discussion started by: Sanchari
1 Replies
MooseX::Types::DateTime::MoreCoercions(3pm)		User Contributed Perl Documentation	       MooseX::Types::DateTime::MoreCoercions(3pm)

NAME
MooseX::Types::DateTime::MoreCoercions - Extensions to MooseX::Types::DateTime SYNOPSIS
package MyApp::MyClass; use MooseX::Types::DateTime::MoreCoercions qw( DateTime ); has created => ( isa => DateTime, is => "rw", coerce => 1, ); my $instance = MyApp::MyClass->new(created=>'January 1, 1980'); print $instance->created->year; # is 1980 ## Coercions from the base type continue to work as normal. my $instance = MyApp::MyClass->new(created=>{year=>2000,month=>1,day=>10}); Please see the test case for more example usage. DESCRIPTION
This module builds on MooseX::Types::DateTime to add additional custom types and coercions. Since it builds on an existing type, all coercions and constraints are inherited. SUBTYPES
This module defines the following additional subtypes. DateTime Subtype of "DateTime" in MooseX::Types::DateTime. Adds an additional coercion from strings. Uses DateTimeX::Easy to try and convert strings, like "yesterday" into a valid DateTime object. Please note that due to ambiguity with how different systems might localize their timezone, string parsing may not always return the most expected value. IN general we try to localize to UTC whenever possible. Feedback welcomed! Duration Subtype of "Duration" in MooseX::Types::DateTime that coerces from a string. We use the module Time::Duration::Parse to attempt this. CAVEATS
Firstly, this module uses DateTimeX::Easy which is way to more DWIM than any sane person would desire. DateTimeX::Easy works by falling back until something makes sense, this is variable. Furthermore, all the modules that DateTimeX::Easy *can* use aren't required for "proper" function of DateTimeX::Easy. What does this mean? Simple, your mileage may vary in your coercions because DateTimeX::Easy is installation specific. SEE ALSO
o MooseX::Types::DateTime Replacement for this module -- coercions with less voodoo o DateTimeX::Easy Backend of this module o Time::Duration::Parse Duration parsing backend for this module AUTHOR
John Napiorkowski <jjn1056 at yahoo.com> Broken into a separate package from MooseX::Types::DateTime by Evan Carroll. Forked from MooseX::Types::DateTimeX and ported back to use MooseX::Types::DateTime by Dagfinn Ilmari Mannsaaker <ilmari@ilmari.org>. LICENSE
Copyright (c) 2008 John Napiorkowski. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-03-06 MooseX::Types::DateTime::MoreCoercions(3pm)
All times are GMT -4. The time now is 09:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy