solarwinds  |  thwack
in
Search 44,780 posts and 623 resources contributed by 21,551 members or post a topic.

Already Joined? Sign in
Has anyone combined a ticket field with a node name and status field.....

rated by 0 users
Answered (Verified) This post has 2 verified answers | 49 Replies | 10 Followers


25 Posts
Points 69
RonCHenry posted on 06-21-2007 2:11 PM
rated by 0 users

Has anyone combined a ticket field with a node name and status field so that a down staus node can have OPS input a ticket number and have that reflected in network summary for all to see?

Such as the figment below ......

 

-Ron

We may be human but we're still animals!
  • Filed under:
  • | Post Points: 5

Answered (Verified) Verified Answers


1,386 Posts
Points 3,034
Answered (Verified) Network_Guru replied on 06-22-2007 9:49 AM
rated by 0 users

I've done something similar - I added a Comments field which can be updated from the Node Details page.
These comments get displayed in the Nodes Down property at the top of the Home page.

 
Here is the code to add this field to the Down Nodes resource here:

C:\Inetpub\SolarWinds\NetPerfMon\Resources\1-1-SummaryReports\DownNodes.resource:


%>

<table border="0" cellPadding="2" cellSpacing="0" width="100%">

    <tr>
        <td class="ReportHeader" vAlign="center" width="20">Node</td>
        <td class="ReportHeader" vAlign="center">&nbsp;</td>
        <td class="ReportHeader" vAlign="center">Comments</td>
        <td class="ReportHeader" vAlign="center">&nbsp;</td>
    </tr>

<%    Do While Not SQLResource.EOF    %>
<tr>
    <td class="Property" vAlign="center" width="20"><%=SQLResource.GetProperty("StatusLED;SmallIcon")%>&nbsp;
</td>
    <td class="Property"><a <%=SQLResource.GetProperty("NodeParamString")%>  href="/NetPerfMon/View.asp?View=NodeDetails&NetObject=N:<%=SQLResource.GetProperty("NodeID")%>"><%=SQLResource.GetProperty("Caption")%></a>&nbsp;</td>

    <td class="Property"><a href="/NetPerfMon/View.asp?View=NodeDetails&NetObject=N:<%=SQLResource.GetProperty("NodeID")%>"><%=SQLResource.GetProperty("Comments")%></a>&nbsp;</td>

</tr>

<%        

This is what it looks like:
 


-=Cheers=-
NG

---Orion V8.1 SLX, SLX secondary poller, SQL2005 x64 SE, 14GB Ram, 12k+ elements and counting---
---Orion V9.1 SP2 SL2000, SQL2005 Express 866 elements and counting---

  • | Post Points: 8

415 Posts
Points 2,023
The report includes a status icon, the node name, and the text associated with the custom property. I'm trying to attach a zip file to this message which should have everything you need to make this happen, if you so choose. Within the zip file, you will find a snapshot of what it looks like on the web, a copy of the actual Report Writer file, and a doc file which gives a little more detailed explanation of how it works. Now, let's see if I can attach it... :)

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 3

All Replies


415 Posts
Points 2,023
vhcato replied on 06-28-2007 2:32 PM
rated by 0 users
torrie:

I think I followed the instructions pretty closely however members of my NOC are unable to edit/update the field. My QA server is ver. 8.1 and my production server is 7.85. Clear Events is 'Yes'.

Which path did you take (NG's, or mine), and which of your servers are you using to test this?

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 3

178 Posts
Points 434
torrielw replied on 06-28-2007 2:55 PM
rated by 0 users

I followed yours. Only the admin acct is able to make updates. My test server is 8.1

  • | Post Points: 3

415 Posts
Points 2,023
vhcato replied on 06-28-2007 4:41 PM
rated by 0 users
torrie:

I followed yours. Only the admin acct is able to make updates. My test server is 8.1

Hmmm... Haven't seen this. Let me see what I can find. The fact that only the admin account can do it leads me to believe it's related to the security mechanism. Out of curiosity, do you have toolset integration enabled, particularly for the users trying to perform the updates?

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 1

415 Posts
Points 2,023
vhcato replied on 06-28-2007 7:00 PM
rated by 0 users
Torrie,

I've looked over everything and I can't find anything wrong. Can you verify that your EditCustomProperty.Update.ASP file looks exactly like the example in the README file? Also, have you tried it on the 7.8.5 release? We've not yet upgraded to 8.1, so I haven't tried that out myself.

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 1

1,386 Posts
Points 3,034
Network_Guru replied on 06-29-2007 12:38 AM
rated by 0 users

vhcato:

I put a little something together explaining how to edit custom properties for interfaces via the web and placed it here, in the Content Sharing Zone.

I tried to explain it well enough so that anyone with basic knowledge of Orion administration can understand and utilize the information, while also not making it too detailed and convoluted. Now, let's see if I succeeded... :)

Keep in mind that through much trial and error, I simply stumbled across how to make this work. Ya see, I ain't dat smrt. :(

 

Thanks Vic,

I had a brief look at it. I like your logic, this will come in handy for other things as well.
If I can figure out how to list the Interface custom property in the Web admin GUI, I'll post it in the CSZ.

-=Cheers=-
NG

---Orion V8.1 SLX, SLX secondary poller, SQL2005 x64 SE, 14GB Ram, 12k+ elements and counting---
---Orion V9.1 SP2 SL2000, SQL2005 Express 866 elements and counting---

  • | Post Points: 3

415 Posts
Points 2,023
vhcato replied on 06-29-2007 5:02 AM
rated by 0 users
Network_Guru:

Thanks Vic,

I had a brief look at it. I like your logic, this will come in handy for other things as well.
If I can figure out how to list the Interface custom property in the Web admin GUI, I'll post it in the CSZ.

Thanks NG. Now, If I can just figure out what's happening with Torrie's config... :(

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 3

368 Posts
Points 3,389
jtimes replied on 06-29-2007 5:16 AM
rated by 0 users

Torrie,  

Maybe that the Admin account is the only account with the Allow View Customization box checked?

John J. Times
Systems Management & Automation
Enterprise Technology Infrastructure
SunTrust Banks Inc.

Live Solid. Bank Solid.

  • | Post Points: 3

415 Posts
Points 2,023
vhcato replied on 06-29-2007 5:29 AM
rated by 0 users
jtimes:

Torrie,  

Maybe that the Admin account is the only account with the Allow View Customization box checked?

John,

I think that's why it's working for Admin, but it should also work for users with the ability to "Allow Event Clearing", even though they don't have the priv to customize views. That is, as long as the hack is in place to allow it.

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 3

178 Posts
Points 434
torrielw replied on 06-29-2007 7:57 AM
rated by 0 users

Guys thanks for you help. It was the EditCustomProperty.Update.asp. I didn't modify that file because all of my users should be able to edit. It works on both versions 8.1 as well as 7.5.

  • | Post Points: 3

415 Posts
Points 2,023
vhcato replied on 06-29-2007 8:15 AM
rated by 0 users
YAY!!! :)

Yeah, if you want all your users to be able to edit this info, then you don't need the hack, but you would have to give them the view customization priv, and that may not be a good thing. :)

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 5

99 Posts
Points 580
WINNT replied on 07-02-2007 7:40 PM
rated by 0 users

This worked, except that it only works for one "Down Alert" resource.  I have two sections of down devices based on the SQL query filter.  Anyone else experiencing this problem?

  • | Post Points: 3

415 Posts
Points 2,023
vhcato replied on 07-03-2007 6:10 AM
rated by 0 users

WINNT:

This worked, except that it only works for one "Down Alert" resource.  I have two sections of down devices based on the SQL query filter.  Anyone else experiencing this problem?

Which methodology did you follow (Guru's, or mine)? Either one should work.

With Guru's, simply place two of the modified "Down Nodes" resources on your summary view and apply the appropriate filter to each.

Following my example, create two reports instead of one (with the appropriate filters on each), and add both of them as resources to your summary view.

Vic Cato
Technical Lead - Network Operations
Koch Business Solutions - Enterprise Technical Services

  • | Post Points: 3

99 Posts
Points 580
WINNT replied on 07-13-2007 12:12 PM
rated by 0 users

I started over from scratch with a new resource and now it works. 

 Is there a way to change the "update" button in the node details so that it sets the value to NULL when you clear the field? 

 

Thanks.

  • | Post Points: 5