Send netdisco-users mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/netdisco-users
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of netdisco-users digest..."
Today's Topics:

   1. Custom report IP Utilization (Marios Kesoulis)
--- Begin Message ---
Hello there,
I am newbie of course and I am trying to built a custom report for IP
Utilization that it will be utilized through URL.

I need only specific columns
IP Address, DNS NAME, Time First Seen, Time Last Seen

Also I need "List IPs Never Seen"

I don't need Date Range

I also need the right search box with the above parameters

I am with this code right now inside deployment.yml

reports:
  - tag: subnet_utilization
    label: 'Subnet Utilization'
    category: IP
    columns:
      - {ip: 'IP Address'}
      - {dns: 'DNS Name'}
      - {time_first: 'Time First Seen'}
      - {time_last: 'Time Last Seen'}
    query: |
      SELECT DISTINCT ON (ip) ip, dns, date_trunc('second', time_first) AS
time_first, date_trunc('second', time_last) AS time_last
        FROM node_ip
        WHERE ip << ?
      ORDER BY ip ASC
    bind_params: ['subnet']

I can not find a way to implement the "List IPs Never Seen" and the right
search box.

I need you help.

Thanks in advance,

Marios

--- End Message ---
_______________________________________________
Netdisco mailing list - Digest Mode
[email protected]
https://lists.sourceforge.net/lists/listinfo/netdisco-users

Reply via email to