From df7a240eb81596146c10814ff37d105743292088 Mon Sep 17 00:00:00 2001 From: Ian Pye Date: Wed, 3 Jun 2026 15:58:01 -0700 Subject: [PATCH 1/2] adding ns traps --- profiles/kentik_snmp/citrix/netscaler.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/profiles/kentik_snmp/citrix/netscaler.yml b/profiles/kentik_snmp/citrix/netscaler.yml index 93137fc9..797e1c88 100644 --- a/profiles/kentik_snmp/citrix/netscaler.yml +++ b/profiles/kentik_snmp/citrix/netscaler.yml @@ -875,3 +875,20 @@ metric_tags: - column: name: sysHardwareSerialNumber OID: 1.3.6.1.4.1.5951.4.1.1.14.0 + +# NS-ROOT-MIB traps +traps: + - trap_oid: .1.3.6.1.4.1.5951.4.1.1.56.1 + trap_name: sslCertKeyTable + drop_undefined: true + events: + - name: sslCertKeyName + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.1 + - name: sslCertPath + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.2 + - name: sslKeyPath + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.3 + - name: sslInputFormat + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.4 + - name: sslDaysToExpire + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.5 From 77db0576f691141ed465f09a61855411fbb9774f Mon Sep 17 00:00:00 2001 From: Ian Pye Date: Thu, 4 Jun 2026 10:56:19 -0700 Subject: [PATCH 2/2] Moving traps for citrix out to its own file and also fixing typo --- profiles/kentik_snmp/citrix/netscaler.yml | 17 ----------------- profiles/kentik_snmp/citrix/traps.yml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 17 deletions(-) create mode 100644 profiles/kentik_snmp/citrix/traps.yml diff --git a/profiles/kentik_snmp/citrix/netscaler.yml b/profiles/kentik_snmp/citrix/netscaler.yml index 797e1c88..93137fc9 100644 --- a/profiles/kentik_snmp/citrix/netscaler.yml +++ b/profiles/kentik_snmp/citrix/netscaler.yml @@ -875,20 +875,3 @@ metric_tags: - column: name: sysHardwareSerialNumber OID: 1.3.6.1.4.1.5951.4.1.1.14.0 - -# NS-ROOT-MIB traps -traps: - - trap_oid: .1.3.6.1.4.1.5951.4.1.1.56.1 - trap_name: sslCertKeyTable - drop_undefined: true - events: - - name: sslCertKeyName - OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.1 - - name: sslCertPath - OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.2 - - name: sslKeyPath - OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.3 - - name: sslInputFormat - OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.4 - - name: sslDaysToExpire - OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.5 diff --git a/profiles/kentik_snmp/citrix/traps.yml b/profiles/kentik_snmp/citrix/traps.yml new file mode 100644 index 00000000..f460d988 --- /dev/null +++ b/profiles/kentik_snmp/citrix/traps.yml @@ -0,0 +1,16 @@ +# NS-ROOT-MIB traps +traps: + - trap_oid: 1.3.6.1.4.1.5951.4.1.1.56.1 + trap_name: sslCertKeyTable + drop_undefined: true + events: + - name: sslCertKeyName + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.1 + - name: sslCertPath + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.2 + - name: sslKeyPath + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.3 + - name: sslInputFormat + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.4 + - name: sslDaysToExpire + OID: 1.3.6.1.4.1.5951.4.1.1.56.1.1.5