Changeset ee17710546fba0e00a1dcdc05ea93062cb7117e9
- Timestamp:
- 07/24/08 17:09:35
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1216919375 +0000
- git-parent:
[9a2ae90d6f6b00326969b67ef9abb7b3edf3b59d]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1216919375 +0000
- Message:
auto-magic for pulling snmp names in to the list
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5299b95 |
ree17710 |
|
| 88 | 88 | left join stratcon.current_metric_text ciamt |
|---|
| 89 | 89 | on (cia.sid = ciamt.sid and ciamt.name='answer')"; |
|---|
| | 90 | } |
|---|
| | 91 | else if($want == 'name') { |
|---|
| | 92 | $ptr_select = 'caliasmt.value as ptr, '; |
|---|
| | 93 | $ptr_groupby = ', caliasmt.value'; |
|---|
| | 94 | $ptr_join = " |
|---|
| | 95 | left join stratcon.current_metric_text caliasmt |
|---|
| | 96 | on (c.sid = caliasmt.sid and caliasmt.name='alias')"; |
|---|
| 90 | 97 | } |
|---|
| 91 | 98 | $sql = " |
|---|