Github user steveloughran commented on a diff in the pull request:

    https://github.com/apache/spark/pull/9518#discussion_r123483576
  
    --- Diff: 
core/src/main/scala/org/apache/spark/metrics/sink/StatsdReporter.scala ---
    @@ -0,0 +1,160 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.metrics.sink
    +
    +import java.io.IOException
    +import java.net.{DatagramPacket, DatagramSocket, InetSocketAddress}
    +import java.nio.charset.StandardCharsets.UTF_8
    +import java.util.SortedMap
    +import java.util.concurrent.TimeUnit
    +
    +import scala.collection.JavaConverters._
    +import scala.util.{Failure, Success, Try}
    +
    +import com.codahale.metrics._
    +import org.apache.hadoop.net.NetUtils
    +
    +import org.apache.spark.Logging
    +
    +/**
    + * @see <a 
href="https://github.com/etsy/statsd/blob/master/docs/metric_types.md";>
    + *        StatsD metric types</a>
    + */
    +private[spark] sealed trait StatsdMetricType {
    +  val COUNTER = "c"
    +  val GAUGE = "g"
    +  val TIMER = "ms"
    +  val Set = "s"
    +}
    +
    +private[spark] class StatsdReporter(
    +    registry: MetricRegistry,
    +    host: String = "127.0.0.1",
    +    port: Int = 8125,
    +    prefix: String = "",
    +    filter: MetricFilter = MetricFilter.ALL,
    +    rateUnit: TimeUnit = TimeUnit.SECONDS,
    +    durationUnit: TimeUnit = TimeUnit.MILLISECONDS)
    +  extends ScheduledReporter(registry, "statsd-reporter", filter, rateUnit, 
durationUnit)
    +  with StatsdMetricType with Logging {
    +
    +  private val address = new InetSocketAddress(host, port)
    +  private val whitespace = "[\\s]+".r
    +
    +  override def report(
    +      gauges: SortedMap[String, Gauge[_]],
    +      counters: SortedMap[String, Counter],
    +      histograms: SortedMap[String, Histogram],
    +      meters: SortedMap[String, Meter],
    +      timers: SortedMap[String, Timer]): Unit =
    +    Try(new DatagramSocket) match {
    +      case Failure(ioe: IOException) => logWarning("StatsD datagram socket 
construction failed",
    +        NetUtils.wrapException(host, port, "0.0.0.0", 0, ioe))
    --- End diff --
    
    Preferable to use {{NetUtils.getLocalHostname()}} for the source address, 
you'll appreciate it on large cluster diagnostics.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to