Bonjour,

J'utilise un script en perl via CACTI qui me permet de faire remonter des informations sur mes erreurs IIS : 401(Non Autorisée), 404, 414(Non trouvée), 503(Rejetée), 500(Time Out) etc.

Ces infos ne peuvent être récupérées que par WMI car le protocole SNMP ne permet pas de le faire.

J'utilise ce script :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
 
#!/usr/bin/perl 
use strict;
use Win32::OLE;
 
my $output_delimeter = " ";
my $argCount = scalar(@ARGV);
 
my $Win32_Class = "Win32_PerfRawData_ASPNET_2050727_ASPNETAppsv2050727 ";
 
#Display help if
if ($argCount == 0) {
 
my @script_name = split m!\\!, $0;
 
print <<"END";
Display information in the $Win32_Class class of a computer using Windows Management Instrumentation (WMI).
 
(The user account running this script must have access to the WMI repository of the target host.)
 
$script_name[((scalar(@script_name)) - 1)] computer action rvalue instance 
 
Parameters:
 
   computer    - the name of the computer to query
   action      - index, query, get or browse
                 Note: browse will return all of the properties in this class.
   rvalue      - the value or values you want back
                 (CurrentConnections,BytesReceivedPersec,BytesSentPersec,BytesTotalPersec)
   instance    - the instance you want the information about
                 (_Total)
 
If a comma separated list of rvalues is passed to this script, the results will be returned space delimited.
 
Consult the Microsoft WMI documentation for more information about Windows Management Instrumentation.
http://msdn.microsoft.com/library/en-us/wmisdk/wmi/wmi_start_page.asp
 
Example:
 
   $script_name[((scalar(@script_name)) - 1)] localhost index
   $script_name[((scalar(@script_name)) - 1)] localhost browse
   $script_name[((scalar(@script_name)) - 1)] localhost get CurrentConnections _Total
   $script_name[((scalar(@script_name)) - 1)] localhost get CurrentAnonymousUsers,CurrentNonAnonymousUsers _Total
 
END
 
	exit;
}
 
 
#Parse through the command-line arguments and display the WMI information.
 
 WMIMain(@ARGV);
 
 
sub	WMIMain(\@) {
 
	my $computer  = $_[0];
	my $action    = $_[1];
	my $rvalue    = $_[2];
	my $kvalue    = $_[3];
 
	my $WMI_Key     = "Name";
 
#Old code commented
#	my $class = "WinMgmts://$computer";
#	my $wmi = Win32::OLE->GetObject($class);
 
 
#New code here
	my $wmipath  = "root\\cimv2";
	my $user     = "****";
	my $pwd      = '****';
 
	my $wmiwebloc = Win32::OLE->new('WbemScripting.SWbemLocator') ||
		     die "Cannot access WMI on local machine: ", Win32::OLE->LastError; 
	my $wmi = $wmiwebloc->ConnectServer($computer,$wmipath,$user,$pwd);
#Upto here
 
 
	my $i = 0;
 
	if ($wmi) {
 
		if ($action eq "index") {
 
 
			my $properties = "$WMI_Key";
			my $computers = $wmi->ExecQuery("SELECT $properties FROM $Win32_Class");
 
 
			if (scalar(Win32::OLE::in($computers)) lt "1") {
				print "\n    Check the computer and class name.\n";
				print   "    No information was found on the specified class!\n";
				return;
			}
 
			foreach my $pc (Win32::OLE::in($computers)) {
 
				$i++;
 
				properties($pc,$properties);
 
				if ($i < scalar(Win32::OLE::in($computers))) {
 
					print "\n";
 
				}
			}
 
 
		} # if action = index
 
 
		if ($action eq "query") {
 
			my $properties = "$WMI_Key,$rvalue";
			my $computers = $wmi->ExecQuery("SELECT $properties FROM $Win32_Class");
 
 
			if (scalar(Win32::OLE::in($computers)) lt "1") {
				print "\n    Check the computer and class name.\n";
				print   "    No information was found on the specified class!\n";
				return;
			}
 
			foreach my $pc (Win32::OLE::in($computers)) {
 
				$i++;
 
				properties($pc,$properties);
 
				if ($i < scalar(Win32::OLE::in($computers))) {
 
					print "\n";
 
				}
			}
 
		} # if action = query
 
		if ($action eq "get") {
 
 
			my $properties = $rvalue;
			my $computers = $wmi->ExecQuery("SELECT $properties FROM $Win32_Class Where $WMI_Key='$kvalue'");
 
 
			if (scalar(Win32::OLE::in($computers)) lt "1") {
				print "\n    Check the computer and class name.\n";
				print   "    No information was found on the specified class!\n";
				return;
			}
 
 
			foreach my $pc (Win32::OLE::in($computers)) {
				properties($pc,$properties);
 
			}
 
		} # if action = get
 
		if ($action eq "browse") {
 
 
			my $properties = "*";
			my $computers = $wmi->ExecQuery("SELECT $properties FROM $Win32_Class");
 
 
			if (scalar(Win32::OLE::in($computers)) lt "1") {
				print "\n    Check the computer and class name.\n";
				print   "    No information was found on the specified class!\n";
				return;
			}
 
			foreach my $pc (Win32::OLE::in($computers)) {
 
				$i++;
 
				properties($pc,$properties);
 
				if ($i < scalar(Win32::OLE::in($computers))) {
 
					print "\n";
 
				}
			}
 
 
		} # if action = browse
 
 
	} # if wmi
 
 
	else {
		print "Unable to talk to WMI for $computer.\n";
	}
 
}
 
#Loop through an object's properties.
#Parameters:
#	0 - a reference to the object
#	1 - a single property to lookup
 
sub	properties($$) {
	my $node = $_[0];
	my $properties = $_[1];
	my $i = 0;
 
	if ($properties eq '*') {
		foreach ( Win32::OLE::in($node->{Properties_}) ) {
			viewPropertyBrowse($_);
			print "\n";
 
		}
	}
 
	else {
 
 
	my @properties = split(',', $properties);
 
	foreach (@properties) {
 
		$i++;
 
		if (scalar(@properties) eq "1") {
 
			viewProperty($node->{Properties_}->{$_});
 
		}
 
                elsif (scalar(@properties) gt "1") {
 
 
			viewPropertyMulti($node->{Properties_}->{$_});
 
			if ((scalar(@properties) gt "1") & $i lt (scalar(@properties))) {
				print "$output_delimeter";
			}
		}
	}
	}	
 
}
 
 
#Display an object's property.
#Parameters:
#	0 - a reference to the property object
 
sub viewProperty($$) {
	my $object = $_[0];
 
		chomp ($object->{Value});
		print "$object->{Value}";
 
}
 
 
sub viewPropertyMulti($$) { 
   my $object = $_[0]; 
 
      chomp ($object->{Value}); 
      print "$object->{Name}:$object->{Value}";
#      print "$object->{Name}:".1024*$object->{Value}.""; 
 
} 
 
sub viewPropertyBrowse($$) { 
   my $object = $_[0]; 
 
      chomp ($object->{Value}); 
      print "$object->{Name}:$object->{Value}";
#      print "$object->{Name}:".1024*$object->{Value}.""; 
 
} 
 
#sub viewPropertyMulti($$) {
#	my $object = $_[0];
#
#		chomp ($object->{Value});
#		print "$object->{Name}:$object->{Value}";
#}
 
#sub viewPropertyBrowse($$) {
#	my $object = $_[0];
#
#		chomp ($object->{Value});
#		print "$object->{Name}:$object->{Value}";
#}
Source du script :
Ici

Pour finir ce script fonctionne très bien sous Windows 2003 mais je n'arrive pas à le faire fonctionner sous 2008, aucune information ne remonte dans mes graphs....

Si quelqu'un a une idée,

Merci d'avance,

Nortuas