SearchFAQMemberlist Log in
Reply to topic Page 1 of 1
Reporting question
Author Message
Post Reporting question 
I've never used the reporting features in Networker. And what I need,
should be relatively straightforward, but I can't see how to do it in the
NMC.

I need a listing of all my clients, showing what is being backed up, and
when. Ideally, I'd use this in a Word doc, as a table, or in a
spreadsheet.

I know I can do some manipulating of mminfo queries, to show all clients,
and all saveset names. But what I'd like is something that shows the
schedule that the group the client is in executes. For instance, "Client
1: saveset: ALL. Level: FULL: Schedule:name-of-schedule.

Anyway to get something like that? That isn't manual, I mean. I know I can
list clients, saveset names, and group names from mminfo, but there's no
way to get schedule info, is there?

--
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel: 215-684-4180
Cell: 215-252-0143
<mailto:michael.leone < at > pha.phila.gov>


via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

Post Reporting question 
Hi Michael:

I think the report you are looking for can be done by going to
Configuration and select Clients
That will give you a list of all your clients.
If you right click then on any of the table columns heading you will get
a context menu where you can choose additional columns for the table or
Export the table using different formats including .CSV
If you have the Schedule column selected it will be included on the
exported report.



Enrique Tamayo
Technical Specialist Enterprise Storage
Dept: D438 - Server Support
Great-West Life Assurance Co.
355 Portage Ave. Winnipeg, MB
Email: enrique.tamayo < at > gwl.ca
Phone: 1 204 924-2233


-----Original Message-----
From: EMC NetWorker discussion [mailto:NETWORKER < at > LISTSERV.TEMPLE.EDU] On
Behalf Of Michael Leone
Sent: Tuesday, August 31, 2010 1:33 PM
To: NETWORKER < at > LISTSERV.TEMPLE.EDU
Subject: [Networker] Reporting question


I've never used the reporting features in Networker. And what I need,
should be relatively straightforward, but I can't see how to do it in
the
NMC.

I need a listing of all my clients, showing what is being backed up, and

when. Ideally, I'd use this in a Word doc, as a table, or in a
spreadsheet.

I know I can do some manipulating of mminfo queries, to show all
clients,
and all saveset names. But what I'd like is something that shows the
schedule that the group the client is in executes. For instance, "Client

1: saveset: ALL. Level: FULL: Schedule:name-of-schedule.

Anyway to get something like that? That isn't manual, I mean. I know I
can
list clients, saveset names, and group names from mminfo, but there's no

way to get schedule info, is there?

--
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel: 215-684-4180
Cell: 215-252-0143
<mailto:michael.leone < at > pha.phila.gov>


type "signoff networker" in the body of the email. Please write to
networker-request < at > listserv.temple.edu if you have any problems with this
list. You can access the archives at
http://listserv.temple.edu/archives/networker.html or via RSS at
http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER


via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

Post Reporting question 
Michael,

I was going to suggest something like Enrique but the client listing doesn't have a column for last backup. But if you go to the Monitoring page and select groups you can list the groups in order by "Last Run". If you double click on a group it gives you details which include each individual saveset. You can copy & paste from there or as Enrique mentioned you can right click on the header and export it to a CSV. This doesn't give you everything in one report but at least you can do it group by group.

Dave

Dave Werth
Garmin AT, Inc.
Salem, Oregon
-----Original Message-----
From: EMC NetWorker discussion [mailto:NETWORKER < at > LISTSERV.TEMPLE.EDU] On Behalf Of Michael Leone
Sent: Tuesday, August 31, 2010 11:33 AM
To: NETWORKER < at > LISTSERV.TEMPLE.EDU
Subject: [Networker] Reporting question

I've never used the reporting features in Networker. And what I need,
should be relatively straightforward, but I can't see how to do it in the
NMC.

I need a listing of all my clients, showing what is being backed up, and
when. Ideally, I'd use this in a Word doc, as a table, or in a
spreadsheet.

I know I can do some manipulating of mminfo queries, to show all clients,
and all saveset names. But what I'd like is something that shows the
schedule that the group the client is in executes. For instance, "Client
1: saveset: ALL. Level: FULL: Schedule:name-of-schedule.

Anyway to get something like that? That isn't manual, I mean. I know I can
list clients, saveset names, and group names from mminfo, but there's no
way to get schedule info, is there?

--
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel: 215-684-4180
Cell: 215-252-0143
<mailto:michael.leone < at > pha.phila.gov>


via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies.

Thank you for your cooperation.


via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

Post Reporting question 
Hello;

If you need information of the networker configuration, you could use
nsradmin to optain that.

For example, if you need groups schedule, start time and if the groups
are disabel or not you could do, in Linux server:

create a file, example.txt with the query:

show name; schedule; start time; autostart
print NSR group

and use nsadmin comand:
# nsradmin -i example.txt
name: LGUX32_DIARIO_RA_1;
autostart: Enabled;
start time: "2:30";
schedule: SB_DISCO_DIARIO_NOCHE_SCHEDULE;

name: RMAN_LGAX10_DIARIO_RH_1;
autostart: Enabled;
start time: "1:30";
schedule: SCH_Gestion_oracle_RMAN;
....
....

Whit that output you could create the list, table, what you need.

To optain information of the last backup, you could use mminfo, for exaple:
mminfo -q "incomplete=false,savetime > -1 day" -r
"level,client,savetime(22),group,name,totalsize(2)"

incomplete=false --> we only want the good backups
savetime > -1 day --> the last day

level --> to see the backup level
client --> to see the client
savetime(22) --> when start backup, with day ad hour
group --> the group (with that you could see its schedule)
name --> save set (you do not have All)
totalsize(2) --< the size in MB GB ...etc



Regards, and excuse me my English.
Arkaitz

----------------------------------------------------------------------
ARKAITZ ABAD URIARTE

Euskal Herriko Unibertsitatea Email: arkaitz.abad < at > ehu.es
Bizkaiko I.I.S.I.G Tel. : 94 601 8390
----------------------------------------------------------------------
Aurreztu papera. E-posta hau inprimatu beharra daukazu?



"Werth, Dave" <dave.werth < at > GARMIN.COM> escribió:

Michael,

I was going to suggest something like Enrique but the client listing
doesn't have a column for last backup. But if you go to the
Monitoring page and select groups you can list the groups in order
by "Last Run". If you double click on a group it gives you details
which include each individual saveset. You can copy & paste from
there or as Enrique mentioned you can right click on the header and
export it to a CSV. This doesn't give you everything in one report
but at least you can do it group by group.

Dave

Dave Werth
Garmin AT, Inc.
Salem, Oregon
-----Original Message-----
From: EMC NetWorker discussion
[mailto:NETWORKER < at > LISTSERV.TEMPLE.EDU] On Behalf Of Michael Leone
Sent: Tuesday, August 31, 2010 11:33 AM
To: NETWORKER < at > LISTSERV.TEMPLE.EDU
Subject: [Networker] Reporting question

I've never used the reporting features in Networker. And what I need,
should be relatively straightforward, but I can't see how to do it in the
NMC.

I need a listing of all my clients, showing what is being backed up, and
when. Ideally, I'd use this in a Word doc, as a table, or in a
spreadsheet.

I know I can do some manipulating of mminfo queries, to show all clients,
and all saveset names. But what I'd like is something that shows the
schedule that the group the client is in executes. For instance, "Client
1: saveset: ALL. Level: FULL: Schedule:name-of-schedule.

Anyway to get something like that? That isn't manual, I mean. I know I can
list clients, saveset names, and group names from mminfo, but there's no
way to get schedule info, is there?

--
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel: 215-684-4180
Cell: 215-252-0143
<mailto:michael.leone < at > pha.phila.gov>


and type "signoff networker" in the body of the email. Please write
to networker-request < at > listserv.temple.edu if you have any problems
with this list. You can access the archives at
http://listserv.temple.edu/archives/networker.html or
via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

This e-mail and any attachments may contain confidential material
for the sole use of the intended recipient. If you are not the
intended recipient, please be aware that any disclosure, copying,
distribution or use of this e-mail or any attachment is prohibited.
If you have received this e-mail in error, please contact the sender
and delete all copies.

Thank you for your cooperation.


and type "signoff networker" in the body of the email. Please write
to networker-request < at > listserv.temple.edu if you have any problems
with this list. You can access the archives at
http://listserv.temple.edu/archives/networker.html or
via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER



via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

Post Reporting question 
Give my networker reporter a look, under configuration details
-> client details -> Configuration Summary

You will get info you are looking for.

Th

Kind regards - Bien cordialement - Vriendelijke groeten,

Thierry FAIDHERBE
Backup/Storage & System Management

LE FOREM - Administration Centrale
Département des Systèmes d'Information

Boulevard Tirou, 104 Tel: + 32 (0)71/206730
B-6000 CHARLEROI Fax: + 32 (0)71/206199
BELGIUM Mail : Thierry.faidherbe<at>forem.be


-----Original Message-----
From: EMC NetWorker discussion [mailto:NETWORKER < at > LISTSERV.TEMPLE.EDU] On Behalf Of Abad Uriarte, Arkaitz
Sent: mercredi 1 septembre 2010 08:57
To: NETWORKER < at > LISTSERV.TEMPLE.EDU
Subject: Re: [Networker] Reporting question

Hello;

If you need information of the networker configuration, you could use
nsradmin to optain that.

For example, if you need groups schedule, start time and if the groups
are disabel or not you could do, in Linux server:

create a file, example.txt with the query:

show name; schedule; start time; autostart
print NSR group

and use nsadmin comand:
# nsradmin -i example.txt
name: LGUX32_DIARIO_RA_1;
autostart: Enabled;
start time: "2:30";
schedule: SB_DISCO_DIARIO_NOCHE_SCHEDULE;

name: RMAN_LGAX10_DIARIO_RH_1;
autostart: Enabled;
start time: "1:30";
schedule: SCH_Gestion_oracle_RMAN;
....
....

Whit that output you could create the list, table, what you need.

To optain information of the last backup, you could use mminfo, for exaple:
mminfo -q "incomplete=false,savetime > -1 day" -r
"level,client,savetime(22),group,name,totalsize(2)"

incomplete=false --> we only want the good backups
savetime > -1 day --> the last day

level --> to see the backup level
client --> to see the client
savetime(22) --> when start backup, with day ad hour
group --> the group (with that you could see its schedule)
name --> save set (you do not have All)
totalsize(2) --< the size in MB GB ...etc



Regards, and excuse me my English.
Arkaitz

----------------------------------------------------------------------
ARKAITZ ABAD URIARTE

Euskal Herriko Unibertsitatea Email: arkaitz.abad < at > ehu.es
Bizkaiko I.I.S.I.G Tel. : 94 601 8390
----------------------------------------------------------------------
Aurreztu papera. E-posta hau inprimatu beharra daukazu?



"Werth, Dave" <dave.werth < at > GARMIN.COM> escribió:

Michael,

I was going to suggest something like Enrique but the client listing
doesn't have a column for last backup. But if you go to the
Monitoring page and select groups you can list the groups in order
by "Last Run". If you double click on a group it gives you details
which include each individual saveset. You can copy & paste from
there or as Enrique mentioned you can right click on the header and
export it to a CSV. This doesn't give you everything in one report
but at least you can do it group by group.

Dave

Dave Werth
Garmin AT, Inc.
Salem, Oregon
-----Original Message-----
From: EMC NetWorker discussion
[mailto:NETWORKER < at > LISTSERV.TEMPLE.EDU] On Behalf Of Michael Leone
Sent: Tuesday, August 31, 2010 11:33 AM
To: NETWORKER < at > LISTSERV.TEMPLE.EDU
Subject: [Networker] Reporting question

I've never used the reporting features in Networker. And what I need,
should be relatively straightforward, but I can't see how to do it in the
NMC.

I need a listing of all my clients, showing what is being backed up, and
when. Ideally, I'd use this in a Word doc, as a table, or in a
spreadsheet.

I know I can do some manipulating of mminfo queries, to show all clients,
and all saveset names. But what I'd like is something that shows the
schedule that the group the client is in executes. For instance, "Client
1: saveset: ALL. Level: FULL: Schedule:name-of-schedule.

Anyway to get something like that? That isn't manual, I mean. I know I can
list clients, saveset names, and group names from mminfo, but there's no
way to get schedule info, is there?

--
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel: 215-684-4180
Cell: 215-252-0143
<mailto:michael.leone < at > pha.phila.gov>


and type "signoff networker" in the body of the email. Please write
to networker-request < at > listserv.temple.edu if you have any problems
with this list. You can access the archives at
http://listserv.temple.edu/archives/networker.html or
via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

This e-mail and any attachments may contain confidential material
for the sole use of the intended recipient. If you are not the
intended recipient, please be aware that any disclosure, copying,
distribution or use of this e-mail or any attachment is prohibited.
If you have received this e-mail in error, please contact the sender
and delete all copies.

Thank you for your cooperation.


and type "signoff networker" in the body of the email. Please write
to networker-request < at > listserv.temple.edu if you have any problems
with this list. You can access the archives at
http://listserv.temple.edu/archives/networker.html or
via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER



via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER


via RSS at http://listserv.temple.edu/cgi-bin/wa?RSS&L=NETWORKER

Display posts from previous:
Reply to topic Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
  


Magic SEO URL for phpBB