/build/static/layout/Breadcrumb_cap_w.png

Create Smart Label from Report / SQL

Hello. I'm trying to create a smart label to organize Windows machines which have not rebooted in X number of days. I have a report that appears to work correctly to generate those same results. I took the SQL from the report and copied it to a temporarily created smart label I created and saved it, but it doesn't appear to be applying correctly.

Wondered if anyone has suggestions about taking SQL from a report and porting it over to also work as a smart label?

Thanks.

0 Comments   [ + ] Show comments

Answers (9)

Posted by: dchristian 13 years ago
Red Belt
0
One thing i learned (the hard way[:D]) is that there can be nothing after the where statement in smart label SQL.

Post your code so we can take a look.
Posted by: timantheos 13 years ago
Orange Senior Belt
0
I do have a line after the WHERE clause. Here is the code (it's modified from a similar report, but works as a report):

SELECT MACHINE.NAME AS SYSTEM_NAME, ASSET_DATA_5.FIELD_32 AS FIELD_32,
ASSET_DATA_5.FIELD_33 AS FIELD_33, ASSET_DATA_5.FIELD_37 AS FIELD_37,
LAST_REBOOT, UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP(LAST_REBOOT) as LAST_REBOOT_TIME
FROM MACHINE
LEFT JOIN ASSET ON ASSET.MAPPED_ID = MACHINE.ID AND ASSET.ASSET_TYPE_ID=5
LEFT JOIN ASSET_DATA_5 ON ASSET_DATA_5.ID = ASSET.ASSET_DATA_ID
WHERE (ASSET_DATA_5.FIELD_37 LIKE '%active%') AND (OS_NAME LIKE '%windows%')
HAVING LAST_REBOOT_TIME > 2592000

Right now the HAVING clause is what sets time time to measure last reboot. If it's actually not possible to have this clause in there then we'd need another way to set that measure?
Posted by: dchristian 13 years ago
Red Belt
0
Maybe not the most efficient query but see if this works.

SELECT M.*
FROM MACHINE M,
(SELECT MACHINE.NAME,
Unix_timestamp(NOW()) - Unix_timestamp(LAST_REBOOT) AS
LAST_REBOOT_TIME
FROM MACHINE
LEFT JOIN ASSET
ON ASSET.MAPPED_ID = MACHINE.ID
AND ASSET.ASSET_TYPE_ID = 5
LEFT JOIN ASSET_DATA_5
ON ASSET_DATA_5.ID = ASSET.ASSET_DATA_ID
WHERE OS_NAME LIKE '%windows%'
AND ASSET_DATA_5.FIELD_37 LIKE '%active%'
HAVING LAST_REBOOT_TIME > 2592000) WORK
WHERE M.NAME = WORK.NAME
Posted by: timantheos 13 years ago
Orange Senior Belt
0
Doesn't seem to work either.
Posted by: Capt.Morgan 13 years ago
Orange Belt
0
This works fine:


SELECT MACHINE.NAME AS SYSTEM_NAME,
LAST_REBOOT
FROM MACHINE
WHERE LAST_REBOOT < DATE_SUB(NOW(), INTERVAL 7 DAY)


It's very basic but it does work for me in a Smart Label I quickly made to show all PCs that have been rebooted in 7+ Days.
Posted by: timantheos 12 years ago
Orange Senior Belt
0
That doesn't appear to be working for me either. Though I did edit the number of days to 30. Additionally I would need to filter it for an asset value we have called 'active', so either way it wouldn't suffice unfortunately.
Posted by: GillySpy 12 years ago
7th Degree Black Belt
0
A smart label needs to return MACHINE.ID so it would be like this:

SELECT MACHINE.ID FROM MACHINE
JOIN ASSET ON ASSET.MAPPED_ID = MACHINE.ID AND ASSET.ASSET_TYPE_ID=5
JOIN ASSET_DATA_5 ON ASSET_DATA_5.ID = ASSET.ASSET_DATA_ID
WHERE
ASSET_DATA_5.FIELD_37 LIKE '%active%'
AND OS_NAME LIKE '%windows%' AND LAST_REBOOT < DATE_SUB(NOW(), INTERVAL 7 DAY)
Posted by: craig.thatcher 12 years ago
Orange Belt
0
We use the following for our machines with an UPTIME greater than 2 days.

select MACHINE.ID
from ORG1.MACHINE
where UPTIME>5 and OS_NAME not like '%Server%' AND OS_NAME NOT LIKE '%OS X%'

we have this tied to a script that forces a reboot at 2 am to enforce patching. you'll see that we exclude servers to minimize unexpected outages. I've double checked the code and output and the SQL works for the 5.1.x agents and 5.2.x agents even though the formatting of the data is held differently in the field.
Posted by: GillySpy 12 years ago
7th Degree Black Belt
0
To take it a step further you can have smart labels that are conditional upon labels. Say you have labels for your servers and your OS X machines separately called "Servers" and "OS X Machines" respectively, now you can update those labels when the criteria changes for servers or os x machines.

select MACHINE.ID
from ORG1.MACHINE
LEFT JOIN
(select MACHINE_ID from MACHINE_LABEL_JT ML
JOIN LABEL L ON ML.LABEL_ID=L.ID and L.NAME RLIKE '^(Servers|OS X machines)$' ) MLABELS ON MACHINE.ID=MLABELS.MACHINE_ID
where UPTIME>5
and MLABELS.MACHINE_ID IS NULL /* machines not in those labels */


Lastly, you can even have them conditional upon other smart labels if you set the evaluation order of the smart labels appropriately. So your label for "Servers" could be a smart label that looks at OS_NAME or a more rigorous qualification of what a server is.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ