def port = hostProps.get(\"paloalto.port\")?: 443
def apikey = hostProps.get(\"paloalto.apikey.pass\")?.trim()
if (apikey == null) {println(\"No paloalto.apikey.pass set\");return 1}
def response
def command = URLEncoder.encode(\"<show><system><state><filter>chassis.leds</filter></state></system></show>\", \"UTF-8\")
def url = \"https://${host}:$port/api/?type=op&key=${apikey}&cmd=${command}\"
def getRequestConn = url.toURL().openConnection()
if (getRequestConn.responseCode == 200) {
body = getRequestConn.content.text
response = new XmlSlurper().parseText(body)
data = response.toString()
data.tokenize(\"{,}\").each{
kv = it.tokenize(\":\")
if ((it.trim() != \"chassis.leds:\") && (kv.size() > 1)){
wildvalue = kv[0].replaceAll('\\'','')
println(\"${wildvalue}##${wildvalue}\")
}
}
return 0
} else {return 2}
Here’s the collection script:
def host = hostProps.get(\"system.hostname\")
def port = hostProps.get(\"paloalto.port\")?: 443
def apikey = hostProps.get(\"paloalto.apikey.pass\")?.trim()
if (apikey == null) {println(\"No paloalto.apikey.pass set\");return 1}
status_map = [
\"Off\": 0,
\"Green\": 1,
\"AnotherColor\": 2,
\"YetAnother\": 3,
\"AndAnother\": 4
]
def response
def command = URLEncoder.encode(\"<show><system><state><filter>chassis.leds</filter></state></system></show>\", \"UTF-8\")
def url = \"https://${host}:$port/api/?type=op&key=${apikey}&cmd=${command}\"
def getRequestConn = url.toURL().openConnection()
if (getRequestConn.responseCode == 200) {
body = getRequestConn.content.text
response = new XmlSlurper().parseText(body)
data = response.toString()
data.tokenize(\"{,}\").each{
kv = it.tokenize(\":\")
if ((it.trim() != \"chassis.leds:\") && (kv.size() > 1)){
println(\"${kv[0].replaceAll('\\'','')}.status: ${status_map[kv[1].trim()]}\")
}
}
return 0
} else {return 2}
And the datapoint looks like this:
multi-line key-value pairs: ##WILDVALUE##.status
For some reason (maybe new bug in v186) the script output has the right content but LM’s not picking it up:
service.status is definitely in the output, so i’m befuddled. Support chat here I come.
","body@stripHtml({\"removeProcessingText\":true,\"removeSpoilerMarkup\":true,\"removeTocMarkup\":true,\"truncateLength\":200})@stringLength":"203","postTime":"2023-05-02T07:02:59.000-07:00","lastPublishTime":"2023-05-02T07:02:59.000-07:00","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"solution":true,"metrics":{"__typename":"MessageMetrics","views":6},"placeholder":false,"originalMessageForPlaceholder":null,"videos":{"__typename":"VideoConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"isEscalated":null,"entityType":"FORUM_REPLY","eventPath":"category:product-hub/community:ajkuw86572board:product-discussions/message:12504/message:12510","customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"3982","rawBody":"Ok, this piqued my interest so i tried throwing it against one of my palos. I’m not groovy enough to understand how to work with that response object. Instead, I chose the quick/dirty route of converting to a string and parsing from there. I also now better understand the data, so I retract my original advise of making this single instance and advise instead to make it multi-instance with one instance for each LED (this may have been what you originally meant and I totally misunderstood).
Anyway, here’s the discovery script that’s now working in my environment (again, I didn’t do this the groovy way):
def host = hostProps.get(\"system.hostname\")
def port = hostProps.get(\"paloalto.port\")?: 443
def apikey = hostProps.get(\"paloalto.apikey.pass\")?.trim()
if (apikey == null) {println(\"No paloalto.apikey.pass set\");return 1}
def response
def command = URLEncoder.encode(\"<show><system><state><filter>chassis.leds</filter></state></system></show>\", \"UTF-8\")
def url = \"https://${host}:$port/api/?type=op&key=${apikey}&cmd=${command}\"
def getRequestConn = url.toURL().openConnection()
if (getRequestConn.responseCode == 200) {
body = getRequestConn.content.text
response = new XmlSlurper().parseText(body)
data = response.toString()
data.tokenize(\"{,}\").each{
kv = it.tokenize(\":\")
if ((it.trim() != \"chassis.leds:\") && (kv.size() > 1)){
wildvalue = kv[0].replaceAll('\\'','')
println(\"${wildvalue}##${wildvalue}\")
}
}
return 0
} else {return 2}
Here’s the collection script:
def host = hostProps.get(\"system.hostname\")
def port = hostProps.get(\"paloalto.port\")?: 443
def apikey = hostProps.get(\"paloalto.apikey.pass\")?.trim()
if (apikey == null) {println(\"No paloalto.apikey.pass set\");return 1}
status_map = [
\"Off\": 0,
\"Green\": 1,
\"AnotherColor\": 2,
\"YetAnother\": 3,
\"AndAnother\": 4
]
def response
def command = URLEncoder.encode(\"<show><system><state><filter>chassis.leds</filter></state></system></show>\", \"UTF-8\")
def url = \"https://${host}:$port/api/?type=op&key=${apikey}&cmd=${command}\"
def getRequestConn = url.toURL().openConnection()
if (getRequestConn.responseCode == 200) {
body = getRequestConn.content.text
response = new XmlSlurper().parseText(body)
data = response.toString()
data.tokenize(\"{,}\").each{
kv = it.tokenize(\":\")
if ((it.trim() != \"chassis.leds:\") && (kv.size() > 1)){
println(\"${kv[0].replaceAll('\\'','')}.status: ${status_map[kv[1].trim()]}\")
}
}
return 0
} else {return 2}
And the datapoint looks like this:
multi-line key-value pairs: ##WILDVALUE##.status
For some reason (maybe new bug in v186) the script output has the right content but LM’s not picking it up:
service.status is definitely in the output, so i’m befuddled. Support chat here I come.
","kudosSumWeight":3,"repliesCount":0,"timeToRead":2,"currentRevision":{"__ref":"Revision:revision:12510_1"},"latestVersion":null,"visibilityScope":"PUBLIC","messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:12507":{"__typename":"ModerationData","id":"moderation_data:12507","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"Revision:revision:12507_1":{"__typename":"Revision","id":"revision:12507_1","lastEditTime":"2023-05-01T10:28:49.000-07:00"},"QueryVariables:ReplyList:message:12507:1":{"__typename":"QueryVariables","id":"ReplyList:message:12507:1","value":{"id":"message:12507","first":10,"sorts":{"kudosSumWeight":{"direction":"DESC","order":0},"postTime":{"direction":"ASC","order":1}},"repliesFirst":3,"repliesFirstDepthThree":1,"repliesSorts":{"kudosSumWeight":{"direction":"DESC","order":0},"postTime":{"direction":"ASC","order":1}},"useAvatar":true,"useAuthorLogin":true,"useAuthorRank":true,"useBody":true,"useKudosCount":true,"useTimeToRead":false,"useMedia":false,"useReadOnlyIcon":false,"useRepliesCount":true,"useSearchSnippet":false,"useAcceptedSolutionButton":true,"useSolvedBadge":false,"useAttachments":false,"attachmentsFirst":5,"useTags":false,"useNodeAncestors":false,"useUserHoverCard":false,"useNodeHoverCard":false,"useModerationStatus":true,"usePreviewSubjectModal":false,"useMessageStatus":true}},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1743036182630":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1743036182630","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1743036182630":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1743036182630","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1743036182630":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1743036182630","value":{"accept":"Mark as Solution","accepted":"Marked as Solution","errorHeader":"Error!","errorAdd":"There was an error marking as solution.","errorRemove":"There was an error unmarking as solution.","solved":"Solved","topicAlreadySolvedErrorTitle":"Solution Already Exists","topicAlreadySolvedErrorDesc":"Refresh the browser to view the existing solution"},"localOverride":false},"CachedAsset:text:en_US-components/messages/ThreadedReplyList-1743036182630":{"__typename":"CachedAsset","id":"text:en_US-components/messages/ThreadedReplyList-1743036182630","value":{"title":"{count, plural, one{# Reply} other{# Replies}}","title@board:BLOG":"{count, plural, one{# Comment} other{# Comments}}","title@board:TKB":"{count, plural, one{# Comment} other{# Comments}}","title@board:IDEA":"{count, plural, one{# Comment} other{# Comments}}","title@board:OCCASION":"{count, plural, one{# Comment} other{# Comments}}","noRepliesTitle":"No Replies","noRepliesTitle@board:BLOG":"No Comments","noRepliesTitle@board:TKB":"No Comments","noRepliesTitle@board:IDEA":"No Comments","noRepliesTitle@board:OCCASION":"No Comments","noRepliesDescription":"Be the first to reply","noRepliesDescription@board:BLOG":"Be the first to comment","noRepliesDescription@board:TKB":"Be the first to comment","noRepliesDescription@board:IDEA":"Be the first to comment","noRepliesDescription@board:OCCASION":"Be the first to comment","messageReadOnlyAlert:BLOG":"Comments have been turned off for this post","messageReadOnlyAlert:TKB":"Comments have been turned off for this article","messageReadOnlyAlert:IDEA":"Comments have been turned off for this idea","messageReadOnlyAlert:FORUM":"Replies have been turned off for this discussion","messageReadOnlyAlert:OCCASION":"Comments have been turned off for this event"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1743036182630":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/nodes/NodeIcon-1743036182630","value":{"contentType":"Content Type {style, select, FORUM {Forum} BLOG {Blog} TKB {Knowledge Base} IDEA {Ideas} OCCASION {Events} other {}} icon"},"localOverride":false},"Revision:revision:12510_1":{"__typename":"Revision","id":"revision:12510_1","lastEditTime":"2023-05-02T07:02:59.000-07:00"},"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1743036182630":{"__typename":"CachedAsset","id":"text:en_US-components/tags/TagView/TagViewChip-1743036182630","value":{"tagLabelName":"Tag name {tagName}"},"localOverride":false}}}},"page":"/forums/ForumMessagePage/ForumMessagePage","query":{"boardId":"product-discussions","messageSubject":"palo-alto-xml-response-help","messageId":"12504","replyId":"12507"},"buildId":"Btkyb7T6TeYM9D2gUmiOv","runtimeConfig":{"buildInformationVisible":false,"logLevelApp":"info","logLevelMetrics":"info","openTelemetryClientEnabled":false,"openTelemetryConfigName":"logicmonitor","openTelemetryServiceVersion":"25.2.0","openTelemetryUniverse":"prod","openTelemetryCollector":"http://localhost:4318","openTelemetryRouteChangeAllowedTime":"5000","apolloDevToolsEnabled":false,"inboxMuteWipFeatureEnabled":false},"isFallback":false,"isExperimentalCompile":false,"dynamicIds":["./components/seo/QAPageSchema/QAPageSchema.tsx","./components/community/Navbar/NavbarWidget.tsx","./components/community/Breadcrumb/BreadcrumbWidget.tsx","./components/messages/TopicWithThreadedReplyListWidget/TopicWithThreadedReplyListWidget.tsx","./components/messages/RelatedContentWidget/RelatedContentWidget.tsx","./components/messages/MessageListForNodeByRecentActivityWidget/MessageListForNodeByRecentActivityWidget.tsx","./components/community/FooterWidget/FooterWidget.tsx","./components/messages/MessageView/MessageViewStandard/MessageViewStandard.tsx","./components/community/FooterWidgetHelpLink/FooterWidgetHelpLink.tsx","./components/community/KhorosLogo/KhorosLogo.tsx","../shared/client/components/common/List/UnstyledList/UnstyledList.tsx","./components/messages/MessageView/MessageView.tsx","./components/messages/MessageView/MessageViewInline/MessageViewInline.tsx","../shared/client/components/common/List/ListGroup/ListGroup.tsx","../shared/client/components/common/Pager/PagerLoadMore/PagerLoadMore.tsx","../shared/client/components/common/List/UnwrappedList/UnwrappedList.tsx","./components/tags/TagView/TagView.tsx","./components/tags/TagView/TagViewChip/TagViewChip.tsx"],"appGip":true,"scriptLoader":[]}